Honey Village: six model builds + hub frontend, Dockerized for Dokploy
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
// PRD §8 线索清单(封闭,9 处,每处觉知 +8)
|
||||
|
||||
export interface ClueDef {
|
||||
id: string;
|
||||
title: string;
|
||||
/** 发现时展示的文本(可发现后重复查看) */
|
||||
lines: string[];
|
||||
/** 最早可发现日 */
|
||||
fromDay: number;
|
||||
}
|
||||
|
||||
export const CLUES: Record<string, ClueDef> = {
|
||||
C1: {
|
||||
id: 'C1', title: '小屋床头日历', fromDay: 2,
|
||||
lines: ['日历上的每一页,都是同一个日期。', '你翻了很多页。每一页。都是同一天。'],
|
||||
},
|
||||
C2: {
|
||||
id: 'C2', title: '面包房配方纸背面', fromDay: 3,
|
||||
lines: ['配方纸背面有一行手写小字:', '「按疗程配比。甜度:最大。」'],
|
||||
},
|
||||
C3: {
|
||||
id: 'C3', title: '邮筒旁散落信件', fromDay: 2,
|
||||
lines: ['邮筒旁散落着几封没送出去的信。', '所有信封上的邮戳,都是同一天。'],
|
||||
},
|
||||
C4: {
|
||||
id: 'C4', title: 'T4 第 3 封信', fromDay: 2,
|
||||
lines: ['第三封信的署名处,好像闪过一串乱码。', '「PT-0▓」。……那是什么意思?'],
|
||||
},
|
||||
C5: {
|
||||
id: 'C5', title: '杂货店货架', fromDay: 2,
|
||||
lines: ['货架上,同一种罐头重复排列了整整九格。', '所有标签都是空白的。'],
|
||||
},
|
||||
C6: {
|
||||
id: 'C6', title: '公告板旧字迹', fromDay: 5,
|
||||
lines: ['擦到一半,新漆下面浮出更早的字迹:', '「第 412 届丰收庆典」下面,盖着「第 411 届」「第 410 届」……'],
|
||||
},
|
||||
C7: {
|
||||
id: 'C7', title: '古井', fromDay: 5,
|
||||
lines: ['井底传来极轻、极有规律的声音。', '滴……滴……滴……像某种仪器。'],
|
||||
},
|
||||
C8: {
|
||||
id: 'C8', title: '诊所', fromDay: 5,
|
||||
lines: ['芙医生桌上摊着一张表格,抬头被手肘挡住。', '只露出四个字的一半:「…谷情绪疗…」'],
|
||||
},
|
||||
C9: {
|
||||
id: 'C9', title: '龟爷爷对话链', fromDay: 2,
|
||||
lines: ['龟爷爷说的话,不像闲聊。'],
|
||||
},
|
||||
};
|
||||
|
||||
/** C9 三段递进原话(D2/D4/D6 各一段,§8) */
|
||||
export const C9_SEGMENTS: Record<number, string> = {
|
||||
2: '湖水一直很平静。……一直都是。',
|
||||
4: '面包一直是那个味道。一直,一直。',
|
||||
6: '孩子,今天是第几个今天?',
|
||||
};
|
||||
|
||||
export const CLUE_AWARENESS = 8;
|
||||
Reference in New Issue
Block a user