forked from External/mage
Implemented Incubation // Incongruity
This commit is contained in:
parent
6d21ccb6fc
commit
20d5bfc3c9
4 changed files with 89 additions and 7 deletions
|
|
@ -0,0 +1,35 @@
|
|||
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.MageInt;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class FrogLizardToken extends TokenImpl {
|
||||
|
||||
public FrogLizardToken() {
|
||||
super("Frog Lizard", "3/3 green Frog Lizard creature token");
|
||||
this.setOriginalExpansionSetCode("GTC");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
||||
color.setGreen(true);
|
||||
|
||||
subtype.add(SubType.FROG);
|
||||
subtype.add(SubType.LIZARD);
|
||||
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
public FrogLizardToken(final FrogLizardToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FrogLizardToken copy() {
|
||||
return new FrogLizardToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue