mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[NEO] Implemented Careful Cultivation
This commit is contained in:
parent
672da5732f
commit
60e75f5bc5
3 changed files with 106 additions and 0 deletions
|
|
@ -0,0 +1,35 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.mana.GreenManaAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class HumanMonkToken extends TokenImpl {
|
||||
|
||||
public HumanMonkToken() {
|
||||
super("Human Monk token", "1/1 green Monk creature token with \"{T}: Add {G}.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.HUMAN);
|
||||
subtype.add(SubType.MONK);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(new GreenManaAbility());
|
||||
|
||||
availableImageSetCodes = Arrays.asList("NEO");
|
||||
}
|
||||
|
||||
public HumanMonkToken(final HumanMonkToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public HumanMonkToken copy() {
|
||||
return new HumanMonkToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue