mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Implemented Raugrin Crystal
This commit is contained in:
parent
418c834c1d
commit
d44a948046
3 changed files with 41 additions and 1 deletions
39
Mage.Sets/src/mage/cards/r/RaugrinCrystal.java
Normal file
39
Mage.Sets/src/mage/cards/r/RaugrinCrystal.java
Normal file
|
@ -0,0 +1,39 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.keyword.CyclingAbility;
|
||||
import mage.abilities.mana.BlueManaAbility;
|
||||
import mage.abilities.mana.RedManaAbility;
|
||||
import mage.abilities.mana.WhiteManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RaugrinCrystal extends CardImpl {
|
||||
|
||||
public RaugrinCrystal(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
|
||||
|
||||
// {T}: Add {U}, {R}, or {W}.
|
||||
this.addAbility(new BlueManaAbility());
|
||||
this.addAbility(new RedManaAbility());
|
||||
this.addAbility(new WhiteManaAbility());
|
||||
|
||||
// Cycling {2}
|
||||
this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
|
||||
}
|
||||
|
||||
private RaugrinCrystal(final RaugrinCrystal card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RaugrinCrystal copy() {
|
||||
return new RaugrinCrystal(this);
|
||||
}
|
||||
}
|
|
@ -39,6 +39,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Mosscoat Goriak", 167, Rarity.COMMON, mage.cards.m.MosscoatGoriak.class));
|
||||
cards.add(new SetCardInfo("Pacifism", 25, Rarity.COMMON, mage.cards.p.Pacifism.class));
|
||||
cards.add(new SetCardInfo("Primal Empathy", 200, Rarity.UNCOMMON, mage.cards.p.PrimalEmpathy.class));
|
||||
cards.add(new SetCardInfo("Raugrin Crystal", 238, Rarity.UNCOMMON, mage.cards.r.RaugrinCrystal.class));
|
||||
cards.add(new SetCardInfo("Snapdax, Apex of the Hunt", 209, Rarity.MYTHIC, mage.cards.s.SnapdaxApexOfTheHunt.class));
|
||||
cards.add(new SetCardInfo("Sprite Dragon", 211, Rarity.UNCOMMON, mage.cards.s.SpriteDragon.class));
|
||||
cards.add(new SetCardInfo("Titanoth Rex", 174, Rarity.UNCOMMON, mage.cards.t.TitanothRex.class));
|
||||
|
|
|
@ -36778,7 +36778,7 @@ Proud Wildbonder|Ikoria: Lair of Behemoths|229|U|{2}{R/G}{R/G}|Creature - Human
|
|||
Umori, the Collector|Ikoria: Lair of Behemoths|231|R|{2}{B/G}{B/G}|Legendary Creature - Ooze|4|5|Companion — Each nonland card in your starting deck shares a card type.$As Umori, the Collector enters the battlefield, choose a card type.$Spells you cast of the chosen type cost {1} less to cast.|
|
||||
Indatha Crystal|Ikoria: Lair of Behemoths|235|C|{3}|Artifact|||{T}: Add {W}, {B}, or {G}.$Cycling {2}|
|
||||
Ketria Crystal|Ikoria: Lair of Behemoths|236|C|{3}|Artifact|||{T}: Add {G}, {U}, or {R}.$Cycling {2}|
|
||||
Ragurin Crystal|Ikoria: Lair of Behemoths|238|U|{3}|Artifact|||{T}: Add {U}, {R}, or {W}.$Cycling {2}|
|
||||
Raugrin Crystal|Ikoria: Lair of Behemoths|238|U|{3}|Artifact|||{T}: Add {U}, {R}, or {W}.$Cycling {2}|
|
||||
Savai Crystal|Ikoria: Lair of Behemoths|239|U|{3}|Artifact|||{T}: Add {R}, {W}, or {B}.$Cycling {2}|
|
||||
Zagoth Crystal|Ikoria: Lair of Behemoths|242|U|{3}|Artifact|||{T}: Add {B}, {G}, or {U}.$Cycling {2}|
|
||||
Zilortha, Strength Incarnate|Ikoria: Lair of Behemoths|275|M|{3}{R}{G}|Legendary Creature - Dinosaur|7|3|Trample$Lethal damage dealt to creatures you control is determined by their power rather than their toughness.|
|
||||
|
|
Loading…
Reference in a new issue