[DSC] Implement Phenomenon Investigators (#13184)

This commit is contained in:
Cameron Merkel 2025-01-02 19:03:35 -06:00 committed by GitHub
parent 2a7d527c64
commit 48117b9620
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 151 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Cguy7777
*/
public class HorrorEnchantmentCreatureToken extends TokenImpl {
public HorrorEnchantmentCreatureToken() {
super("Horror Token", "2/2 black Horror enchantment creature token");
cardType.add(CardType.ENCHANTMENT);
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.HORROR);
power = new MageInt(2);
toughness = new MageInt(2);
}
private HorrorEnchantmentCreatureToken(final HorrorEnchantmentCreatureToken token) {
super(token);
}
@Override
public HorrorEnchantmentCreatureToken copy() {
return new HorrorEnchantmentCreatureToken(this);
}
}