[SPM] Implement Friendly Neighborhood

This commit is contained in:
jmlundeen 2025-09-03 10:58:09 -05:00
parent ace21c67c1
commit 5bb8ff2c7f
3 changed files with 97 additions and 0 deletions

View file

@ -0,0 +1,31 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author LoneFox
*/
public final class HumanCitizenToken extends TokenImpl {
public HumanCitizenToken() {
super("Human Token", "1/1 green and white Human Citizen creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
color.setWhite(true);
subtype.add(SubType.HUMAN);
subtype.add(SubType.CITIZEN);
power = new MageInt(1);
toughness = new MageInt(1);
}
private HumanCitizenToken(final HumanCitizenToken token) {
super(token);
}
@Override
public HumanCitizenToken copy() {
return new HumanCitizenToken(this);
}
}