[AFC] Implemented Wild-Magic Sorcerer

This commit is contained in:
Evan Kranzler 2021-08-09 09:27:11 -04:00
parent fe4edbd664
commit 054a90a038
2 changed files with 120 additions and 0 deletions

View file

@ -0,0 +1,119 @@
package mage.cards.w;
import mage.MageInt;
import mage.MageObjectReference;
import mage.abilities.Ability;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.ContinuousEffectImpl;
import mage.abilities.keyword.CascadeAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.*;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.stack.Spell;
import mage.game.stack.StackObject;
import mage.players.Player;
import mage.watchers.Watcher;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class WildMagicSorcerer extends CardImpl {
public WildMagicSorcerer(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}");
this.subtype.add(SubType.ORC);
this.subtype.add(SubType.SHAMAN);
this.power = new MageInt(4);
this.toughness = new MageInt(3);
// The first spell you cast from exile each turn has cascade.
this.addAbility(new SimpleStaticAbility(new WildMagicSorcererEffect()), new WildMagicSorcererWatcher());
}
private WildMagicSorcerer(final WildMagicSorcerer card) {
super(card);
}
@Override
public WildMagicSorcerer copy() {
return new WildMagicSorcerer(this);
}
}
class WildMagicSorcererEffect extends ContinuousEffectImpl {
private final Ability cascadeAbility = new CascadeAbility();
public WildMagicSorcererEffect() {
super(Duration.WhileOnBattlefield, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility);
staticText = "the first spell you cast from exile each turn has cascade";
}
public WildMagicSorcererEffect(final WildMagicSorcererEffect effect) {
super(effect);
}
@Override
public WildMagicSorcererEffect copy() {
return new WildMagicSorcererEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller == null) {
return false;
}
for (StackObject stackObject : game.getStack()) {
// only spells cast, so no copies of spells
if (stackObject.isControlledBy(source.getControllerId())
&& WildMagicSorcererWatcher.checkSpell(stackObject, game)) {
game.getState().addOtherAbility(((Spell) stackObject).getCard(), cascadeAbility);
}
}
return true;
}
}
class WildMagicSorcererWatcher extends Watcher {
private final Map<UUID, MageObjectReference> playerMap = new HashMap<>();
WildMagicSorcererWatcher() {
super(WatcherScope.GAME);
}
@Override
public void watch(GameEvent event, Game game) {
if (event.getType() != GameEvent.EventType.SPELL_CAST || event.getZone() == Zone.EXILED) {
return;
}
Spell spell = game.getSpell(event.getTargetId());
if (spell == null) {
return;
}
playerMap.computeIfAbsent(event.getPlayerId(), x -> new MageObjectReference(spell.getMainCard(), game));
}
@Override
public void reset() {
playerMap.clear();
super.reset();
}
static boolean checkSpell(StackObject stackObject, Game game) {
if (stackObject.isCopy() || !(stackObject instanceof Spell)) {
return false;
}
WildMagicSorcererWatcher watcher = game.getState().getWatcher(WildMagicSorcererWatcher.class);
return watcher.playerMap.containsKey(stackObject.getControllerId())
&& watcher.playerMap.get(stackObject).refersTo(((Spell) stackObject).getMainCard(), game);
}
}

View file

@ -261,6 +261,7 @@ public final class ForgottenRealmsCommander extends ExpansionSet {
cards.add(new SetCardInfo("Warstorm Surge", 149, Rarity.RARE, mage.cards.w.WarstormSurge.class));
cards.add(new SetCardInfo("Wayfarer's Bauble", 222, Rarity.COMMON, mage.cards.w.WayfarersBauble.class));
cards.add(new SetCardInfo("Wild Growth", 174, Rarity.COMMON, mage.cards.w.WildGrowth.class));
cards.add(new SetCardInfo("Wild-Magic Sorcerer", 36, Rarity.RARE, mage.cards.w.WildMagicSorcerer.class));
cards.add(new SetCardInfo("Winds of Rath", 78, Rarity.RARE, mage.cards.w.WindsOfRath.class));
cards.add(new SetCardInfo("Winged Boots", 20, Rarity.RARE, mage.cards.w.WingedBoots.class));
cards.add(new SetCardInfo("Wulfgar of Icewind Dale", 56, Rarity.RARE, mage.cards.w.WulfgarOfIcewindDale.class));