添加稀有度机制 添加背景音乐素材

This commit is contained in:
2026-04-26 10:54:21 +08:00
parent 69379b43a3
commit 2598cf0945
4 changed files with 93 additions and 9 deletions
+8
View File
@@ -108,6 +108,7 @@ struct UpgradeOption
int id;
int currentLevel;
int targetPieceType;
int rarity;
bool cursed;
const TCHAR* name;
const TCHAR* category;
@@ -156,6 +157,13 @@ enum GameMode
MODE_ROGUE = 1
};
enum UpgradeRarity
{
UPGRADE_RARITY_COMMON = 0,
UPGRADE_RARITY_UNCOMMON = 1,
UPGRADE_RARITY_RARE = 2
};
extern int nType;
extern int type;
extern int state;