forked from External/mage
[FIC] Implement Champions from Beyond
This commit is contained in:
parent
c6b5889201
commit
7552d30675
2 changed files with 54 additions and 0 deletions
53
Mage.Sets/src/mage/cards/c/ChampionsFromBeyond.java
Normal file
53
Mage.Sets/src/mage/cards/c/ChampionsFromBeyond.java
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.AttacksWithCreaturesTriggeredAbility;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.dynamicvalue.common.GetXValue;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
||||
import mage.abilities.effects.keyword.ScryEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.permanent.token.HeroToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ChampionsFromBeyond extends CardImpl {
|
||||
|
||||
public ChampionsFromBeyond(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{X}{W}{W}");
|
||||
|
||||
// When this enchantment enters, create X 1/1 colorless Hero creature tokens.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new HeroToken(), GetXValue.instance)));
|
||||
|
||||
// Light Party -- Whenever you attack with four or more creatures, scry 2, then draw a card.
|
||||
Ability ability = new AttacksWithCreaturesTriggeredAbility(new ScryEffect(2, false), 4);
|
||||
ability.addEffect(new DrawCardSourceControllerEffect(1).concatBy(", then"));
|
||||
this.addAbility(ability.withFlavorWord("Light Party"));
|
||||
|
||||
// Full Party -- Whenever you attack with eight or more creatures, those creatures get +4/+4 until end of turn.
|
||||
this.addAbility(new AttacksWithCreaturesTriggeredAbility(
|
||||
Zone.BATTLEFIELD,
|
||||
new BoostTargetEffect(4, 4)
|
||||
.setText("those creatures get +4/+4 until end of turn"),
|
||||
8, StaticFilters.FILTER_PERMANENT_CREATURES, true
|
||||
).withFlavorWord("Full Party"));
|
||||
}
|
||||
|
||||
private ChampionsFromBeyond(final ChampionsFromBeyond card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ChampionsFromBeyond copy() {
|
||||
return new ChampionsFromBeyond(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -62,6 +62,7 @@ public final class FinalFantasyCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Celes, Rune Knight", 209, Rarity.MYTHIC, mage.cards.c.CelesRuneKnight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Celes, Rune Knight", 220, Rarity.MYTHIC, mage.cards.c.CelesRuneKnight.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Champion's Helm", 337, Rarity.RARE, mage.cards.c.ChampionsHelm.class));
|
||||
cards.add(new SetCardInfo("Champions from Beyond", 11, Rarity.RARE, mage.cards.c.ChampionsFromBeyond.class));
|
||||
cards.add(new SetCardInfo("Chaos Warp", 291, Rarity.RARE, mage.cards.c.ChaosWarp.class));
|
||||
cards.add(new SetCardInfo("Chasm Skulker", 262, Rarity.RARE, mage.cards.c.ChasmSkulker.class));
|
||||
cards.add(new SetCardInfo("Chocobo Knights", 12, Rarity.RARE, mage.cards.c.ChocoboKnights.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue