mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Fixed wrong card nmbers of some cards (Dicate of Erebos, Kiora's Dismissal, Squelching Leeches, War-Wing Siren.
This commit is contained in:
parent
d47bfbdbc1
commit
5c314c5843
4 changed files with 4 additions and 4 deletions
|
@ -52,7 +52,7 @@ public class DictateOfErebos extends CardImpl<DictateOfErebos> {
|
|||
}
|
||||
|
||||
public DictateOfErebos(UUID ownerId) {
|
||||
super(ownerId, 63, "Dictate of Erebos", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{3}{B}{B}");
|
||||
super(ownerId, 65, "Dictate of Erebos", Rarity.RARE, new CardType[]{CardType.ENCHANTMENT}, "{3}{B}{B}");
|
||||
this.expansionSetCode = "JOU";
|
||||
|
||||
this.color.setBlack(true);
|
||||
|
|
|
@ -44,7 +44,7 @@ import mage.target.TargetPermanent;
|
|||
public class KiorasDismissal extends CardImpl<KiorasDismissal> {
|
||||
|
||||
public KiorasDismissal(UUID ownerId) {
|
||||
super(ownerId, 44, "Kiora's Dismissal", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{U}");
|
||||
super(ownerId, 44, "Kiora's Dismissal", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{U}");
|
||||
this.expansionSetCode = "JOU";
|
||||
|
||||
this.color.setBlue(true);
|
||||
|
|
|
@ -53,7 +53,7 @@ public class SquelchingLeeches extends CardImpl<SquelchingLeeches> {
|
|||
}
|
||||
|
||||
public SquelchingLeeches(UUID ownerId) {
|
||||
super(ownerId, 84, "Squelching Leeches", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{B}{B}");
|
||||
super(ownerId, 84, "Squelching Leeches", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{2}{B}{B}");
|
||||
this.expansionSetCode = "JOU";
|
||||
this.subtype.add("Leech");
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public class WarWingSiren extends CardImpl<WarWingSiren> {
|
||||
|
||||
public WarWingSiren(UUID ownerId) {
|
||||
super(ownerId, 57, "War-Wing Siren", Rarity.UNCOMMON, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{3}{U}{U}");
|
||||
super(ownerId, 57, "War-Wing Siren", Rarity.COMMON, new CardType[]{CardType.ENCHANTMENT, CardType.CREATURE}, "{3}{U}{U}");
|
||||
this.expansionSetCode = "JOU";
|
||||
this.subtype.add("Nymph");
|
||||
|
||||
|
|
Loading…
Reference in a new issue