Ejemplo n.º 1
0
 internal virtual void OnGlance(Player p)
 {
     if (OnGlanceEffects != null && OnGlanceEffects.Length > 0)
     {
         p.AddEffects(OnGlanceEffects);
     }
     GameCore.AskForActionAdapter(p);
 }
Ejemplo n.º 2
0
 internal virtual void OnEnter(Player p)
 {
     p.CurrentEffectsList.ProcessEffects(p);
     if (OnEnterEffects != null && OnEnterEffects.Length > 0)
     {
         p.AddEffects(OnEnterEffects);
     }
     GameCore.AskForActionAdapter(p);
 }