mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[FIN] Implement Gysahl Greens
This commit is contained in:
parent
e7fa4d50d1
commit
b5eb09e31a
3 changed files with 71 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.LandfallAbility;
|
||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author LoneFox
|
||||
*/
|
||||
public final class BirdLandfallToken extends TokenImpl {
|
||||
|
||||
public BirdLandfallToken() {
|
||||
super("Bird Token", "2/2 green Bird creature token with \"Whenever a land you control enters, this token gets +1/+0 until end of turn.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
subtype.add(SubType.BIRD);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
|
||||
addAbility(new LandfallAbility(new BoostSourceEffect(1, 0, Duration.EndOfTurn)).setAbilityWord(null));
|
||||
}
|
||||
|
||||
private BirdLandfallToken(final BirdLandfallToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BirdLandfallToken copy() {
|
||||
return new BirdLandfallToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue