cocos-dating-game/assets/resources/story/chapter1.json
openclaw_frontend_developer 41e7ca05f1 Initial commit: Cocos Creator恋爱游戏引擎
- StoryManager: 剧情管理器
- DialogueBox: 对话框组件(带打字机效果)
- CharacterView: 立绘组件
- ChoiceButton: 选项按钮
- AffectionSystem: 好感度系统
- chapter1.json: 示例剧情
2026-03-11 04:54:43 +00:00

250 lines
5.6 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"title": "第一章 - 相遇",
"scenes": [
{
"id": "scene_intro",
"background": "bg_park.jpg",
"characters": [],
"dialogue": [
{
"text": "春天的阳光洒在公园的长椅上..."
},
{
"text": "今天的天气真好啊,适合出来散步。"
}
],
"nextScene": "scene_meet_li"
},
{
"id": "scene_meet_li",
"background": "bg_park.jpg",
"characters": [
{
"id": "li_ze_yan",
"name": "李泽言",
"emotion": "normal",
"position": "center",
"visible": true
}
],
"dialogue": [
{
"speaker": "李泽言",
"text": "你好,请问你是?",
"emotion": "normal"
},
{
"speaker": "你",
"text": "啊...你好,我叫..."
},
{
"speaker": "李泽言",
"text": "看起来你很喜欢这里的风景。",
"emotion": "smile"
}
],
"choices": [
{
"text": "是的,这里很美。",
"nextScene": "scene_li_option1",
"affectionChange": {
"li_ze_yan": 5
}
},
{
"text": "我在等人。",
"nextScene": "scene_li_option2",
"affectionChange": {
"li_ze_yan": 0
}
},
{
"text": "你经常来这里吗?",
"nextScene": "scene_li_option3",
"affectionChange": {
"li_ze_yan": 3
}
}
]
},
{
"id": "scene_li_option1",
"background": "bg_park.jpg",
"characters": [
{
"id": "li_ze_yan",
"name": "李泽言",
"emotion": "happy",
"position": "center",
"visible": true
}
],
"dialogue": [
{
"speaker": "李泽言",
"text": "确实,这个季节的花开得很漂亮。",
"emotion": "happy"
},
{
"speaker": "李泽言",
"text": "如果你感兴趣,我知道一个更美的去处。",
"emotion": "smile"
}
],
"nextScene": "scene_meet_xu"
},
{
"id": "scene_li_option2",
"background": "bg_park.jpg",
"characters": [
{
"id": "li_ze_yan",
"name": "李泽言",
"emotion": "surprised",
"position": "center",
"visible": true
}
],
"dialogue": [
{
"speaker": "李泽言",
"text": "等人吗...那我不打扰了。",
"emotion": "surprised"
}
],
"nextScene": "scene_meet_xu"
},
{
"id": "scene_li_option3",
"background": "bg_park.jpg",
"characters": [
{
"id": "li_ze_yan",
"name": "李泽言",
"emotion": "normal",
"position": "center",
"visible": true
}
],
"dialogue": [
{
"speaker": "李泽言",
"text": "偶尔会来。工作之余放松一下。",
"emotion": "normal"
}
],
"nextScene": "scene_meet_xu"
},
{
"id": "scene_meet_xu",
"background": "bg_cafe.jpg",
"characters": [
{
"id": "li_ze_yan",
"name": "李泽言",
"emotion": "normal",
"position": "left",
"visible": true
},
{
"id": "xu_mo",
"name": "许墨",
"emotion": "smile",
"position": "right",
"visible": true
}
],
"dialogue": [
{
"text": "(画面切换到一家咖啡馆)"
},
{
"speaker": "许墨",
"text": "你好,看来我们又见面了。",
"emotion": "smile"
},
{
"speaker": "你",
"text": "你是?"
},
{
"speaker": "许墨",
"text": "我叫许墨。很高兴认识你。",
"emotion": "normal"
}
],
"choices": [
{
"text": "你好,许墨。",
"nextScene": "scene_xu_option1",
"affectionChange": {
"xu_mo": 5
}
},
{
"text": "我们之前见过吗?",
"nextScene": "scene_xu_option2",
"affectionChange": {
"xu_mo": 3
}
}
]
},
{
"id": "scene_xu_option1",
"background": "bg_cafe.jpg",
"characters": [
{
"id": "xu_mo",
"name": "许墨",
"emotion": "happy",
"position": "right",
"visible": true
}
],
"dialogue": [
{
"speaker": "许墨",
"text": "我也一样。这家咖啡不错,要一起吗?",
"emotion": "happy"
}
],
"nextScene": "scene_ending"
},
{
"id": "scene_xu_option2",
"background": "bg_cafe.jpg",
"characters": [
{
"id": "xu_mo",
"name": "许墨",
"emotion": "smile",
"position": "right",
"visible": true
}
],
"dialogue": [
{
"speaker": "许墨",
"text": "也许在某个地方见过吧。缘分是很奇妙的东西。",
"emotion": "smile"
}
],
"nextScene": "scene_ending"
},
{
"id": "scene_ending",
"background": "bg_cafe.jpg",
"characters": [],
"dialogue": [
{
"text": "(今天遇到了两个特别的人..."
},
{
"text": "(第一章完)"
}
]
}
]
}