mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
[ONE] Implement Ovika, Enigma Goliath
This commit is contained in:
parent
9bde86557e
commit
630617b6d0
6 changed files with 141 additions and 8 deletions
|
|
@ -0,0 +1,36 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PhyrexianGoblinHasteToken extends TokenImpl {
|
||||
|
||||
public PhyrexianGoblinHasteToken() {
|
||||
super("Phyrexian Goblin Token", "1/1 red Phyrexian Goblin creature token with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.PHYREXIAN);
|
||||
subtype.add(SubType.GOBLIN);
|
||||
color.setRed(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
addAbility(HasteAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("NPH");
|
||||
}
|
||||
|
||||
public PhyrexianGoblinHasteToken(final PhyrexianGoblinHasteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PhyrexianGoblinHasteToken copy() {
|
||||
return new PhyrexianGoblinHasteToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -13,7 +13,7 @@ import java.util.Arrays;
|
|||
public final class PhyrexianGoblinToken extends TokenImpl {
|
||||
|
||||
public PhyrexianGoblinToken() {
|
||||
super("Phyrexian Goblin Token", "1/1 red Phyrexian Goblin creature token with haste");
|
||||
super("Phyrexian Goblin Token", "1/1 red Phyrexian Goblin creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.PHYREXIAN);
|
||||
subtype.add(SubType.GOBLIN);
|
||||
|
|
@ -21,9 +21,7 @@ public final class PhyrexianGoblinToken extends TokenImpl {
|
|||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
addAbility(HasteAbility.getInstance());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("NPH");
|
||||
availableImageSetCodes = Arrays.asList("ONE");
|
||||
}
|
||||
|
||||
public PhyrexianGoblinToken(final PhyrexianGoblinToken token) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue