Exemplo n.º 1
0
 protected override void PerformYAction(int currentTurn)
 {
     SittingDuck.DrainShields(EnumFactory.All <ZoneLocation>(), 1);
 }
Exemplo n.º 2
0
 protected override void PerformXAction(int currentTurn)
 {
     SittingDuck.DrainShields(new [] { CurrentZone });
 }
Exemplo n.º 3
0
        private void EnergyLeaksOutFromShield(ZoneLocation zoneLocation)
        {
            var energyDrained = SittingDuck.DrainShields(new [] { zoneLocation });

            Attack(energyDrained);
        }