* Broodwarden - Fixed that Eldrazi Spawn creatures got +1/+1 instead of correctly +2/+1.

This commit is contained in:
LevelX2 2013-09-09 19:28:27 +02:00
parent 84926354bd
commit 70e7fb0cdd

View file

@ -61,8 +61,8 @@ public class Broodwarden extends CardImpl<Broodwarden> {
this.color.setGreen(true);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(1, 1, Duration.WhileOnBattlefield, filter, false)));
// Eldrazi Spawn creatures you control get +2/+1.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostControlledEffect(2, 1, Duration.WhileOnBattlefield, filter, false)));
}
public Broodwarden(final Broodwarden card) {