Minor fix.

This commit is contained in:
LevelX2 2012-12-12 01:10:16 +01:00
parent 9c092da477
commit cfb1e17687
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ public class GnatMiser extends CardImpl<GnatMiser> {
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// Your maximum hand size is increased by two.
// Each opponent's maximum hand size is reduced by one.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new MaximumHandSizeControllerEffect(1, Duration.WhileOnBattlefield, HandSizeModification.REDUCE, TargetController.OPPONENT)));
}

View file

@ -62,7 +62,7 @@ public class LocustMiser extends CardImpl<LocustMiser> {
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// Your maximum hand size is increased by two.
// Each opponent's maximum hand size is reduced by two.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
new MaximumHandSizeControllerEffect(2, Duration.WhileOnBattlefield, HandSizeModification.REDUCE, TargetController.OPPONENT)));
}