* Chub Toad - Fixed that the boost effect gave +1/+1 instead +2/+2.

This commit is contained in:
LevelX2 2016-01-17 07:26:13 +01:00
parent d7f82ad0c6
commit 2985fb8af1

View file

@ -52,7 +52,7 @@ public class ChubToad extends CardImpl {
this.toughness = new MageInt(1);
// Whenever Chub Toad blocks or becomes blocked, it gets +2/+2 until end of turn.
Effect effect = new BoostSourceEffect(+1, +1, Duration.EndOfTurn);
Effect effect = new BoostSourceEffect(+2, +2, Duration.EndOfTurn);
effect.setText("it gets +2/+2 until end of turn");
Ability ability = new BlocksOrBecomesBlockedTriggeredAbility(effect, false);
this.addAbility(ability);