mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Fix a copy-paste error
This commit is contained in:
parent
4e5bcddd56
commit
b64c495212
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public class DragonToken2 extends Token {
|
||||||
public DragonToken2() {
|
public DragonToken2() {
|
||||||
super("Dragon", "5/5 red Dragon creature token with flying");
|
super("Dragon", "5/5 red Dragon creature token with flying");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
color.setWhite(true);
|
color.setRed(true);
|
||||||
subtype.add("Dragon");
|
subtype.add("Dragon");
|
||||||
power = new MageInt(5);
|
power = new MageInt(5);
|
||||||
toughness = new MageInt(5);
|
toughness = new MageInt(5);
|
||||||
|
|
Loading…
Reference in a new issue