mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Minor fix.
This commit is contained in:
parent
9c092da477
commit
cfb1e17687
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ public class GnatMiser extends CardImpl<GnatMiser> {
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
this.toughness = 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,
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
|
||||||
new MaximumHandSizeControllerEffect(1, Duration.WhileOnBattlefield, HandSizeModification.REDUCE, TargetController.OPPONENT)));
|
new MaximumHandSizeControllerEffect(1, Duration.WhileOnBattlefield, HandSizeModification.REDUCE, TargetController.OPPONENT)));
|
||||||
}
|
}
|
||||||
|
|
|
@ -62,7 +62,7 @@ public class LocustMiser extends CardImpl<LocustMiser> {
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = 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,
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD,
|
||||||
new MaximumHandSizeControllerEffect(2, Duration.WhileOnBattlefield, HandSizeModification.REDUCE, TargetController.OPPONENT)));
|
new MaximumHandSizeControllerEffect(2, Duration.WhileOnBattlefield, HandSizeModification.REDUCE, TargetController.OPPONENT)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue