mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
costs fix
This commit is contained in:
parent
9cb05e88b9
commit
07d13083fa
7 changed files with 6 additions and 7 deletions
|
@ -3,7 +3,6 @@
|
|||
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
|
||||
<output url="file://$MODULE_DIR$/target/classes" />
|
||||
<output-test url="file://$MODULE_DIR$/target/test-classes" />
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
|
||||
|
|
|
@ -41,7 +41,7 @@ import mage.cards.CardImpl;
|
|||
public class HarvestGwyllion extends CardImpl<HarvestGwyllion> {
|
||||
|
||||
public HarvestGwyllion(UUID ownerId) {
|
||||
super(ownerId, 90, "Harvest Gwyllion", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{WB}{WB}");
|
||||
super(ownerId, 90, "Harvest Gwyllion", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{W/B}{W/B}");
|
||||
this.expansionSetCode = "EVE";
|
||||
this.subtype.add("Hag");
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ import mage.cards.CardImpl;
|
|||
public class HearthfireHobgoblin extends CardImpl<HearthfireHobgoblin> {
|
||||
|
||||
public HearthfireHobgoblin(UUID ownerId) {
|
||||
super(ownerId, 141, "Hearthfire Hobgoblin", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{RW}{RW}{RW}");
|
||||
super(ownerId, 141, "Hearthfire Hobgoblin", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{R/W}{R/W}{R/W}");
|
||||
this.expansionSetCode = "EVE";
|
||||
this.subtype.add("Goblin");
|
||||
this.subtype.add("Soldier");
|
||||
|
|
|
@ -42,7 +42,7 @@ import mage.cards.CardImpl;
|
|||
public class HobgoblinDragoon extends CardImpl<HobgoblinDragoon> {
|
||||
|
||||
public HobgoblinDragoon(UUID ownerId) {
|
||||
super(ownerId, 142, "Hobgoblin Dragoon", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{RW}");
|
||||
super(ownerId, 142, "Hobgoblin Dragoon", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{R/W}");
|
||||
this.expansionSetCode = "EVE";
|
||||
this.subtype.add("Goblin");
|
||||
this.subtype.add("Knight");
|
||||
|
|
|
@ -41,7 +41,7 @@ import mage.cards.CardImpl;
|
|||
public class NipGwyllion extends CardImpl<NipGwyllion> {
|
||||
|
||||
public NipGwyllion(UUID ownerId) {
|
||||
super(ownerId, 92, "Nip Gwyllion", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{WB}");
|
||||
super(ownerId, 92, "Nip Gwyllion", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{W/B}");
|
||||
this.expansionSetCode = "EVE";
|
||||
this.subtype.add("Hag");
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ import mage.cards.CardImpl;
|
|||
public class SlipperyBogle extends CardImpl<SlipperyBogle> {
|
||||
|
||||
public SlipperyBogle(UUID ownerId) {
|
||||
super(ownerId, 160, "Slippery Bogle", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{GU}");
|
||||
super(ownerId, 160, "Slippery Bogle", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{G/U}");
|
||||
this.expansionSetCode = "EVE";
|
||||
this.subtype.add("Beast");
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@ import mage.cards.CardImpl;
|
|||
public class StalkerHag extends CardImpl<StalkerHag> {
|
||||
|
||||
public StalkerHag(UUID ownerId) {
|
||||
super(ownerId, 129, "Stalker Hag", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{BG}{BG}{BG}");
|
||||
super(ownerId, 129, "Stalker Hag", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{B/G}{B/G}{B/G}");
|
||||
this.expansionSetCode = "EVE";
|
||||
this.subtype.add("Hag");
|
||||
|
||||
|
|
Loading…
Reference in a new issue