mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
[BLC] Implement Osteomancer Adept (#12797)
This commit is contained in:
parent
8421c993e9
commit
acf4599ce6
3 changed files with 128 additions and 0 deletions
126
Mage.Sets/src/mage/cards/o/OsteomancerAdept.java
Normal file
126
Mage.Sets/src/mage/cards/o/OsteomancerAdept.java
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
package mage.cards.o;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.MageIdentifier;
|
||||
import mage.MageInt;
|
||||
import mage.MageObjectReference;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.abilities.costs.Costs;
|
||||
import mage.abilities.costs.CostsImpl;
|
||||
import mage.abilities.costs.common.ForageCost;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.effects.AsThoughEffectImpl;
|
||||
import mage.abilities.effects.common.counter.AddCounterEnteringCreatureEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.*;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.counters.CounterType;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.stack.Spell;
|
||||
import mage.players.Player;
|
||||
import mage.watchers.Watcher;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Grath
|
||||
*/
|
||||
public final class OsteomancerAdept extends CardImpl {
|
||||
|
||||
public OsteomancerAdept(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
||||
|
||||
this.subtype.add(SubType.SQUIRREL);
|
||||
this.subtype.add(SubType.WARLOCK);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Deathtouch
|
||||
this.addAbility(DeathtouchAbility.getInstance());
|
||||
|
||||
// {T}: Until end of turn, you may cast creature spells from your graveyard by foraging in addition to paying their other costs. If you cast a spell this way, that creature enters with a finality counter on it.
|
||||
this.addAbility(new SimpleActivatedAbility(new OsteomancerAdeptEffect(), new TapSourceCost()).setIdentifier(MageIdentifier.OsteomancerAdeptAlternateCast), new OsteomancerAdeptWatcher());
|
||||
}
|
||||
|
||||
private OsteomancerAdept(final OsteomancerAdept card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public OsteomancerAdept copy() {
|
||||
return new OsteomancerAdept(this);
|
||||
}
|
||||
}
|
||||
|
||||
class OsteomancerAdeptEffect extends AsThoughEffectImpl {
|
||||
|
||||
OsteomancerAdeptEffect() {
|
||||
super(AsThoughEffectType.CAST_FROM_NOT_OWN_HAND_ZONE, Duration.EndOfTurn, Outcome.AIDontUseIt);
|
||||
staticText = "until end of turn, you may cast creature spells from your graveyard by foraging in addition to " +
|
||||
"paying their other costs. If you cast a spell this way, that creature enters with a finality " +
|
||||
"counter on it.";
|
||||
}
|
||||
|
||||
private OsteomancerAdeptEffect(final OsteomancerAdeptEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public OsteomancerAdeptEffect copy() {
|
||||
return new OsteomancerAdeptEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean applies(UUID objectId, Ability source, UUID affectedControllerId, Game game) {
|
||||
if (!source.isControlledBy(affectedControllerId)
|
||||
|| !game.isActivePlayer(affectedControllerId)) {
|
||||
return false;
|
||||
}
|
||||
Card card = game.getCard(objectId);
|
||||
Player player = game.getPlayer(affectedControllerId);
|
||||
if (card == null
|
||||
|| player == null
|
||||
|| !card.isOwnedBy(affectedControllerId)
|
||||
|| !card.isCreature(game)
|
||||
|| !game.getState().getZone(objectId).match(Zone.GRAVEYARD)) {
|
||||
return false;
|
||||
}
|
||||
Costs<Cost> newCosts = new CostsImpl<>();
|
||||
newCosts.addAll(card.getSpellAbility().getCosts());
|
||||
newCosts.add(new ForageCost());
|
||||
player.setCastSourceIdWithAlternateMana(
|
||||
card.getId(), card.getManaCost(), newCosts,
|
||||
MageIdentifier.OsteomancerAdeptAlternateCast
|
||||
);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
class OsteomancerAdeptWatcher extends Watcher {
|
||||
OsteomancerAdeptWatcher() {
|
||||
super(WatcherScope.GAME);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void watch(GameEvent event, Game game) {
|
||||
if (GameEvent.EventType.SPELL_CAST.equals(event.getType())
|
||||
&& event.hasApprovingIdentifier(MageIdentifier.OsteomancerAdeptAlternateCast)) {
|
||||
Spell target = game.getSpell(event.getTargetId());
|
||||
if (target != null) {
|
||||
game.getState().addEffect(new AddCounterEnteringCreatureEffect(new MageObjectReference(target.getCard(), game),
|
||||
CounterType.FINALITY.createInstance(), Outcome.UnboostCreature),
|
||||
target.getSpellAbility());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -171,6 +171,7 @@ public final class Bloomburrow extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Nightwhorl Hermit", 62, Rarity.COMMON, mage.cards.n.NightwhorlHermit.class));
|
||||
cards.add(new SetCardInfo("Nocturnal Hunger", 102, Rarity.COMMON, mage.cards.n.NocturnalHunger.class));
|
||||
cards.add(new SetCardInfo("Oakhollow Village", 258, Rarity.UNCOMMON, mage.cards.o.OakhollowVillage.class));
|
||||
cards.add(new SetCardInfo("Osteomancer Adept", 103, Rarity.RARE, mage.cards.o.OsteomancerAdept.class));
|
||||
cards.add(new SetCardInfo("Otterball Antics", 63, Rarity.UNCOMMON, mage.cards.o.OtterballAntics.class));
|
||||
cards.add(new SetCardInfo("Overprotect", 185, Rarity.UNCOMMON, mage.cards.o.Overprotect.class));
|
||||
cards.add(new SetCardInfo("Patchwork Banner", 247, Rarity.UNCOMMON, mage.cards.p.PatchworkBanner.class));
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@ public enum MageIdentifier {
|
|||
HelbruteAlternateCast,
|
||||
MaestrosAscendencyAlternateCast,
|
||||
NashiMoonSagesScionAlternateCast,
|
||||
OsteomancerAdeptAlternateCast,
|
||||
RafinnesGuidanceAlternateCast,
|
||||
RonaSheoldredsFaithfulAlternateCast,
|
||||
ScourgeOfNelTothAlternateCast,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue