mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
[VOW] Implemented Rural Recruit
This commit is contained in:
parent
b5b6c837f1
commit
12588ea40b
3 changed files with 72 additions and 0 deletions
28
Mage/src/main/java/mage/game/permanent/token/Boar3Token.java
Normal file
28
Mage/src/main/java/mage/game/permanent/token/Boar3Token.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 Boar3Token extends TokenImpl {
|
||||
|
||||
public Boar3Token() {
|
||||
super("Boar", "3/1 green Boar creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.BOAR);
|
||||
power = new MageInt(3);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
public Boar3Token(final Boar3Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Boar3Token copy() {
|
||||
return new Boar3Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue