mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Fixed an incompatibility issue with the card shop and old quest files.
- Fixed some more of Chris' changes I overwrote.
This commit is contained in:
@@ -6362,6 +6362,7 @@ Zephid's Embrace
|
|||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
Enchanted creature gets +2/+2 and has flying and shroud.
|
Enchanted creature gets +2/+2 and has flying and shroud.
|
||||||
Enchant creature
|
Enchant creature
|
||||||
|
enPump:+2/+2/Flying & Shroud
|
||||||
|
|
||||||
Sunastian Falconer
|
Sunastian Falconer
|
||||||
3 R G
|
3 R G
|
||||||
@@ -6419,6 +6420,7 @@ Battle Mastery
|
|||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
Enchanted creature has double strike.
|
Enchanted creature has double strike.
|
||||||
Enchant creature
|
Enchant creature
|
||||||
|
enPump:Double Strike
|
||||||
|
|
||||||
Uncontrollable Anger
|
Uncontrollable Anger
|
||||||
2 R R
|
2 R R
|
||||||
@@ -6838,15 +6840,17 @@ Rancor
|
|||||||
G
|
G
|
||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
Enchanted creature gets +2/+0 and has trample.
|
Enchanted creature gets +2/+0 and has trample.
|
||||||
When this card is put into a graveyard from the battlefield, return this card to its owner's hand
|
|
||||||
Enchant creature
|
Enchant creature
|
||||||
|
enPump:+2/+0/Trample
|
||||||
|
When this card is put into a graveyard from the battlefield, return this card to its owner's hand
|
||||||
|
|
||||||
Undying Rage
|
Undying Rage
|
||||||
2 R
|
2 R
|
||||||
Enchantment Aura
|
Enchantment Aura
|
||||||
Enchanted creature gets +2/+2 and can't block.
|
Enchanted creature gets +2/+2 and can't block.
|
||||||
When this card is put into a graveyard from the battlefield, return this card to its owner's hand
|
|
||||||
Enchant creature
|
Enchant creature
|
||||||
|
enPump:+2/+2/This creature cannot block
|
||||||
|
When this card is put into a graveyard from the battlefield, return this card to its owner's hand
|
||||||
|
|
||||||
Vedalken Plotter
|
Vedalken Plotter
|
||||||
2 U
|
2 U
|
||||||
|
|||||||
@@ -211,7 +211,7 @@ public class Gui_CardShop extends JFrame implements CardContainer, DeckDisplay,
|
|||||||
ReadBoosterPack pack = new ReadBoosterPack();
|
ReadBoosterPack pack = new ReadBoosterPack();
|
||||||
CardList shop;
|
CardList shop;
|
||||||
|
|
||||||
if (questData.getShopList().size() == 0)
|
if (questData.getShopList() == null || questData.getShopList().size() == 0)
|
||||||
{
|
{
|
||||||
shop = pack.getShopCards(questData.getWin());
|
shop = pack.getShopCards(questData.getWin());
|
||||||
ArrayList<String> shopListToBeSaved = new ArrayList<String>();
|
ArrayList<String> shopListToBeSaved = new ArrayList<String>();
|
||||||
|
|||||||
Reference in New Issue
Block a user