mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[SNC] Implemented Girder Goons
This commit is contained in:
parent
767bc45b09
commit
b4cfd43763
3 changed files with 74 additions and 0 deletions
28
Mage/src/main/java/mage/game/permanent/token/RogueToken.java
Normal file
28
Mage/src/main/java/mage/game/permanent/token/RogueToken.java
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RogueToken extends TokenImpl {
|
||||
|
||||
public RogueToken() {
|
||||
super("Rogue Token", "2/2 black Rogue creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.ROGUE);
|
||||
color.setBlack(true);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
public RogueToken(final RogueToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RogueToken copy() {
|
||||
return new RogueToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue