mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Fix a couple of copy-paste errors
This commit is contained in:
parent
3d1ae1c414
commit
e5e7ec456d
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ import mage.MageInt;
|
||||||
public class CatToken extends Token {
|
public class CatToken extends Token {
|
||||||
|
|
||||||
public CatToken() {
|
public CatToken() {
|
||||||
super("Demon", "2/2 white Cat creature token");
|
super("Cat", "2/2 white Cat creature token");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
color.setWhite(true);
|
color.setWhite(true);
|
||||||
subtype.add("Cat");
|
subtype.add("Cat");
|
||||||
|
|
|
@ -39,7 +39,7 @@ import mage.MageInt;
|
||||||
public class SliverToken extends Token {
|
public class SliverToken extends Token {
|
||||||
|
|
||||||
public SliverToken() {
|
public SliverToken() {
|
||||||
super("Demon", "1/1 colorless Sliver creature token");
|
super("Sliver", "1/1 colorless Sliver creature token");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
subtype.add("Sliver");
|
subtype.add("Sliver");
|
||||||
power = new MageInt(1);
|
power = new MageInt(1);
|
||||||
|
|
Loading…
Reference in a new issue