forked from External/mage
Implemented Unglued cards
This commit is contained in:
parent
8445e98e2e
commit
bda10ed04c
14 changed files with 1062 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue