mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
[CLB] Implemented Myrkul's Edict
This commit is contained in:
parent
aaee4b3be4
commit
e197b60519
2 changed files with 92 additions and 0 deletions
91
Mage.Sets/src/mage/cards/m/MyrkulsEdict.java
Normal file
91
Mage.Sets/src/mage/cards/m/MyrkulsEdict.java
Normal file
|
@ -0,0 +1,91 @@
|
|||
package mage.cards.m;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.RollDieWithResultTableEffect;
|
||||
import mage.abilities.effects.common.SacrificeEffect;
|
||||
import mage.abilities.effects.common.SacrificeOpponentsEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.predicate.permanent.GreatestPowerControlledPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.target.common.TargetOpponent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class MyrkulsEdict extends CardImpl {
|
||||
|
||||
private static final FilterControlledPermanent filter = new FilterControlledCreaturePermanent(
|
||||
"a creature with the greatest power among creatures that player controls"
|
||||
);
|
||||
|
||||
static {
|
||||
filter.add(GreatestPowerControlledPredicate.instance);
|
||||
}
|
||||
|
||||
public MyrkulsEdict(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{B}");
|
||||
|
||||
// Roll a d20.
|
||||
RollDieWithResultTableEffect effect = new RollDieWithResultTableEffect();
|
||||
|
||||
// 1-9 | Choose an opponent. That player sacrifices a creature.
|
||||
effect.addTableEntry(1, 9, new MyrkulsEdictEffect());
|
||||
|
||||
// 10-19 | Each opponent sacrifices a creature.
|
||||
effect.addTableEntry(10, 19, new SacrificeOpponentsEffect(StaticFilters.FILTER_CONTROLLED_CREATURE_SHORT_TEXT));
|
||||
|
||||
// 20 | Each opponent sacrifices a creature with the greatest power among creatures that player controls.
|
||||
effect.addTableEntry(20, 20, new SacrificeOpponentsEffect(filter));
|
||||
}
|
||||
|
||||
private MyrkulsEdict(final MyrkulsEdict card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MyrkulsEdict copy() {
|
||||
return new MyrkulsEdict(this);
|
||||
}
|
||||
}
|
||||
|
||||
class MyrkulsEdictEffect extends OneShotEffect {
|
||||
|
||||
MyrkulsEdictEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "choose an opponent. That player sacrifices a creature";
|
||||
}
|
||||
|
||||
private MyrkulsEdictEffect(final MyrkulsEdictEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MyrkulsEdictEffect copy() {
|
||||
return new MyrkulsEdictEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
TargetOpponent target = new TargetOpponent();
|
||||
target.setNotTarget(true);
|
||||
player.choose(outcome, target, source, game);
|
||||
return game.getPlayer(target.getFirstTarget()) != null
|
||||
&& new SacrificeEffect(
|
||||
StaticFilters.FILTER_PERMANENT_CREATURE, 1, ""
|
||||
).apply(game, source);
|
||||
}
|
||||
}
|
|
@ -187,6 +187,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Mountain", 463, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Murder", 134, Rarity.COMMON, mage.cards.m.Murder.class));
|
||||
cards.add(new SetCardInfo("Myconid Spore Tender", 243, Rarity.COMMON, mage.cards.m.MyconidSporeTender.class));
|
||||
cards.add(new SetCardInfo("Myrkul's Edict", 135, Rarity.COMMON, mage.cards.m.MyrkulsEdict.class));
|
||||
cards.add(new SetCardInfo("Myrkul's Invoker", 136, Rarity.COMMON, mage.cards.m.MyrkulsInvoker.class));
|
||||
cards.add(new SetCardInfo("Mystery Key", 85, Rarity.UNCOMMON, mage.cards.m.MysteryKey.class));
|
||||
cards.add(new SetCardInfo("Nalia de'Arnise", 649, Rarity.MYTHIC, mage.cards.n.NaliaDeArnise.class));
|
||||
|
|
Loading…
Reference in a new issue