Implemented Unglued cards

This commit is contained in:
L_J 2018-08-29 01:15:29 +02:00 committed by GitHub
parent 8445e98e2e
commit bda10ed04c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 1062 additions and 1 deletions

View file

@ -0,0 +1,22 @@
package mage.game.permanent.token;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.MageInt;
/**
*
* @author L_J
*/
public class RabidSheepToken extends Token {
public RabidSheepToken() {
super("Rabid Sheep", "2/2 green Sheep creature token named Rabid Sheep");
cardType.add(CardType.CREATURE);
subtype.add(SubType.SHEEP);
color.setGreen(true);
power = new MageInt(2);
toughness = new MageInt(2);
}
}