mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fix incorrect casting costs
why is 3UU so unpopular?
This commit is contained in:
parent
6a5ba89c03
commit
ae969b1797
5 changed files with 5 additions and 5 deletions
|
@ -48,7 +48,7 @@ import mage.game.events.GameEvent.EventType;
|
||||||
public class AjanisPridemate extends CardImpl {
|
public class AjanisPridemate extends CardImpl {
|
||||||
|
|
||||||
public AjanisPridemate(UUID ownerId) {
|
public AjanisPridemate(UUID ownerId) {
|
||||||
super(ownerId, 3, "Ajani's Pridemate", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "1}{W}");
|
super(ownerId, 3, "Ajani's Pridemate", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||||
this.expansionSetCode = "M11";
|
this.expansionSetCode = "M11";
|
||||||
this.subtype.add("Cat");
|
this.subtype.add("Cat");
|
||||||
this.subtype.add("Soldier");
|
this.subtype.add("Soldier");
|
||||||
|
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetCardInHand;
|
||||||
public class BalshanGriffin extends CardImpl {
|
public class BalshanGriffin extends CardImpl {
|
||||||
|
|
||||||
public BalshanGriffin(UUID ownerId) {
|
public BalshanGriffin(UUID ownerId) {
|
||||||
super(ownerId, 67, "Balshan Griffin", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
super(ownerId, 67, "Balshan Griffin", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}{U}");
|
||||||
this.expansionSetCode = "ODY";
|
this.expansionSetCode = "ODY";
|
||||||
this.subtype.add("Griffin");
|
this.subtype.add("Griffin");
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,7 @@ import mage.target.TargetSpell;
|
||||||
public class FerventDenial extends CardImpl {
|
public class FerventDenial extends CardImpl {
|
||||||
|
|
||||||
public FerventDenial(UUID ownerId) {
|
public FerventDenial(UUID ownerId) {
|
||||||
super(ownerId, 86, "Fervent Denial", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{3}{U}");
|
super(ownerId, 86, "Fervent Denial", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{3}{U}{U}");
|
||||||
this.expansionSetCode = "ODY";
|
this.expansionSetCode = "ODY";
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ import mage.players.Player;
|
||||||
public class RiptideShapeshifter extends CardImpl {
|
public class RiptideShapeshifter extends CardImpl {
|
||||||
|
|
||||||
public RiptideShapeshifter(UUID ownerId) {
|
public RiptideShapeshifter(UUID ownerId) {
|
||||||
super(ownerId, 109, "Riptide Shapeshifter", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
super(ownerId, 109, "Riptide Shapeshifter", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{3}{U}{U}");
|
||||||
this.expansionSetCode = "ONS";
|
this.expansionSetCode = "ONS";
|
||||||
this.subtype.add("Shapeshifter");
|
this.subtype.add("Shapeshifter");
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ import mage.game.permanent.Permanent;
|
||||||
public class Sunder extends CardImpl {
|
public class Sunder extends CardImpl {
|
||||||
|
|
||||||
public Sunder(UUID ownerId) {
|
public Sunder(UUID ownerId) {
|
||||||
super(ownerId, 101, "Sunder", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{3}{U}");
|
super(ownerId, 101, "Sunder", Rarity.RARE, new CardType[]{CardType.INSTANT}, "{3}{U}{U}");
|
||||||
this.expansionSetCode = "USG";
|
this.expansionSetCode = "USG";
|
||||||
|
|
||||||
// Return all lands to their owners' hands.
|
// Return all lands to their owners' hands.
|
||||||
|
|
Loading…
Reference in a new issue