mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
[FIN] Implement Travel the Overworld
This commit is contained in:
parent
01e8f75bf0
commit
f37feb152e
3 changed files with 46 additions and 0 deletions
44
Mage.Sets/src/mage/cards/t/TravelTheOverworld.java
Normal file
44
Mage.Sets/src/mage/cards/t/TravelTheOverworld.java
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.dynamicvalue.common.PermanentsOnBattlefieldCount;
|
||||
import mage.abilities.effects.common.AffinityEffect;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.hint.Hint;
|
||||
import mage.abilities.hint.ValueHint;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TravelTheOverworld extends CardImpl {
|
||||
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent(SubType.TOWN, "Towns");
|
||||
private static final Hint hint = new ValueHint("Towns you control", new PermanentsOnBattlefieldCount(filter));
|
||||
|
||||
public TravelTheOverworld(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{5}{U}{U}");
|
||||
|
||||
// Affinity for Towns
|
||||
this.addAbility(new SimpleStaticAbility(Zone.ALL, new AffinityEffect(filter)).setRuleAtTheTop(true).addHint(hint));
|
||||
|
||||
// Draw four cards.
|
||||
this.getSpellAbility().addEffect(new DrawCardSourceControllerEffect(4));
|
||||
}
|
||||
|
||||
private TravelTheOverworld(final TravelTheOverworld card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TravelTheOverworld copy() {
|
||||
return new TravelTheOverworld(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -560,6 +560,7 @@ public final class FinalFantasy extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Trance Kuja, Fate Defied", 399, Rarity.RARE, mage.cards.t.TranceKujaFateDefied.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Trance Kuja, Fate Defied", 497, Rarity.RARE, mage.cards.t.TranceKujaFateDefied.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Trance Kuja, Fate Defied", 544, Rarity.RARE, mage.cards.t.TranceKujaFateDefied.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Travel the Overworld", 82, Rarity.UNCOMMON, mage.cards.t.TravelTheOverworld.class));
|
||||
cards.add(new SetCardInfo("Traveling Chocobo", "551a", Rarity.MYTHIC, mage.cards.t.TravelingChocobo.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Traveling Chocobo", "551b", Rarity.MYTHIC, mage.cards.t.TravelingChocobo.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Traveling Chocobo", "551c", Rarity.MYTHIC, mage.cards.t.TravelingChocobo.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
|
|
@ -57708,6 +57708,7 @@ Summon: Shiva|Final Fantasy|78|U|{3}{U}{U}|Enchantment Creature - Saga Elemental
|
|||
Swallowed by Leviathan|Final Fantasy|79|U|{2}{U}|Instant|||Choose target spell. Surveil 2, then counter the chosen spell unless its controller pays {1} for each card in your graveyard.|
|
||||
Syncopate|Final Fantasy|80|C|{X}{U}|Instant|||Counter target spell unless its controller pays {X}. If that spell is countered this way, exile it instead of putting it into its owner's graveyard.|
|
||||
Thief's Knife|Final Fantasy|81|U|{2}{U}|Artifact - Equipment|||Job select$Equipped creature gets +1/+1, has "Whenever this creature deals combat damage to a player, draw a card," and is a Rogue in addition to its other types.$Equip {4}|
|
||||
Travel the Overworld|Final Fantasy|82|U|{5}{U}{U}|Sorcery|||Affinity for Towns$Draw four cards.|
|
||||
Ultros, Obnoxious Octopus|Final Fantasy|83|U|{1}{U}|Legendary Creature - Octopus|2|1|Whenever you cast a noncreature spell, if at least four mana was spent to cast it, tap target creature an opponent controls and put a stun counter on it.$Whenever you cast a noncreature spell, if at least eight mana was spent to cast it, put eight +1/+1 counters on Ultros.|
|
||||
Valkyrie Aerial Unit|Final Fantasy|84|U|{5}{U}{U}|Artifact Creature - Construct|5|4|Affinity for artifacts$Flying$When this creature enters, surveil 2.|
|
||||
The Water Crystal|Final Fantasy|85|R|{2}{U}{U}|Legendary Artifact|||Blue spells you cast cost {1} less to cast.$If an opponent would mill one or more cards, they mill that many cards plus four instead.${4}{U}{U}, {T}: Each opponent mills cards equal to the number of cards in your hand.|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue