mirror of
https://github.com/correl/mage.git
synced 2025-03-16 01:06:34 -09:00
[AFR] Implemented Bard Class
This commit is contained in:
parent
0a6d1da08b
commit
d3e2821b2f
2 changed files with 123 additions and 0 deletions
122
Mage.Sets/src/mage/cards/b/BardClass.java
Normal file
122
Mage.Sets/src/mage/cards/b/BardClass.java
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
package mage.cards.b;
|
||||||
|
|
||||||
|
import mage.abilities.Ability;
|
||||||
|
import mage.abilities.common.SimpleStaticAbility;
|
||||||
|
import mage.abilities.common.SpellCastControllerTriggeredAbility;
|
||||||
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||||
|
import mage.abilities.effects.ReplacementEffectImpl;
|
||||||
|
import mage.abilities.effects.common.ExileTopXMayPlayUntilEndOfTurnEffect;
|
||||||
|
import mage.abilities.effects.common.continuous.GainClassAbilitySourceEffect;
|
||||||
|
import mage.abilities.effects.common.cost.SpellsCostReductionControllerEffect;
|
||||||
|
import mage.abilities.keyword.ClassLevelAbility;
|
||||||
|
import mage.abilities.keyword.ClassReminderAbility;
|
||||||
|
import mage.cards.CardImpl;
|
||||||
|
import mage.cards.CardSetInfo;
|
||||||
|
import mage.constants.*;
|
||||||
|
import mage.counters.CounterType;
|
||||||
|
import mage.filter.FilterCard;
|
||||||
|
import mage.filter.FilterSpell;
|
||||||
|
import mage.game.Game;
|
||||||
|
import mage.game.events.EntersTheBattlefieldEvent;
|
||||||
|
import mage.game.events.GameEvent;
|
||||||
|
import mage.game.permanent.Permanent;
|
||||||
|
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author TheElk801
|
||||||
|
*/
|
||||||
|
public final class BardClass extends CardImpl {
|
||||||
|
|
||||||
|
private static final FilterCard filter = new FilterCard("legendary spells");
|
||||||
|
private static final FilterSpell filter2 = new FilterSpell("a legendary spell");
|
||||||
|
|
||||||
|
static {
|
||||||
|
filter.add(SuperType.LEGENDARY.getPredicate());
|
||||||
|
filter2.add(SuperType.LEGENDARY.getPredicate());
|
||||||
|
}
|
||||||
|
|
||||||
|
public BardClass(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{R}{G}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.CLASS);
|
||||||
|
|
||||||
|
// (Gain the next level as a sorcery to add its ability.)
|
||||||
|
this.addAbility(new ClassReminderAbility());
|
||||||
|
|
||||||
|
// Legendary creatures you control enter the battlefield with an additional +1/+1 counter on them.
|
||||||
|
this.addAbility(new SimpleStaticAbility(new BardClassReplacementEffect()));
|
||||||
|
|
||||||
|
// {R}{G}: Level 2
|
||||||
|
this.addAbility(new ClassLevelAbility(2, "{R}{G}"));
|
||||||
|
|
||||||
|
// Legendary spells you cast cost {R}{G} less to cast. This effect reduces only the amount of colored mana you pay.
|
||||||
|
this.addAbility(new SimpleStaticAbility(new GainClassAbilitySourceEffect(
|
||||||
|
new SpellsCostReductionControllerEffect(filter, new ManaCostsImpl<>("{W}{B}")), 2
|
||||||
|
)));
|
||||||
|
|
||||||
|
// {3}{R}{G}: Level 3
|
||||||
|
this.addAbility(new ClassLevelAbility(3, "{3}{R}{G}"));
|
||||||
|
|
||||||
|
// Whenever you cast a legendary spell, exile the top two cards of your library. You may play them this turn.
|
||||||
|
this.addAbility(new SimpleStaticAbility(new GainClassAbilitySourceEffect(
|
||||||
|
new SpellCastControllerTriggeredAbility(
|
||||||
|
new ExileTopXMayPlayUntilEndOfTurnEffect(2)
|
||||||
|
.setText("exile the top two cards of your library. You may play them this turn"),
|
||||||
|
filter2, false
|
||||||
|
), 3
|
||||||
|
)));
|
||||||
|
}
|
||||||
|
|
||||||
|
private BardClass(final BardClass card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BardClass copy() {
|
||||||
|
return new BardClass(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class BardClassReplacementEffect extends ReplacementEffectImpl {
|
||||||
|
|
||||||
|
BardClassReplacementEffect() {
|
||||||
|
super(Duration.WhileOnBattlefield, Outcome.BoostCreature);
|
||||||
|
staticText = "legendary creatures you control enter the battlefield with an additional +1/+1 counter on them";
|
||||||
|
}
|
||||||
|
|
||||||
|
private BardClassReplacementEffect(final BardClassReplacementEffect effect) {
|
||||||
|
super(effect);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean checksEventType(GameEvent event, Game game) {
|
||||||
|
return event.getType() == GameEvent.EventType.ENTERS_THE_BATTLEFIELD;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
|
Permanent creature = ((EntersTheBattlefieldEvent) event).getTarget();
|
||||||
|
return creature != null
|
||||||
|
&& creature.isControlledBy(source.getControllerId())
|
||||||
|
&& creature.isCreature(game)
|
||||||
|
&& creature.isLegendary();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean replaceEvent(GameEvent event, Ability source, Game game) {
|
||||||
|
Permanent creature = ((EntersTheBattlefieldEvent) event).getTarget();
|
||||||
|
if (creature != null) {
|
||||||
|
creature.addCounters(
|
||||||
|
CounterType.P1P1.createInstance(), source.getControllerId(),
|
||||||
|
source, game, event.getAppliedEffects()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BardClassReplacementEffect copy() {
|
||||||
|
return new BardClassReplacementEffect(this);
|
||||||
|
}
|
||||||
|
}
|
|
@ -36,6 +36,7 @@ public final class AdventuresInTheForgottenRealms extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Bag of Holding", 240, Rarity.UNCOMMON, mage.cards.b.BagOfHolding.class));
|
cards.add(new SetCardInfo("Bag of Holding", 240, Rarity.UNCOMMON, mage.cards.b.BagOfHolding.class));
|
||||||
cards.add(new SetCardInfo("Baleful Beholder", 89, Rarity.COMMON, mage.cards.b.BalefulBeholder.class));
|
cards.add(new SetCardInfo("Baleful Beholder", 89, Rarity.COMMON, mage.cards.b.BalefulBeholder.class));
|
||||||
cards.add(new SetCardInfo("Bar the Gate", 47, Rarity.COMMON, mage.cards.b.BarTheGate.class));
|
cards.add(new SetCardInfo("Bar the Gate", 47, Rarity.COMMON, mage.cards.b.BarTheGate.class));
|
||||||
|
cards.add(new SetCardInfo("Bard Class", 217, Rarity.RARE, mage.cards.b.BardClass.class));
|
||||||
cards.add(new SetCardInfo("Barrowin of Clan Undurr", 218, Rarity.UNCOMMON, mage.cards.b.BarrowinOfClanUndurr.class));
|
cards.add(new SetCardInfo("Barrowin of Clan Undurr", 218, Rarity.UNCOMMON, mage.cards.b.BarrowinOfClanUndurr.class));
|
||||||
cards.add(new SetCardInfo("Battle Cry Goblin", 132, Rarity.UNCOMMON, mage.cards.b.BattleCryGoblin.class));
|
cards.add(new SetCardInfo("Battle Cry Goblin", 132, Rarity.UNCOMMON, mage.cards.b.BattleCryGoblin.class));
|
||||||
cards.add(new SetCardInfo("Black Dragon", 90, Rarity.UNCOMMON, mage.cards.b.BlackDragon.class));
|
cards.add(new SetCardInfo("Black Dragon", 90, Rarity.UNCOMMON, mage.cards.b.BlackDragon.class));
|
||||||
|
|
Loading…
Add table
Reference in a new issue