mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +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 CatToken() {
|
||||
super("Demon", "2/2 white Cat creature token");
|
||||
super("Cat", "2/2 white Cat creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add("Cat");
|
||||
|
|
|
@ -39,7 +39,7 @@ import mage.MageInt;
|
|||
public class SliverToken extends Token {
|
||||
|
||||
public SliverToken() {
|
||||
super("Demon", "1/1 colorless Sliver creature token");
|
||||
super("Sliver", "1/1 colorless Sliver creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Sliver");
|
||||
power = new MageInt(1);
|
||||
|
|
Loading…
Reference in a new issue