- Momir AI tweaks
- More cards in shop, boosters are cheaper, each card has between 1 and 4 occurrences
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-04-07 13:38:11 +00:00
parent e46b199a6c
commit 9d0a10756d
4 changed files with 59 additions and 31 deletions

View File

@@ -12,6 +12,8 @@
#define STAGE_SHOP_MENU 3
#define STAGE_SHOP_SHOP 4
#define SHOP_BOOSTERS 3
class GameStateShop: public GameState, public JGuiListener
{
private:
@@ -26,7 +28,8 @@ class GameStateShop: public GameState, public JGuiListener
SimpleMenu * menu;
int mStage;
char starterBuffer[128], boosterBuffer[128];
int setIds[2];
char setNames[SHOP_BOOSTERS][128];
int setIds[SHOP_BOOSTERS];
public:
GameStateShop(GameApp* parent);