mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +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 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.subtype.add("Cat");
|
||||
this.subtype.add("Soldier");
|
||||
|
|
|
@ -49,7 +49,7 @@ import mage.target.common.TargetCardInHand;
|
|||
public class BalshanGriffin extends CardImpl {
|
||||
|
||||
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.subtype.add("Griffin");
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ import mage.target.TargetSpell;
|
|||
public class FerventDenial extends CardImpl {
|
||||
|
||||
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";
|
||||
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ import mage.players.Player;
|
|||
public class RiptideShapeshifter extends CardImpl {
|
||||
|
||||
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.subtype.add("Shapeshifter");
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ import mage.game.permanent.Permanent;
|
|||
public class Sunder extends CardImpl {
|
||||
|
||||
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";
|
||||
|
||||
// Return all lands to their owners' hands.
|
||||
|
|
Loading…
Reference in a new issue