mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[MAT] Implement Urborg Scavengers
This commit is contained in:
parent
a6597c692b
commit
e06f01abf4
2 changed files with 109 additions and 0 deletions
108
Mage.Sets/src/mage/cards/u/UrborgScavengers.java
Normal file
108
Mage.Sets/src/mage/cards/u/UrborgScavengers.java
Normal file
|
@ -0,0 +1,108 @@
|
|||
package mage.cards.u;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldOrAttacksSourceTriggeredAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.ContinuousEffectImpl;
|
||||
import mage.abilities.effects.common.ExileTargetForSourceEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.abilities.keyword.*;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.counters.CounterType;
|
||||
import mage.game.ExileZone;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.common.TargetCardInGraveyard;
|
||||
import mage.util.CardUtil;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class UrborgScavengers extends CardImpl {
|
||||
|
||||
public UrborgScavengers(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.SPIRIT);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Whenever Urborg Scavengers enters the battlefield or attacks, exile target card from a graveyard. Put a +1/+1 counter on Urborg Scavengers.
|
||||
Ability ability = new EntersBattlefieldOrAttacksSourceTriggeredAbility(new ExileTargetForSourceEffect());
|
||||
ability.addTarget(new TargetCardInGraveyard());
|
||||
ability.addEffect(new AddCountersSourceEffect(CounterType.P1P1.createInstance()));
|
||||
this.addAbility(ability);
|
||||
|
||||
// Urborg Scavengers has flying as long as a card exiled with it has flying. The same is true for first strike, double strike, deathtouch, haste, hexproof, indestructible, lifelink, menace, reach, trample, and vigilance.
|
||||
this.addAbility(new SimpleStaticAbility(new UrborgScavengersEffect()));
|
||||
}
|
||||
|
||||
private UrborgScavengers(final UrborgScavengers card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UrborgScavengers copy() {
|
||||
return new UrborgScavengers(this);
|
||||
}
|
||||
}
|
||||
|
||||
class UrborgScavengersEffect extends ContinuousEffectImpl {
|
||||
|
||||
UrborgScavengersEffect() {
|
||||
super(Duration.WhileOnBattlefield, Layer.AbilityAddingRemovingEffects_6, SubLayer.NA, Outcome.AddAbility);
|
||||
staticText = "{this} has flying as long as a card exiled with it has flying. " +
|
||||
"The same is true for first strike, double strike, deathtouch, haste, " +
|
||||
"hexproof, indestructible, lifelink, menace, reach, trample, and vigilance";
|
||||
}
|
||||
|
||||
private UrborgScavengersEffect(final UrborgScavengersEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UrborgScavengersEffect copy() {
|
||||
return new UrborgScavengersEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Permanent sourcePermanent = game.getPermanent(source.getSourceId());
|
||||
ExileZone exileZone = game
|
||||
.getExile()
|
||||
.getExileZone(CardUtil.getExileZoneId(
|
||||
game, source.getSourceId(), source.getSourceObjectZoneChangeCounter()
|
||||
));
|
||||
if (sourcePermanent == null || exileZone == null || exileZone.isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
exileZone
|
||||
.getCards(game)
|
||||
.stream()
|
||||
.map(card -> card.getAbilities(game))
|
||||
.flatMap(Collection::stream)
|
||||
.forEach(ability -> {
|
||||
if (ability instanceof FlyingAbility
|
||||
|| ability instanceof FirstStrikeAbility
|
||||
|| ability instanceof DoubleStrikeAbility
|
||||
|| ability instanceof DeathtouchAbility
|
||||
|| ability instanceof HasteAbility
|
||||
|| ability instanceof HexproofBaseAbility
|
||||
|| ability instanceof IndestructibleAbility
|
||||
|| ability instanceof LifelinkAbility
|
||||
|| ability instanceof MenaceAbility
|
||||
|| ability instanceof ReachAbility
|
||||
|| ability instanceof TrampleAbility
|
||||
|| ability instanceof VigilanceAbility) {
|
||||
sourcePermanent.addAbility(ability, source.getSourceId(), game);
|
||||
}
|
||||
});
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -56,6 +56,7 @@ public final class MarchOfTheMachineTheAftermath extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Training Grounds", 9, Rarity.RARE, mage.cards.t.TrainingGrounds.class));
|
||||
cards.add(new SetCardInfo("Tyvar the Bellicose", 48, Rarity.MYTHIC, mage.cards.t.TyvarTheBellicose.class));
|
||||
cards.add(new SetCardInfo("Undercity Upheaval", 25, Rarity.UNCOMMON, mage.cards.u.UndercityUpheaval.class));
|
||||
cards.add(new SetCardInfo("Urborg Scavengers", 15, Rarity.RARE, mage.cards.u.UrborgScavengers.class));
|
||||
cards.add(new SetCardInfo("Vesuvan Drifter", 10, Rarity.RARE, mage.cards.v.VesuvanDrifter.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue