mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[CLB] Implemented Flaming Fist Officer
This commit is contained in:
parent
2adf5ca7b6
commit
f07e72f838
3 changed files with 45 additions and 1 deletions
|
@ -21,7 +21,7 @@ public final class EarthTremor extends CardImpl {
|
|||
// Earth Tremor deals damage to target creature or planeswalker equal to the number of lands you control.
|
||||
this.getSpellAbility().addEffect(new DamageTargetEffect(LandsYouControlCount.instance));
|
||||
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
|
||||
this.getSpellAbility().addHint(LandsYouControlHint.instance)
|
||||
this.getSpellAbility().addHint(LandsYouControlHint.instance);
|
||||
}
|
||||
|
||||
private EarthTremor(final EarthTremor card) {
|
||||
|
|
43
Mage.Sets/src/mage/cards/f/FlamingFistOfficer.java
Normal file
43
Mage.Sets/src/mage/cards/f/FlamingFistOfficer.java
Normal file
|
@ -0,0 +1,43 @@
|
|||
package mage.cards.f;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.LeavesBattlefieldAllTriggeredAbility;
|
||||
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 mage.filter.StaticFilters;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class FlamingFistOfficer extends CardImpl {
|
||||
|
||||
public FlamingFistOfficer(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
||||
|
||||
this.subtype.add(SubType.GNOME);
|
||||
this.subtype.add(SubType.SOLDIER);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Whenever another creature you control leaves the battlefield, put a +1/+1 counter on Flaming Fist Officer.
|
||||
this.addAbility(new LeavesBattlefieldAllTriggeredAbility(
|
||||
new AddCountersSourceEffect(CounterType.P1P1.createInstance()),
|
||||
StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE
|
||||
));
|
||||
}
|
||||
|
||||
private FlamingFistOfficer(final FlamingFistOfficer card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FlamingFistOfficer copy() {
|
||||
return new FlamingFistOfficer(this);
|
||||
}
|
||||
}
|
|
@ -130,6 +130,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Fire Diamond", 313, Rarity.COMMON, mage.cards.f.FireDiamond.class));
|
||||
cards.add(new SetCardInfo("Fireball", 175, Rarity.UNCOMMON, mage.cards.f.Fireball.class));
|
||||
cards.add(new SetCardInfo("Flaming Fist", 18, Rarity.COMMON, mage.cards.f.FlamingFist.class));
|
||||
cards.add(new SetCardInfo("Flaming Fist Officer", 19, Rarity.COMMON, mage.cards.f.FlamingFistOfficer.class));
|
||||
cards.add(new SetCardInfo("Font of Magic", 71, Rarity.MYTHIC, mage.cards.f.FontOfMagic.class));
|
||||
cards.add(new SetCardInfo("Forest", 467, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Ganax, Astral Hunter", 176, Rarity.UNCOMMON, mage.cards.g.GanaxAstralHunter.class));
|
||||
|
|
Loading…
Reference in a new issue