mirror of
https://github.com/correl/mage.git
synced 2025-03-16 01:06:34 -09:00
Fixed bug where Hokori, Dust Drinker's toughness=1
This commit is contained in:
parent
269653d115
commit
73c12d7e78
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ public class HokoriDustDrinker extends CardImpl {
|
||||||
this.subtype.add("Spirit");
|
this.subtype.add("Spirit");
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// Lands don't untap during their controllers' untap steps.
|
// Lands don't untap during their controllers' untap steps.
|
||||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new DontUntapInControllersUntapStepAllEffect(Duration.WhileOnBattlefield, TargetController.ANY, new FilterLandPermanent("Lands"))));
|
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new DontUntapInControllersUntapStepAllEffect(Duration.WhileOnBattlefield, TargetController.ANY, new FilterLandPermanent("Lands"))));
|
||||||
|
|
Loading…
Add table
Reference in a new issue