mirror of
https://github.com/correl/mage.git
synced 2025-04-09 01:01:06 -09:00
[RTR] some fixes to card attributes
This commit is contained in:
parent
f480d5cb66
commit
f4fb70fffd
7 changed files with 8 additions and 9 deletions
Mage.Sets/src/mage/sets/returntoravnica
|
@ -52,7 +52,7 @@ public class AbruptDecay extends CardImpl<AbruptDecay> {
|
|||
}
|
||||
|
||||
public AbruptDecay (UUID ownerId) {
|
||||
super(ownerId, 141, "Abrupt Decay", Rarity.MYTHIC, new CardType[]{CardType.INSTANT}, "{B}{G}");
|
||||
super(ownerId, 141, "Abrupt Decay", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{B}{G}");
|
||||
this.expansionSetCode = "RTR";
|
||||
this.color.setGreen(true);
|
||||
this.color.setBlack(true);
|
||||
|
|
|
@ -57,7 +57,7 @@ public class BlistercoilWeird extends CardImpl<BlistercoilWeird> {
|
|||
public BlistercoilWeird(UUID ownerId) {
|
||||
super(ownerId, 211, "Blistercoil Weird", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{U/R}");
|
||||
this.expansionSetCode = "RTR";
|
||||
|
||||
this.subtype.add("Weird");
|
||||
this.color.setBlue(true);
|
||||
this.color.setRed(true);
|
||||
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
package mage.sets.returntoravnica;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Duration;
|
||||
import mage.Constants.Rarity;
|
||||
|
@ -50,7 +49,7 @@ public class DruidsDeliverance extends CardImpl<DruidsDeliverance> {
|
|||
super(ownerId, 123, "Druid's Deliverance", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{1}{G}");
|
||||
this.expansionSetCode = "RTR";
|
||||
|
||||
this.color.setBlue(true);
|
||||
this.color.setGreen(true);
|
||||
|
||||
// Prevent all combat damage that would be dealt to you this turn. Populate.
|
||||
// (Put a token onto the battlefield that's a copy of a creature token you control.)
|
||||
|
|
|
@ -50,7 +50,7 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
public class MercurialChemister extends CardImpl<MercurialChemister> {
|
||||
|
||||
public MercurialChemister(UUID ownerId) {
|
||||
super(ownerId, 180, "Mercurial Chemister", Rarity.MYTHIC, new CardType[]{CardType.CREATURE}, "{3}{U}{R}");
|
||||
super(ownerId, 180, "Mercurial Chemister", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{3}{U}{R}");
|
||||
this.expansionSetCode = "RTR";
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Wizard");
|
||||
|
|
|
@ -53,7 +53,7 @@ public class MizziumMortars extends CardImpl<MizziumMortars> {
|
|||
}
|
||||
|
||||
public MizziumMortars(UUID ownerId) {
|
||||
super(ownerId, 101, "Mizzium Mortars", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{R}");
|
||||
super(ownerId, 101, "Mizzium Mortars", Rarity.RARE, new CardType[]{CardType.SORCERY}, "{1}{R}");
|
||||
this.expansionSetCode = "RTR";
|
||||
|
||||
this.color.setRed(true);
|
||||
|
|
|
@ -62,9 +62,9 @@ public class SelesnyaCharm extends CardImpl<SelesnyaCharm> {
|
|||
super(ownerId, 194, "Selesnya Charm", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{G}{W}");
|
||||
this.expansionSetCode = "RTR";
|
||||
|
||||
this.color.setGreen(true);
|
||||
this.color.setWhite(true);
|
||||
this.color.setBlue(true);
|
||||
|
||||
|
||||
// Choose one — Target creature gets +2/+2 and gains trample until end of turn;
|
||||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(TrampleAbility.getInstance(), Constants.Duration.EndOfTurn));
|
||||
this.getSpellAbility().addEffect(new BoostTargetEffect(2,2, Constants.Duration.EndOfTurn));
|
||||
|
|
|
@ -44,7 +44,7 @@ import mage.cards.CardImpl;
|
|||
public class ViashinoRacketeer extends CardImpl<ViashinoRacketeer> {
|
||||
|
||||
public ViashinoRacketeer(UUID ownerId) {
|
||||
super(ownerId, 112, "Viashino Racketeer", Rarity.MYTHIC, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||
super(ownerId, 112, "Viashino Racketeer", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{R}");
|
||||
this.expansionSetCode = "RTR";
|
||||
this.subtype.add("Viashino");
|
||||
this.subtype.add("Rogue");
|
||||
|
|
Loading…
Add table
Reference in a new issue