tests for reported bug Rabid Elephant. typo fixes

This commit is contained in:
drmDev 2016-03-17 08:21:36 -04:00
parent ae66db20ad
commit eb9747d0d1
4 changed files with 54 additions and 8 deletions

View file

@ -55,7 +55,7 @@ public class RabidElephant extends CardImpl {
this.toughness = new MageInt(4);
// Whenever Rabid Elephant becomes blocked, it gets +2/+2 until end of turn for each creature blocking it.
DynamicValue value = new MultipliedValue(new BlockedCreatureCount(),2);
DynamicValue value = new MultipliedValue(new BlockedCreatureCount(), 2);
Effect effect = new BoostSourceEffect(value, value, Duration.EndOfTurn);
effect.setText("it gets +2/+2 until end of turn for each creature blocking it");
this.addAbility(new BecomesBlockedTriggeredAbility(effect, false));