mirror of
https://github.com/correl/mage.git
synced 2024-12-27 11:07:39 +00:00
Implemented Skophos, Maze Warden
This commit is contained in:
parent
94f5fb02a0
commit
e76d963b74
2 changed files with 105 additions and 0 deletions
104
Mage.Sets/src/mage/cards/s/SkophosMazeWarden.java
Normal file
104
Mage.Sets/src/mage/cards/s/SkophosMazeWarden.java
Normal file
|
@ -0,0 +1,104 @@
|
||||||
|
package mage.cards.s;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.TriggeredAbilityImpl;
|
||||||
|
import mage.abilities.common.SimpleActivatedAbility;
|
||||||
|
import mage.abilities.costs.mana.GenericManaCost;
|
||||||
|
import mage.abilities.effects.common.FightTargetSourceEffect;
|
||||||
|
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.CardType;
|
||||||
|
import mage.constants.Duration;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.Zone;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
import mage.game.stack.StackObject;
|
||||||
|
import mage.target.targetpointer.FixedTarget;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class SkophosMazeWarden extends CardImpl {
|
||||||
|
|
||||||
|
public SkophosMazeWarden(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.MINOTAUR);
|
||||||
|
this.subtype.add(SubType.WARRIOR);
|
||||||
|
this.power = new MageInt(3);
|
||||||
|
this.toughness = new MageInt(4);
|
||||||
|
|
||||||
|
// {1}: Skophos Maze-Warden gets +1/-1 until the end of turn.
|
||||||
|
this.addAbility(new SimpleActivatedAbility(
|
||||||
|
new BoostSourceEffect(1, -1, Duration.EndOfTurn), new GenericManaCost(1)
|
||||||
|
));
|
||||||
|
|
||||||
|
// Whenever another creature becomes the target of an ability of a land you control named Labyrinth of Skophos, you may have Skophos Maze-Warden fight that creature.
|
||||||
|
this.addAbility(new SkophosMazeWardenTriggeredAbility());
|
||||||
|
}
|
||||||
|
|
||||||
|
private SkophosMazeWarden(final SkophosMazeWarden card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SkophosMazeWarden copy() {
|
||||||
|
return new SkophosMazeWarden(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class SkophosMazeWardenTriggeredAbility extends TriggeredAbilityImpl {
|
||||||
|
|
||||||
|
SkophosMazeWardenTriggeredAbility() {
|
||||||
|
super(Zone.BATTLEFIELD, null, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
private SkophosMazeWardenTriggeredAbility(final SkophosMazeWardenTriggeredAbility ability) {
|
||||||
|
super(ability);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SkophosMazeWardenTriggeredAbility copy() {
|
||||||
|
return new SkophosMazeWardenTriggeredAbility(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.TARGETED;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checkTrigger(GameEvent event, Game game) {
|
||||||
|
StackObject stackObject = game.getStack().getStackObject(event.getSourceId());
|
||||||
|
if (stackObject == null) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Permanent permanent = game.getPermanent(stackObject.getSourceId());
|
||||||
|
if (permanent == null
|
||||||
|
|| !permanent.isControlledBy(getControllerId())
|
||||||
|
|| !permanent.isLand()
|
||||||
|
|| !permanent.getName().equals("Labyrinth of Skophos")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Permanent creature = game.getPermanent(event.getTargetId());
|
||||||
|
if (creature == null
|
||||||
|
|| !creature.isCreature()
|
||||||
|
|| creature.getId().equals(getSourceId())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
this.getEffects().clear();
|
||||||
|
this.addEffect(new FightTargetSourceEffect().setTargetPointer(new FixedTarget(creature, game)));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getRule() {
|
||||||
|
return "Whenever another creature becomes the target of an ability of a land you control " +
|
||||||
|
"named Labyrinth of Skophos, you may have {this} fight that creature";
|
||||||
|
}
|
||||||
|
}
|
|
@ -145,6 +145,7 @@ public final class TherosBeyondDeath extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Shimmerwing Chimera", 64, Rarity.UNCOMMON, mage.cards.s.ShimmerwingChimera.class));
|
cards.add(new SetCardInfo("Shimmerwing Chimera", 64, Rarity.UNCOMMON, mage.cards.s.ShimmerwingChimera.class));
|
||||||
cards.add(new SetCardInfo("Shoal Kraken", 65, Rarity.UNCOMMON, mage.cards.s.ShoalKraken.class));
|
cards.add(new SetCardInfo("Shoal Kraken", 65, Rarity.UNCOMMON, mage.cards.s.ShoalKraken.class));
|
||||||
cards.add(new SetCardInfo("Siona, Captain of the Pyleas", 226, Rarity.UNCOMMON, mage.cards.s.SionaCaptainOfThePyleas.class));
|
cards.add(new SetCardInfo("Siona, Captain of the Pyleas", 226, Rarity.UNCOMMON, mage.cards.s.SionaCaptainOfThePyleas.class));
|
||||||
|
cards.add(new SetCardInfo("Skophos Maze-Warden", 153, Rarity.UNCOMMON, mage.cards.s.SkophosMazeWarden.class));
|
||||||
cards.add(new SetCardInfo("Soul-Guide Lantern", 237, Rarity.UNCOMMON, mage.cards.s.SoulGuideLantern.class));
|
cards.add(new SetCardInfo("Soul-Guide Lantern", 237, Rarity.UNCOMMON, mage.cards.s.SoulGuideLantern.class));
|
||||||
cards.add(new SetCardInfo("Sphinx Mindbreaker", 290, Rarity.RARE, mage.cards.s.SphinxMindbreaker.class));
|
cards.add(new SetCardInfo("Sphinx Mindbreaker", 290, Rarity.RARE, mage.cards.s.SphinxMindbreaker.class));
|
||||||
cards.add(new SetCardInfo("Staggering Insight", 228, Rarity.UNCOMMON, mage.cards.s.StaggeringInsight.class));
|
cards.add(new SetCardInfo("Staggering Insight", 228, Rarity.UNCOMMON, mage.cards.s.StaggeringInsight.class));
|
||||||
|
|
Loading…
Reference in a new issue