mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 13:32:06 -08:00
Implemented Planewide Celebration
This commit is contained in:
parent
0a2f68400a
commit
41acfbb2fd
3 changed files with 91 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class PlanewideCelebrationToken extends TokenImpl {
|
||||
|
||||
public PlanewideCelebrationToken() {
|
||||
super("Citizen", "2/2 Citizen creature token that's all colors");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
color.setBlue(true);
|
||||
color.setBlack(true);
|
||||
color.setRed(true);
|
||||
color.setGreen(true);
|
||||
|
||||
subtype.add(SubType.CITIZEN);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
public PlanewideCelebrationToken(final PlanewideCelebrationToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public PlanewideCelebrationToken copy() {
|
||||
return new PlanewideCelebrationToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue