Merge pull request #1196 from D-Vaillant/hokori-hotfix

Fixed bug where Hokori, Dust Drinker's toughness was 1
This commit is contained in:
LevelX2 2015-08-11 00:47:50 +01:00
commit be88499ad9

View file

@ -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"))));