Пример #1
0
 public override void FinishPhase()
 {
     if (Phases.HasOnCombatPhaseEndEvents)
     {
         GenericSubPhase subphase = Phases.StartTemporarySubPhaseNew("Notification", typeof(NotificationSubPhase), StartCombatEndSubPhase);
         (subphase as NotificationSubPhase).TextToShow = "End of combat";
         subphase.Start();
     }
     else
     {
         StartCombatEndSubPhase();
     }
 }
Пример #2
0
 public override void FinishPhase()
 {
     if (Phases.HasOnActivationPhaseEnd)
     {
         GenericSubPhase subphase = Phases.StartTemporarySubPhaseNew("Notification", typeof(NotificationSubPhase), StartActivationEndSubPhase);
         (subphase as NotificationSubPhase).TextToShow = "End of Activation ";
         subphase.Start();
     }
     else
     {
         StartActivationEndSubPhase();
     }
 }