1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

[SLD] Implemented Lucille

This commit is contained in:
Evan Kranzler 2020-10-05 21:29:03 -04:00
parent 7ae462faca
commit 0ae6d8683e
2 changed files with 97 additions and 0 deletions
Mage.Sets/src/mage

View file

@ -0,0 +1,96 @@
package mage.cards.l;
import mage.abilities.Ability;
import mage.abilities.common.AttacksAttachedTriggeredAbility;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.continuous.BoostEquippedEffect;
import mage.abilities.effects.common.continuous.GainAbilityAttachedEffect;
import mage.abilities.keyword.EquipAbility;
import mage.abilities.keyword.MenaceAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.*;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.WalkerToken;
import mage.players.Player;
import mage.target.TargetPermanent;
import mage.target.common.TargetControlledCreaturePermanent;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class Lucille extends CardImpl {
public Lucille(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{1}{B}");
this.addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.EQUIPMENT);
// Equipped creature gets +2/+0 and has menace.
Ability ability = new SimpleStaticAbility(new BoostEquippedEffect(2, 0));
ability.addEffect(new GainAbilityAttachedEffect(
new MenaceAbility(), AttachmentType.EQUIPMENT
).setText("and has menace"));
this.addAbility(ability);
// Whenever equipped creature attacks, defending player sacrifices a creature. If they do, you create a Walker token.
this.addAbility(new AttacksAttachedTriggeredAbility(new LucilleEffect()));
// Equip {4}
this.addAbility(new EquipAbility(4));
}
private Lucille(final Lucille card) {
super(card);
}
@Override
public Lucille copy() {
return new Lucille(this);
}
}
class LucilleEffect extends OneShotEffect {
LucilleEffect() {
super(Outcome.Benefit);
staticText = "defending player sacrifices a creature. If they do, you create a Walker token";
}
private LucilleEffect(final LucilleEffect effect) {
super(effect);
}
@Override
public LucilleEffect copy() {
return new LucilleEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent equipment = game.getPermanent(source.getSourceId());
if (equipment == null) {
return false;
}
Player player = game.getPlayer(game.getCombat().getDefendingPlayerId(equipment.getAttachedTo(), game));
if (player == null) {
return false;
}
TargetPermanent target = new TargetControlledCreaturePermanent();
target.setNotTarget(true);
if (!target.canChoose(player.getId(), game)) {
return false;
}
player.choose(outcome, target, source.getSourceId(), game);
Permanent permanent = game.getPermanent(target.getFirstTarget());
return permanent.sacrifice(source.getSourceId(), game)
&& new WalkerToken().putOntoBattlefield(
1, game, source.getSourceId(), source.getControllerId()
);
}
}

View file

@ -73,6 +73,7 @@ public class SecretLairDrop extends ExpansionSet {
cards.add(new SetCardInfo("Lightning Bolt", 85, Rarity.RARE, mage.cards.l.LightningBolt.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Lightning Bolt", 86, Rarity.RARE, mage.cards.l.LightningBolt.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Lightning Greaves", 99, Rarity.RARE, mage.cards.l.LightningGreaves.class));
cards.add(new SetCardInfo("Lucille", 581, Rarity.MYTHIC, mage.cards.l.Lucille.class));
cards.add(new SetCardInfo("Marrow-Gnawer", 34, Rarity.RARE, mage.cards.m.MarrowGnawer.class));
cards.add(new SetCardInfo("Meren of Clan Nel Toth", 52, Rarity.MYTHIC, mage.cards.m.MerenOfClanNelToth.class));
cards.add(new SetCardInfo("Michonne, Ruthless Survivor", 146, Rarity.MYTHIC, mage.cards.m.MichonneRuthlessSurvivor.class));