mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
parent
ece7ea45bf
commit
74a16d179f
5 changed files with 15 additions and 46 deletions
|
|
@ -1,33 +0,0 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.IslandwalkAbility;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class CoralBarrierSquidToken extends TokenImpl {
|
||||
|
||||
public CoralBarrierSquidToken() {
|
||||
super("Squid Token", "1/1 blue Squid creature token with islandwalk");
|
||||
this.setOriginalExpansionSetCode("M15");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.SQUID);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
|
||||
this.addAbility(new IslandwalkAbility());
|
||||
}
|
||||
public CoralBarrierSquidToken(final CoralBarrierSquidToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public CoralBarrierSquidToken copy() {
|
||||
return new CoralBarrierSquidToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -5,16 +5,16 @@ import mage.constants.CardType;
|
|||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.IslandwalkAbility;
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class ChasmSkulkerSquidToken extends TokenImpl {
|
||||
public final class SquidToken extends TokenImpl {
|
||||
|
||||
public ChasmSkulkerSquidToken() {
|
||||
super("Squid Token", "1/1 blue Squid creature token with islandwalk");
|
||||
this.setOriginalExpansionSetCode("M15");
|
||||
public SquidToken() {
|
||||
super("Squid Token", "1/1 blue Squid creature token with Islandwalk");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.SQUID);
|
||||
|
|
@ -22,13 +22,15 @@ public final class ChasmSkulkerSquidToken extends TokenImpl {
|
|||
toughness = new MageInt(1);
|
||||
|
||||
this.addAbility(new IslandwalkAbility());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("M15", "C16");
|
||||
}
|
||||
|
||||
public ChasmSkulkerSquidToken(final ChasmSkulkerSquidToken token) {
|
||||
private SquidToken(final SquidToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public ChasmSkulkerSquidToken copy() {
|
||||
return new ChasmSkulkerSquidToken(this);
|
||||
public SquidToken copy() {
|
||||
return new SquidToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue