mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
[MM2] Created Incandescent Soulstoke (had a typo in cards-data).
This commit is contained in:
parent
5c018b15af
commit
47ad97adc7
2 changed files with 55 additions and 1 deletions
|
@ -0,0 +1,54 @@
|
|||
/*
|
||||
* 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.modernmasters2015;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.constants.Rarity;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class IncandescentSoulstoke extends mage.sets.lorwyn.IncandescentSoulstoke {
|
||||
|
||||
public IncandescentSoulstoke(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 119;
|
||||
this.expansionSetCode = "MM2";
|
||||
this.rarity = Rarity.UNCOMMON;
|
||||
}
|
||||
|
||||
public IncandescentSoulstoke(final IncandescentSoulstoke card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IncandescentSoulstoke copy() {
|
||||
return new IncandescentSoulstoke(this);
|
||||
}
|
||||
}
|
|
@ -26058,7 +26058,7 @@ Goblin War Paint|Modern Masters 2015|115|C|{1}{R}|Enchantment - Aura|||Enchant c
|
|||
Gorehorn Minotaurs|Modern Masters 2015|116|C|{2}{R}{R}|Creature - Minotaur Warrior|3|3|Bloodthirst 2 <i>(If an opponent was dealt damage this turn, this creature enters the battlefield with two +1/+1 counters on it.)</i>|
|
||||
Gut Shot|Modern Masters 2015|117|C|{RP}|Instant|||<i>({RP} can be paid with either {R} or 2 life.)</i>$Gut Shot deals 1 damage to target creature or player.|
|
||||
Hellkite Charger|Modern Masters 2015|118|R|{4}{R}{R}|Creature - Dragon|5|5|Flying, haste$Whenever Hellkite Charger attacks, you may pay {5}{R}{R}. If you do, untap all attacking creatures and after this phase, there is an additional combat phase.|
|
||||
Incandescent Soulstroke|Modern Masters 2015|119|U|{2}{R}|Creature - Elemental Shaman|2|2|Other Elemental creatures you control get +1/+1.${1}{R}, {tap}: You may put an Elemental creature card from your hand onto the battlefield. That creature gains haste until end of turn. Sacrifice it at the beginning of the next end step.|
|
||||
Incandescent Soulstoke|Modern Masters 2015|119|U|{2}{R}|Creature - Elemental Shaman|2|2|Other Elemental creatures you control get +1/+1.${1}{R}, {tap}: You may put an Elemental creature card from your hand onto the battlefield. That creature gains haste until end of turn. Sacrifice it at the beginning of the next end step.|
|
||||
Inner-Flame Igniter|Modern Masters 2015|120|C|{2}{R}|Creature - Elemental Warrior|2|2|{2}{R}: Creatures you control get +1/+0 until end of turn. If this is the third time this ability has resolved this turn, creatures you control gain first strike until end of turn.|
|
||||
Kiki-Jiki, Mirror Breaker|Modern Masters 2015|121|M|{2}{R}{R}{R}|Legendary Creature - Goblin Shaman|2|2|Haste${tap}: Put a token that's a copy of target nonlegendary creature you control onto the battlefield. That token has haste. Sacrifice it at the beginning of the next end step.|
|
||||
Lightning Bolt|Modern Masters 2015|122|U|{R}|Instant|||Lightning Bolt deals 3 damage to target creature or player.|
|
||||
|
|
Loading…
Reference in a new issue