mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
Implemented Lightning Phoenix
This commit is contained in:
parent
d8bbfefde6
commit
d5616762cb
2 changed files with 107 additions and 0 deletions
106
Mage.Sets/src/mage/cards/l/LightningPhoenix.java
Normal file
106
Mage.Sets/src/mage/cards/l/LightningPhoenix.java
Normal file
|
@ -0,0 +1,106 @@
|
|||
package mage.cards.l;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
|
||||
import mage.abilities.common.CantBlockAbility;
|
||||
import mage.abilities.condition.Condition;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.decorator.ConditionalInterveningIfTriggeredAbility;
|
||||
import mage.abilities.effects.common.DoIfCostPaid;
|
||||
import mage.abilities.effects.common.ReturnSourceFromGraveyardToBattlefieldEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.watchers.Watcher;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class LightningPhoenix extends CardImpl {
|
||||
|
||||
public LightningPhoenix(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||
|
||||
this.subtype.add(SubType.PHOENIX);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Haste
|
||||
this.addAbility(HasteAbility.getInstance());
|
||||
|
||||
// Lightning Phoenix can't block.
|
||||
this.addAbility(new CantBlockAbility());
|
||||
|
||||
// At the beginning of your end step, if an opponent was dealt 3 or more damage this turn, you may pay {R}. If you do, return Lightning Phoenix from your graveyard to the battlefield.
|
||||
this.addAbility(new ConditionalInterveningIfTriggeredAbility(
|
||||
new BeginningOfEndStepTriggeredAbility(
|
||||
Zone.GRAVEYARD,
|
||||
new DoIfCostPaid(
|
||||
new ReturnSourceFromGraveyardToBattlefieldEffect(), new ManaCostsImpl<>("{R}")
|
||||
), TargetController.YOU, null, false
|
||||
), LightningPhoenixCondition.instance, "At the beginning of your end step, " +
|
||||
"if an opponent was dealt 3 or more damage this turn, you may pay {R}. " +
|
||||
"If you do, return {this} from your graveyard to the battlefield."
|
||||
), new LightningPhoenixWatcher());
|
||||
}
|
||||
|
||||
private LightningPhoenix(final LightningPhoenix card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LightningPhoenix copy() {
|
||||
return new LightningPhoenix(this);
|
||||
}
|
||||
}
|
||||
|
||||
enum LightningPhoenixCondition implements Condition {
|
||||
instance;
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
LightningPhoenixWatcher watcher = game.getState().getWatcher(LightningPhoenixWatcher.class);
|
||||
return watcher != null && watcher.checkDamage(source.getControllerId());
|
||||
}
|
||||
}
|
||||
|
||||
class LightningPhoenixWatcher extends Watcher {
|
||||
|
||||
private final Map<UUID, Integer> damageMap = new HashMap<>();
|
||||
|
||||
LightningPhoenixWatcher() {
|
||||
super(WatcherScope.GAME);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void watch(GameEvent event, Game game) {
|
||||
if (event.getType() != GameEvent.EventType.DAMAGED_PLAYER) {
|
||||
return;
|
||||
}
|
||||
for (UUID playerId : game.getOpponents(event.getTargetId())) {
|
||||
damageMap.compute(playerId, ((u, i) -> i == null ? event.getAmount() : Integer.sum(i, event.getAmount())));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void reset() {
|
||||
super.reset();
|
||||
damageMap.clear();
|
||||
}
|
||||
|
||||
boolean checkDamage(UUID playerId) {
|
||||
return damageMap.getOrDefault(playerId, 0) >= 3;
|
||||
}
|
||||
}
|
|
@ -256,6 +256,7 @@ public final class Jumpstart extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Lightning Bolt", 342, Rarity.UNCOMMON, mage.cards.l.LightningBolt.class));
|
||||
cards.add(new SetCardInfo("Lightning Diadem", 343, Rarity.COMMON, mage.cards.l.LightningDiadem.class));
|
||||
cards.add(new SetCardInfo("Lightning Elemental", 344, Rarity.COMMON, mage.cards.l.LightningElemental.class));
|
||||
cards.add(new SetCardInfo("Lightning Phoenix", 21, Rarity.RARE, mage.cards.l.LightningPhoenix.class));
|
||||
cards.add(new SetCardInfo("Lightning Shrieker", 345, Rarity.COMMON, mage.cards.l.LightningShrieker.class));
|
||||
cards.add(new SetCardInfo("Lightning Visionary", 22, Rarity.COMMON, mage.cards.l.LightningVisionary.class));
|
||||
cards.add(new SetCardInfo("Lightning-Core Excavator", 32, Rarity.COMMON, mage.cards.l.LightningCoreExcavator.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue