mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[MIR] implemented Basalt Golem (#10285)
* added MIR Basalt Golem + Wall Token * fixed card number, effect text, possible NPE simplified effect code
This commit is contained in:
parent
62b1eeb4ed
commit
70cf2158a9
3 changed files with 121 additions and 1 deletions
31
Mage/src/main/java/mage/game/permanent/token/WallToken.java
Normal file
31
Mage/src/main/java/mage/game/permanent/token/WallToken.java
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.DefenderAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author lagdotcom
|
||||
*/
|
||||
public final class WallToken extends TokenImpl {
|
||||
|
||||
public WallToken() {
|
||||
super("Wall Token", "0/2 colorless Wall artifact creature token with defender");
|
||||
cardType.add(CardType.ARTIFACT);
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.WALL);
|
||||
power = new MageInt(0);
|
||||
toughness = new MageInt(2);
|
||||
addAbility(DefenderAbility.getInstance());
|
||||
}
|
||||
|
||||
public WallToken(final WallToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public WallToken copy() {
|
||||
return new WallToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue