1
1
mirror of https://github.com/Rundll86/Dog-Lynx-And-HCN.git synced 2026-05-28 06:51:54 +08:00

fix: 调整游戏平衡参数和物品数量

降低苹果掉落率和相关影响参数,减少玩家初始苹果数量
修改刷新计数增加数量,调整幸运值对属性的影响比例
This commit is contained in:
2026-05-08 17:57:41 +08:00
parent 972a8494b5
commit 8754b6d491
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ var attackingStates: Array[int] = []
var inventory = {
ItemStore.ItemType.BASEBALL: 200,
ItemStore.ItemType.BASKETBALL: 200,
ItemStore.ItemType.APPLE: 5,
ItemStore.ItemType.APPLE: 3,
ItemStore.ItemType.BEACHBALL: 0,
ItemStore.ItemType.SOUL: 0,
ItemStore.ItemType.CRYSTAL: 0,
@@ -73,7 +73,7 @@ var inventory = {
var inventoryMax = {
ItemStore.ItemType.BASEBALL: INF, # 无限
ItemStore.ItemType.BASKETBALL: INF,
ItemStore.ItemType.APPLE: 5,
ItemStore.ItemType.APPLE: 3,
ItemStore.ItemType.BEACHBALL: INF,
ItemStore.ItemType.SOUL: INF,
ItemStore.ItemType.CRYSTAL: INF,