mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
Token changes for C17
This commit is contained in:
parent
c9a6903253
commit
fde9b1cda5
1 changed files with 9 additions and 0 deletions
|
@ -27,6 +27,9 @@
|
|||
*/
|
||||
|
||||
package mage.game.permanent.token;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import mage.constants.CardType;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
|
@ -37,10 +40,16 @@ import mage.constants.SubType;
|
|||
* @author Saga
|
||||
*/
|
||||
public class DeathtouchRatToken extends TokenImpl {
|
||||
|
||||
final static private List<String> tokenImageSets = new ArrayList<>();
|
||||
static {
|
||||
tokenImageSets.addAll(Arrays.asList("C17"));
|
||||
}
|
||||
|
||||
public DeathtouchRatToken() {
|
||||
super("Rat", "1/1 black Rat creature token with deathtouch");
|
||||
this.setExpansionSetCodeForImage("C17");
|
||||
availableImageSetCodes = tokenImageSets;
|
||||
this.cardType.add(CardType.CREATURE);
|
||||
this.color.setBlack(true);
|
||||
this.subtype.add(SubType.RAT);
|
||||
|
|
Loading…
Reference in a new issue