forked from External/mage
[FIN] Implement Sazh's Chocobo
This commit is contained in:
parent
dc7b5cd84f
commit
141ec01106
2 changed files with 41 additions and 0 deletions
38
Mage.Sets/src/mage/cards/s/SazhsChocobo.java
Normal file
38
Mage.Sets/src/mage/cards/s/SazhsChocobo.java
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.LandfallAbility;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.counters.CounterType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SazhsChocobo extends CardImpl {
|
||||
|
||||
public SazhsChocobo(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}");
|
||||
|
||||
this.subtype.add(SubType.BIRD);
|
||||
this.power = new MageInt(0);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Landfall -- Whenever a land you control enters, put a +1/+1 counter on this creature.
|
||||
this.addAbility(new LandfallAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance())));
|
||||
}
|
||||
|
||||
private SazhsChocobo(final SazhsChocobo card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SazhsChocobo copy() {
|
||||
return new SazhsChocobo(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SetType;
|
||||
|
||||
/**
|
||||
|
|
@ -17,5 +18,7 @@ public final class FinalFantasy extends ExpansionSet {
|
|||
private FinalFantasy() {
|
||||
super("Final Fantasty", "FIN", ExpansionSet.buildDate(2025, 6, 13), SetType.EXPANSION);
|
||||
this.blockName = "Final Fantasty"; // for sorting in GUI
|
||||
|
||||
cards.add(new SetCardInfo("Sazh's Chocobo", 200, Rarity.UNCOMMON, mage.cards.s.SazhsChocobo.class));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue