mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[DSC] Implement Phenomenon Investigators (#13184)
This commit is contained in:
parent
2a7d527c64
commit
48117b9620
3 changed files with 151 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue