mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[CLB] Implemented Bhaal's Invoker
This commit is contained in:
parent
fc22db2c73
commit
12cbadbb64
3 changed files with 44 additions and 0 deletions
42
Mage.Sets/src/mage/cards/b/BhaalsInvoker.java
Normal file
42
Mage.Sets/src/mage/cards/b/BhaalsInvoker.java
Normal file
|
@ -0,0 +1,42 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.effects.common.DamagePlayersEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.TargetController;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BhaalsInvoker extends CardImpl {
|
||||
|
||||
public BhaalsInvoker(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||
|
||||
this.subtype.add(SubType.DRAGON);
|
||||
this.subtype.add(SubType.SHAMAN);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Scorching Ray — {8}: Bhaal's Invoker deals 4 damage to each opponent.
|
||||
this.addAbility(new SimpleActivatedAbility(
|
||||
new DamagePlayersEffect(4, TargetController.OPPONENT), new GenericManaCost(8)
|
||||
).withFlavorWord("Scorching Ray"));
|
||||
}
|
||||
|
||||
private BhaalsInvoker(final BhaalsInvoker card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BhaalsInvoker copy() {
|
||||
return new BhaalsInvoker(this);
|
||||
}
|
||||
}
|
|
@ -25,6 +25,7 @@ public final class CommanderLegendsBattleForBaldursGate extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Ancient Brass Dragon", 111, Rarity.MYTHIC, mage.cards.a.AncientBrassDragon.class));
|
||||
cards.add(new SetCardInfo("Arcane Signet", 298, Rarity.UNCOMMON, mage.cards.a.ArcaneSignet.class));
|
||||
cards.add(new SetCardInfo("Baldur's Gate", 345, Rarity.RARE, mage.cards.b.BaldursGate.class));
|
||||
cards.add(new SetCardInfo("Bhaal's Invoker", 163, Rarity.COMMON, mage.cards.b.BhaalsInvoker.class));
|
||||
cards.add(new SetCardInfo("Bountiful Promenade", 348, Rarity.RARE, mage.cards.b.BountifulPromenade.class));
|
||||
cards.add(new SetCardInfo("Bramble Sovereign", 218, Rarity.MYTHIC, mage.cards.b.BrambleSovereign.class));
|
||||
cards.add(new SetCardInfo("Charcoal Diamond", 305, Rarity.COMMON, mage.cards.c.CharcoalDiamond.class));
|
||||
|
|
|
@ -44213,6 +44213,7 @@ Elder Brain|Commander Legends: Battle for Baldur's Gate|125|R|{5}{B}{B}|Creature
|
|||
Passageway Seer|Commander Legends: Battle for Baldur's Gate|141|U|{3}{B}|Creature - Tiefling Warlock|2|2|Lifelink$When Passageway Seer enters the battlefield, you take the initiative.$At the beginning of your end step, if you have the initiative, put a +1/+1 counter on Passageway Seer.|
|
||||
Sarevok, Deathbringer|Commander Legends: Battle for Baldur's Gate|144|U|{3}{B}|Legendary Creature - Human Knight|3|4|At the beginning of each player's end step, if no permanents left the battlefield this turn, that player loses X life, where X is Sarevok's power.$Choose a Background|
|
||||
Stirge|Commander Legends: Battle for Baldur's Gate|150|C|{B}|Creature - Insect Bat|1|1|Flying$Stirge can't block.$Blood Drain — {1}{B}, Pay 1 life, Sacrifice Stirge: Draw a card.|
|
||||
Bhaal's Invoker|Commander Legends: Battle for Baldur's Gate|163|C|{2}{R}|Creature - Dragon Shaman|4|2|Scorching Ray — {8}: Bhaal's Invoker deals 4 damage to each opponent.|
|
||||
Fireball|Commander Legends: Battle for Baldur's Gate|175|U|{X}{R}|Sorcery|||This spell costs {1} more to cast for each target beyond the first.$Fireball deals X damage divided evenly, rounded down, among any number of targets.|
|
||||
Lightning Bolt|Commander Legends: Battle for Baldur's Gate|187|C|{R}|Instant|||Lightning Bolt deals 3 damage to any target.|
|
||||
Livaan, Cultist of Tiamat|Commander Legends: Battle for Baldur's Gate|188|U|{2}{R}|Legendary Creature - Dragon Shaman|1|3|Whenever you cast a noncreature spell, target creature gets +X/+0 until end of turn, where X is that spell's mana value.$Choose a Background|
|
||||
|
|
Loading…
Reference in a new issue