chore: sync latest changes

This commit is contained in:
2026-06-09 17:21:54 +08:00
parent bca137535b
commit 451c6ea025
12 changed files with 503 additions and 28 deletions

View File

@@ -5,6 +5,32 @@
"courage": 0,
"investigation": 0
},
"achievements": [
{
"id": "qte_master",
"title": "反应达人",
"description": "成功完成一次 QTE",
"icon": "",
"hidden": false,
"condition": { "variable": "qte_succeeded", "op": ">=", "value": 1 }
},
{
"id": "explorer",
"title": "探索者",
"description": "搜索过房间的所有角落",
"icon": "",
"hidden": false,
"condition": { "variable": "investigation", "op": ">=", "value": 2 }
},
{
"id": "game_finished",
"title": "通关达成",
"description": "完成一次游戏",
"icon": "",
"hidden": false,
"condition": { "variable": "completed_game", "op": ">=", "value": 1 }
}
],
"chapters": [
{
"id": "ch1",
@@ -175,7 +201,10 @@
"successScene": "qte_success",
"failScene": "qte_fail",
"effects": {
"success": [{ "type": "add", "target": "courage", "value": 15 }],
"success": [
{ "type": "add", "target": "courage", "value": 15 },
{ "type": "set", "target": "qte_succeeded", "value": 1 }
],
"fail": [{ "type": "add", "target": "trust", "value": -20 }]
}
}
@@ -261,7 +290,10 @@
"alone_ending": {
"id": "alone_ending",
"videoUrl": "/videos/alone_ending.mp4",
"choices": []
"choices": [],
"onEnter": [
{ "type": "set", "target": "completed_game", "value": 1 }
]
},
"continue_ending": {
"id": "continue_ending",