mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Implemented Alchemist's Gift
This commit is contained in:
parent
c9cac3f87b
commit
14f415518d
2 changed files with 74 additions and 0 deletions
73
Mage.Sets/src/mage/cards/a/AlchemistsGift.java
Normal file
73
Mage.Sets/src/mage/cards/a/AlchemistsGift.java
Normal file
|
@ -0,0 +1,73 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostSourceEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilitySourceEffect;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Outcome;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AlchemistsGift extends CardImpl {
|
||||
|
||||
public AlchemistsGift(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{B}");
|
||||
|
||||
// Target creature gets +1/+1 and gains your choice of deathtouch or lifelink until end of turn.
|
||||
this.getSpellAbility().addEffect(new AlchemistsGiftEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
private AlchemistsGift(final AlchemistsGift card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AlchemistsGift copy() {
|
||||
return new AlchemistsGift(this);
|
||||
}
|
||||
}
|
||||
|
||||
class AlchemistsGiftEffect extends OneShotEffect {
|
||||
|
||||
AlchemistsGiftEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "Target creature gets +1/+1 and gains your choice of deathtouch or lifelink until end of turn.";
|
||||
}
|
||||
|
||||
private AlchemistsGiftEffect(final AlchemistsGiftEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AlchemistsGiftEffect copy() {
|
||||
return new AlchemistsGiftEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
Ability ability = player.chooseUse(
|
||||
outcome, "Deathtouch or lifelink?", null,
|
||||
"Deathtouch", "Lifelink", source, game
|
||||
) ? DeathtouchAbility.getInstance() : LifelinkAbility.getInstance();
|
||||
game.addEffect(new BoostSourceEffect(1, 1, Duration.EndOfTurn), ability);
|
||||
game.addEffect(new GainAbilitySourceEffect(ability, Duration.EndOfTurn), ability);
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -34,6 +34,7 @@ public final class CoreSet2021 extends ExpansionSet {
|
|||
this.maxCardNumberInBooster = 274;
|
||||
|
||||
cards.add(new SetCardInfo("Adherent of Hope", 321, Rarity.COMMON, mage.cards.a.AdherentOfHope.class));
|
||||
cards.add(new SetCardInfo("Alchemist's Gift", 87, Rarity.COMMON, mage.cards.a.AlchemistsGift.class));
|
||||
cards.add(new SetCardInfo("Alpine Houndmaster", 215, Rarity.UNCOMMON, mage.cards.a.AlpineHoundmaster.class));
|
||||
cards.add(new SetCardInfo("Alpine Watchdog", 2, Rarity.COMMON, mage.cards.a.AlpineWatchdog.class));
|
||||
cards.add(new SetCardInfo("Angelic Ascension", 3, Rarity.UNCOMMON, mage.cards.a.AngelicAscension.class));
|
||||
|
|
Loading…
Reference in a new issue