mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
[FIN] Implement Quina, Qu Gourmet
This commit is contained in:
parent
1f45444534
commit
ddb846eda9
4 changed files with 130 additions and 0 deletions
|
|
@ -331,6 +331,7 @@ public enum SubType {
|
|||
PUREBLOOD("Pureblood", SubTypeSet.CreatureType, true),
|
||||
// Q
|
||||
QUARREN("Quarren", SubTypeSet.CreatureType, true), // Star Wars
|
||||
QU("Qu", SubTypeSet.CreatureType),
|
||||
// R
|
||||
RABBIT("Rabbit", SubTypeSet.CreatureType),
|
||||
RACCOON("Raccoon", SubTypeSet.CreatureType),
|
||||
|
|
|
|||
|
|
@ -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 FrogGreenToken extends TokenImpl {
|
||||
|
||||
public FrogGreenToken() {
|
||||
super("Frog Token", "1/1 green Frog creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.FROG);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private FrogGreenToken(final FrogGreenToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public FrogGreenToken copy() {
|
||||
return new FrogGreenToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue