Removed duplicate squid token class for #8996 (#9020)

This commit is contained in:
PurpleCrowbar 2022-05-28 03:38:15 +01:00 committed by GitHub
parent ece7ea45bf
commit 74a16d179f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 46 deletions

View file

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

View file

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