mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[SNC] Implemented Cabaretti Charm
This commit is contained in:
parent
09b37a94f8
commit
063bf51bb5
5 changed files with 92 additions and 1 deletions
|
|
@ -66,8 +66,9 @@ public class Mode implements Serializable {
|
|||
return effects;
|
||||
}
|
||||
|
||||
public void addEffect(Effect effect) {
|
||||
public Mode addEffect(Effect effect) {
|
||||
effects.add(effect);
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getFlavorWord() {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,30 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CitizenGreenWhiteToken extends TokenImpl {
|
||||
|
||||
public CitizenGreenWhiteToken() {
|
||||
super("Citizen Token", "1/1 green and white Citizen creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
color.setWhite(true);
|
||||
|
||||
subtype.add(SubType.CITIZEN);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private CitizenGreenWhiteToken(final CitizenGreenWhiteToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public CitizenGreenWhiteToken copy() {
|
||||
return new CitizenGreenWhiteToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue