mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
[JOU] Added 1 card.
This commit is contained in:
parent
c6f771f2b7
commit
b8f7c73e8c
2 changed files with 72 additions and 0 deletions
67
Mage.Sets/src/mage/sets/journeyintonyx/ForgebornOreads.java
Normal file
67
Mage.Sets/src/mage/sets/journeyintonyx/ForgebornOreads.java
Normal file
|
@ -0,0 +1,67 @@
|
|||
/*
|
||||
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification, are
|
||||
* permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||
* conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* The views and conclusions contained in the software and documentation are those of the
|
||||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
package mage.sets.journeyintonyx;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.abilityword.ConstellationAbility;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Rarity;
|
||||
import mage.target.common.TargetCreatureOrPlayer;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class ForgebornOreads extends CardImpl<ForgebornOreads> {
|
||||
|
||||
public ForgebornOreads(UUID ownerId) {
|
||||
super(ownerId, 999, "Forgeborn Oreads", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{2}{R}{R}");
|
||||
this.expansionSetCode = "JOU";
|
||||
this.subtype.add("Nymph");
|
||||
|
||||
this.color.setRed(true);
|
||||
|
||||
// Constellation - Whenever Forgeborn Oreads or another enchantment enters the battlefield under your control, Forgeborn Oreads deals 1 damage to target creature or player.
|
||||
Ability ability = new ConstellationAbility(new DamageTargetEffect(1));
|
||||
ability.addTarget(new TargetCreatureOrPlayer(true));
|
||||
this.addAbility(ability);
|
||||
|
||||
}
|
||||
|
||||
public ForgebornOreads(final ForgebornOreads card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ForgebornOreads copy() {
|
||||
return new ForgebornOreads(this);
|
||||
}
|
||||
}
|
|
@ -23198,3 +23198,8 @@ Kiora's Dismissal|Journey into Nyx|44|R|{U}|Instant|||Strive
|
|||
Worst Fears|Journey into Nyx|97|M|{7}{B}|Sorcery|||You control target player during that player's next turn. Exile Worst Fears. (You see all cards that player could see and make all decisions for that player.)|
|
||||
Ritual of the Returned|Journey into Nyx|80|U|{3}{B}|Instant|||Exile target creature card from your graveyard. Put a black Zombie creature token onto the battlefield with power equal to the exiled card's power and toughness equal to the exiled card's toughness.|
|
||||
Pheres Band Warchief|Journey into Nyx|135|R|{3}{G}|Creature - Centaur Warrior|3|3|Vigilance, trample$Other Centaur creatures you control get +1/+1 and have vigilance and trample.|
|
||||
Athreos, God of Passage|Journey into Nyx|146|M|{1}{W}{B}|Legendary Enchantment Creature - God|5|4|Indestructible$As long as your devotion to white and black is less than seven, Athreos isn't a creature.$Whenever another creature you own dies, return it to your hand unless target opponent pays 3 life.|
|
||||
Hydra Broodmaster|Journey into Nyx|126|R|{4}{G}{G}|Creature - Hydra|7|7|{X}{X}{G}: Monstrosity X$When Hydra Broodmaster becomes monstrous, put X X/X green Hydra creature tokens onto the battlefield.|
|
||||
King Macar, the Gold-Cursed|Journey into Nyx|74|R|{2}{B}{B}|Legendary Creature - Human|2|3|Inspired — Whenever King Macar, the Gold-Cursed becomes untapped, you may exile target creature. If you do, put a colorless artifact token named Gold onto the battlefield. It has "Sacrifice this artifact: Add one mana of any color to your mana pool."|
|
||||
Polymorphous Rush|Journey into Nyx|46|R|{2}{U}|Instant|||Strive — Polymorphous Rush costs 1U more to cast for each target beyond the first.$Choose a creature on the battlefield. Any number of target creatures you control each become a copy of that creature until end of turn.|
|
||||
Forgeborn Oreads|Journey into Nyx|999|U|{2}{R}{R}|Enchantment Creature - Nymph|||Constellation — Whenever Forgeborn Oreads or another enchantment enters the battlefield under your control, Forgeborn Oreads deals 1 damage to target creature or player.|
|
||||
|
|
Loading…
Add table
Reference in a new issue