* Pia and Kiran Nalaar and Whirler Rogue - Fixed rule text.

This commit is contained in:
LevelX2 2015-11-07 21:30:02 +01:00
parent 5702c694a9
commit 43ebe000f0
2 changed files with 11 additions and 5 deletions

View file

@ -34,6 +34,7 @@ import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.SacrificeTargetCost;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.DamageTargetEffect;
import mage.cards.CardImpl;
@ -60,8 +61,10 @@ public class PiaAndKiranNalaar extends CardImpl {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// When Pia and Kiran Nalaar enters the battlefield put 2 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new ThopterColorlessToken(), 2)));
// When Pia and Kiran Nalaar enters the battlefield, put two 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.
Effect effect = new CreateTokenEffect(new ThopterColorlessToken(), 2);
effect.setText("put two 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield");
this.addAbility(new EntersBattlefieldTriggeredAbility(effect));
// {2}{R}, Sacrifice an artifact: Pia and Kiran Nalaar deals 2 damage to target creature or player.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(2), new ManaCostsImpl("{2}{R}"));

View file

@ -33,6 +33,7 @@ import mage.abilities.Ability;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.TapTargetCost;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.combat.CantBeBlockedTargetEffect;
import mage.cards.CardImpl;
@ -67,7 +68,9 @@ public class WhirlerRogue extends CardImpl {
this.toughness = new MageInt(2);
// When Whirler Rogue enters the battlefield, put two 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new ThopterColorlessToken(), 2)));
Effect effect = new CreateTokenEffect(new ThopterColorlessToken(), 2);
effect.setText("put two 1/1 colorless Thopter artifact creature tokens with flying onto the battlefield");
this.addAbility(new EntersBattlefieldTriggeredAbility(effect));
// Tap two untapped artifacts you control: Target creature can't be blocked this turn.
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CantBeBlockedTargetEffect(), new TapTargetCost(new TargetControlledPermanent(2, 2, filter, true)));