feat: 完成A线详细大纲

- 加入巫族首领摄司的设定(开放祖庭、贡献值制度)
- 修正人族演化路径:底层献祭品→贡献值→祖庭核心→导演终局
- 修正终局之战逻辑:人族制造假情报,坐收渔利
- 修正刑天结局:至死都是巫族,战死沙场
- 修正九黎阙设定:后期配角,主动被寄生50年后自爆
- 核心主题:人族成长=否定血脉论

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
锦麟 王
2026-02-02 15:52:59 +08:00
commit a3d6053775
90 changed files with 16113 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
{
"novel_info": {
"title": "小说标题",
"genre": "类型(奇幻/科幻/都市/历史等)",
"target_length": "预计字数",
"theme": "核心主题"
},
"logline": "一句话故事梗概",
"story_arc": {
"opening": "开端描述",
"inciting_incident": "引发事件",
"rising_action": "上升动作(主要冲突发展)",
"climax": "高潮描述",
"resolution": "结局描述"
},
"main_characters": ["主角ID列表"],
"conflicts": [
{
"type": "内部/外部",
"description": "冲突描述",
"resolution": "如何解决"
}
],
"chapter_outline": [
{
"chapter_number": 1,
"title": "章节标题",
"summary": "章节概要",
"plot_points": ["关键情节点"],
"characters_involved": ["涉及角色"]
}
],
"themes": [
{
"theme": "主题名称",
"expression": "如何表达这个主题"
}
]
}

View File

@@ -0,0 +1,35 @@
# 小说创作进度
## 项目信息
- **小说标题**:
- **开始日期**:
- **最后更新**:
## 总体进度
- **设定完成度**: [ ] 0% - [ ] 25% - [ ] 50% - [ ] 75% - [x] 100%
- **大纲完成度**: [ ] 0% - [ ] 25% - [ ] 50% - [ ] 75% - [x] 100%
- **细纲完成度**: [ ] 0% - [ ] 25% - [ ] 50% - [ ] 75% - [x] 100%
- **正文完成度**: [ ] 0% - [ ] 25% - [ ] 50% - [ ] 75% - [x] 100%
## 章节进度
### 第一卷/部分
| 章节 | 标题 | 细纲 | 正文 | 字数 | 状态 |
|------|------|------|------|------|------|
| 第1章 | | [x] | [ ] | 0 | 待写作 |
| 第2章 | | [x] | [ ] | 0 | 待写作 |
**图例**:
- 细纲: [x] 已完成 / [ ] 待完成
- 正文: [x] 已完成 / [ ] 待完成 / [~] 进行中
- 状态: 待写作 / 进行中 / 已完成 / 需修改
## 当前任务
- **当前位置**: [填写当前创作到哪个章节]
- **下一步行动**:
- [ ] 任务1
- [ ] 任务2
## 备注与问题
- 记录任何需要注意的设定、情节或修改要求
-

View File

@@ -0,0 +1,52 @@
{
"worldview": {
"name": "世界名称",
"type": "世界观类型(奇幻/科幻/现实/历史等)",
"era": "时代背景",
"geography": "地理环境描述",
"technology_level": "科技/魔法水平"
},
"forces": [
{
"name": "势力名称",
"description": "势力描述",
"power_level": "力量等级",
"relationships": ["与其他势力的关系"]
}
],
"magic_system": {
"exists": false,
"description": "魔法/能力系统描述(如果有)",
"rules": "系统规则说明"
},
"characters": [
{
"id": "char-001",
"name": "角色姓名",
"age": "年龄",
"gender": "性别",
"appearance": "外貌描述",
"personality": "性格特点",
"background": "背景故事",
"motivation": "动机与目标",
"speech_style": "说话风格",
"abilities": ["能力列表"],
"relationships": {
"char-002": "与另一角色的关系"
}
}
],
"timeline": [
{
"event": "历史事件",
"period": "时期",
"impact": "对现在的影响"
}
],
"culture": {
"social_structure": "社会结构",
"customs": "重要习俗",
"taboos": "禁忌",
"economy": "经济状况"
}
}

View File

@@ -0,0 +1,37 @@
{
"outline_id": "对应的大纲章节ID",
"chapter_number": 1,
"title": "章节标题",
"target_word_count": "目标字数",
"scenes": [
{
"scene_number": 1,
"location": "场景地点",
"time": "时间",
"point_of_view": "视角角色",
"characters_present": ["在场角色"],
"scene_goal": "场景目标",
"opening_state": "场景开始时的状态",
"scene_conflict": "场景内的冲突",
"scene_resolution": "场景如何结束",
"emotional_arc": "情感变化(开始→结束)",
"key_events": [
"事件1",
"事件2"
],
"dialogue_notes": "重要对话要点",
"sensory_details": ["需要强调的感官细节"]
}
],
"chapter_notes": {
"pacing": "节奏要求(快/慢/变化)",
"mood": "整体氛围",
"foreshadowing": "伏笔安排",
"themes_to_reinforce": ["需要强化的主题"],
"continuity_points": ["与前后章节的连接点"]
},
"ending_setup": {
"cliffhanger": "是否悬念结尾",
"next_chapter_hook": "如何引出下一章"
}
}