[XLN] Deeproot Waters + Merfolk Hexproof Token

This commit is contained in:
TacomenX 2017-09-04 01:29:20 -05:00
parent 10c3c6fdb9
commit 518bae18df
3 changed files with 102 additions and 0 deletions

View file

@ -0,0 +1,32 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.game.permanent.token;
import mage.MageInt;
import mage.ObjectColor;
import mage.abilities.keyword.HexproofAbility;
import mage.constants.CardType;
/**
*
* @author TacomenX
*/
public class MerfolkHexproofToken extends Token {
public MerfolkHexproofToken() {
super("Merfolk", "1/1 blue Merfolk creature token with hexproof");
this.cardType.add(CardType.CREATURE);
this.subtype.add("Merfolk");
this.color = ObjectColor.BLUE;
this.power = new MageInt(1);
this.toughness = new MageInt(1);
this.addAbility(HexproofAbility.getInstance());
}
}