mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[KHM] fixed Battershield Warrior missing P/T (fixes #7423)
This commit is contained in:
parent
9a8eed0446
commit
68807ff34f
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.effects.common.continuous.BoostControlledEffect;
|
||||
import mage.abilities.keyword.BoastAbility;
|
||||
import mage.cards.CardImpl;
|
||||
|
@ -20,6 +21,8 @@ public final class BattershieldWarrior extends CardImpl {
|
|||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.WARRIOR);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Boast — {1}{W}: Creatures you control get +1/+1 until end of turn.
|
||||
this.addAbility(new BoastAbility(new BoostControlledEffect(
|
||||
|
|
Loading…
Reference in a new issue