- boosters in shop 100 cards -> 80 cards
- 2 new cards in SHM
- Added Ram checking methods for the PSP
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-04-30 12:10:09 +00:00
parent e0e21fa2a3
commit 8b008a4bda
10 changed files with 168 additions and 42 deletions

View File

@@ -43,7 +43,7 @@ void GameStateShop::Start()
int sets[500];
int nbsets = 0;
for (int i = 0; i < MtgSets::SetsList->nb_items; i++){
if (mParent->collection->countBySet(i) > 100){ //Only sets with more than 100 cards can get boosters and starters
if (mParent->collection->countBySet(i) > 80){ //Only sets with more than 80 cards can get boosters and starters
sets[nbsets] = i;
nbsets++;
}