mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[KHM] Implemented Reflections of Littjara
This commit is contained in:
parent
6837a02518
commit
2dc53bba18
2 changed files with 48 additions and 0 deletions
47
Mage.Sets/src/mage/cards/r/ReflectionsOfLittjara.java
Normal file
47
Mage.Sets/src/mage/cards/r/ReflectionsOfLittjara.java
Normal file
|
@ -0,0 +1,47 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.abilities.common.AsEntersBattlefieldAbility;
|
||||
import mage.abilities.common.SpellCastControllerTriggeredAbility;
|
||||
import mage.abilities.effects.common.ChooseCreatureTypeEffect;
|
||||
import mage.abilities.effects.common.CopyTargetSpellEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Outcome;
|
||||
import mage.filter.FilterSpell;
|
||||
import mage.filter.predicate.mageobject.ChosenSubtypePredicate;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ReflectionsOfLittjara extends CardImpl {
|
||||
|
||||
private static final FilterSpell filter = new FilterSpell("a spell of the chosen type");
|
||||
|
||||
static {
|
||||
filter.add(ChosenSubtypePredicate.instance);
|
||||
}
|
||||
|
||||
public ReflectionsOfLittjara(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{4}{U}");
|
||||
|
||||
// As Reflections of Littjara enters the battlefield, choose a creature type.
|
||||
this.addAbility(new AsEntersBattlefieldAbility(new ChooseCreatureTypeEffect(Outcome.Neutral)));
|
||||
|
||||
// Whenever you cast a spell of the chosen type, copy that spell.
|
||||
this.addAbility(new SpellCastControllerTriggeredAbility(new CopyTargetSpellEffect(
|
||||
false, true, false
|
||||
).setText("copy that spell"), filter, false, true));
|
||||
}
|
||||
|
||||
private ReflectionsOfLittjara(final ReflectionsOfLittjara card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReflectionsOfLittjara copy() {
|
||||
return new ReflectionsOfLittjara(this);
|
||||
}
|
||||
}
|
|
@ -234,6 +234,7 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Ravenous Lindwurm", 187, Rarity.COMMON, mage.cards.r.RavenousLindwurm.class));
|
||||
cards.add(new SetCardInfo("Realmwalker", 188, Rarity.RARE, mage.cards.r.Realmwalker.class));
|
||||
cards.add(new SetCardInfo("Reckless Crew", 148, Rarity.RARE, mage.cards.r.RecklessCrew.class));
|
||||
cards.add(new SetCardInfo("Reflections of Littjara", 73, Rarity.RARE, mage.cards.r.ReflectionsOfLittjara.class));
|
||||
cards.add(new SetCardInfo("Renegade Reaper", 386, Rarity.UNCOMMON, mage.cards.r.RenegadeReaper.class));
|
||||
cards.add(new SetCardInfo("Replicating Ring", 244, Rarity.UNCOMMON, mage.cards.r.ReplicatingRing.class));
|
||||
cards.add(new SetCardInfo("Return Upon the Tide", 106, Rarity.UNCOMMON, mage.cards.r.ReturnUponTheTide.class));
|
||||
|
|
Loading…
Reference in a new issue