mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
commit
dea739ecb0
3 changed files with 4 additions and 4 deletions
|
@ -1372,7 +1372,7 @@
|
|||
# IKO
|
||||
|Generate|TOK:IKO|Beast|||BeastToken|
|
||||
|Generate|TOK:IKO|Cat Bird|||CatBirdToken|
|
||||
|Generate|TOK:IKO|Cat|||CatToken|
|
||||
|Generate|TOK:IKO|Cat|||CatToken2|
|
||||
|Generate|TOK:IKO|Dinosaur Beast|||DinosaurBeastToken|
|
||||
|Generate|TOK:IKO|Dinosaur|||DinosaurHasteToken|
|
||||
|Generate|TOK:IKO|Feather|||FeatherToken|
|
||||
|
|
|
@ -9,7 +9,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.permanent.token.CatToken;
|
||||
import mage.game.permanent.token.CatToken2;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -32,7 +32,7 @@ public final class Cubwarden extends CardImpl {
|
|||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
// Whenever this creature mutates, create two 1/1 white Cat creature tokens with lifelink.
|
||||
this.addAbility(new MutatesSourceTriggeredAbility(new CreateTokenEffect(new CatToken(), 2)));
|
||||
this.addAbility(new MutatesSourceTriggeredAbility(new CreateTokenEffect(new CatToken2(), 2)));
|
||||
}
|
||||
|
||||
private Cubwarden(final Cubwarden card) {
|
||||
|
|
|
@ -16,7 +16,7 @@ public final class BeastToken extends TokenImpl {
|
|||
static final private List<String> tokenImageSets = new ArrayList<>();
|
||||
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("C14", "LRW", "M15", "M14", "DDL", "M13", "M12", "DD3GVL", "NPH", "M11", "M10", "EVE", "MM3", "CMA", "E01", "C19"));
|
||||
tokenImageSets.addAll(Arrays.asList("C14", "LRW", "M15", "M14", "DDL", "M13", "M12", "DD3GVL", "NPH", "M11", "M10", "EVE", "MM3", "CMA", "E01", "C19", "IKO"));
|
||||
}
|
||||
|
||||
public BeastToken() {
|
||||
|
|
Loading…
Reference in a new issue