[SOM] Precursor Golem (target arrows in UI are not displayed correctly for some reason)

This commit is contained in:
magenoxx 2011-08-03 10:05:32 +04:00
parent a260fd92b2
commit 669a6bda47

View file

@ -0,0 +1,203 @@
/*
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.sets.scarsofmirrodin;
import mage.Constants;
import mage.Constants.CardType;
import mage.Constants.Rarity;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.SpellAbility;
import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
import mage.abilities.effects.Effect;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.cards.CardImpl;
import mage.filter.Filter;
import mage.filter.FilterPermanent;
import mage.filter.FilterSpell;
import mage.game.Game;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.game.stack.Spell;
import mage.target.Target;
import mage.target.targetpointer.FixedTarget;
import java.util.UUID;
/**
* @author nantuko
*/
public class PrecursorGolem extends CardImpl<PrecursorGolem> {
public PrecursorGolem(UUID ownerId) {
super(ownerId, 194, "Precursor Golem", Rarity.RARE, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{5}");
this.expansionSetCode = "SOM";
this.subtype.add("Golem");
this.power = new MageInt(3);
this.toughness = new MageInt(3);
// When Precursor Golem enters the battlefield, put two 3/3 colorless Golem artifact creature tokens onto the battlefield.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new GolemToken(), 2), false));
// Whenever a player casts an instant or sorcery spell that targets only a single Golem, that player copies that spell for each other Golem that spell could target. Each copy targets a different one of those Golems.
this.addAbility(new PrecursorGolemCopyTriggeredAbility());
}
public PrecursorGolem(final PrecursorGolem card) {
super(card);
}
@Override
public PrecursorGolem copy() {
return new PrecursorGolem(this);
}
}
class PrecursorGolemCopyTriggeredAbility extends TriggeredAbilityImpl<PrecursorGolemCopyTriggeredAbility> {
private static FilterSpell filter = new FilterSpell();
static {
filter.getCardType().add(CardType.INSTANT);
filter.getCardType().add(CardType.SORCERY);
filter.setScopeCardType(Filter.ComparisonScope.Any);
}
PrecursorGolemCopyTriggeredAbility() {
super(Constants.Zone.BATTLEFIELD, new PrecursorGolemCopySpellEffect(), false);
}
PrecursorGolemCopyTriggeredAbility(final PrecursorGolemCopyTriggeredAbility ability) {
super(ability);
}
@Override
public PrecursorGolemCopyTriggeredAbility copy() {
return new PrecursorGolemCopyTriggeredAbility(this);
}
@Override
public boolean checkTrigger(GameEvent event, Game game) {
if (event.getType() == GameEvent.EventType.SPELL_CAST) {
Spell spell = game.getStack().getSpell(event.getTargetId());
if (checkSpell(spell, game)) {
return true;
}
}
return false;
}
private boolean checkSpell(Spell spell, Game game) {
if (spell != null &&
(spell.getCardType().contains(CardType.INSTANT) || spell.getCardType().contains(CardType.SORCERY))) {
UUID targetGolem = null;
SpellAbility sa = spell.getSpellAbility();
for (Effect effect : sa.getEffects()) {
for (UUID target : effect.getTargetPointer().getTargets(sa)) {
Permanent permanent = game.getPermanent(target);
if (permanent != null) {
if (!permanent.getSubtype().contains("Golem")) {
return false;
}
if (targetGolem == null) {
targetGolem = target;
} else
// If a spell has multiple targets, but it's targeting the same Golem with all of them, Precursor Golem's last ability will trigger
if (!targetGolem.equals(target)) {
return false;
}
}
}
}
getEffects().get(0).setTargetPointer(new FixedTarget(spell.getId()));
return true;
}
return false;
}
@Override
public String getRule() {
return "Whenever a player casts an instant or sorcery spell that targets only a single Golem, that player copies that spell for each other Golem that spell could target. Each copy targets a different one of those Golems";
}
}
class PrecursorGolemCopySpellEffect extends OneShotEffect<PrecursorGolemCopySpellEffect> {
private static FilterPermanent filterGolem = new FilterPermanent();
static {
filterGolem.getSubtype().add("Golem");
filterGolem.setScopeSubtype(Filter.ComparisonScope.Any);
}
public PrecursorGolemCopySpellEffect() {
super(Constants.Outcome.Copy);
}
public PrecursorGolemCopySpellEffect(final PrecursorGolemCopySpellEffect effect) {
super(effect);
}
@Override
public boolean apply(Game game, Ability source) {
Spell spell = game.getStack().getSpell(targetPointer.getFirst(source));
if (spell != null) {
SpellAbility sa = spell.getSpellAbility();
for (Permanent permanent : game.getBattlefield().getAllActivePermanents(filterGolem)) {
boolean legal = true;
for (Target target : sa.getTargets()) {
if (!target.canTarget(permanent.getId(), game)) {
legal = false;
break;
}
}
if (legal) {
Spell copy = spell.copySpell();
copy.setControllerId(spell.getControllerId());
copy.setCopiedSpell(true);
for (Effect effect : copy.getSpellAbility().getEffects()) {
effect.setTargetPointer(new FixedTarget(permanent.getId()));
}
game.getStack().push(copy);
}
}
return true;
}
return false;
}
@Override
public PrecursorGolemCopySpellEffect copy() {
return new PrecursorGolemCopySpellEffect(this);
}
}