87 lines
2.4 KiB
JavaScript
87 lines
2.4 KiB
JavaScript
// 神明資料配置
|
|
export const DEITIES = [
|
|
{
|
|
id: 'mazu',
|
|
name: '媽祖',
|
|
origin: 'eastern',
|
|
personality: '溫柔守護',
|
|
// 進化階段
|
|
stages: [
|
|
{
|
|
level: 1,
|
|
name: '林默娘',
|
|
title: '通靈少女',
|
|
description: '福建沿海的漁村少女,天資聰穎,識天文地理。',
|
|
icon: 'deity-mazu-1',
|
|
requiredExp: 0,
|
|
buffs: {
|
|
sicknessReduction: 0.05,
|
|
happinessRecovery: 0.1
|
|
},
|
|
quests: [
|
|
{ id: 'mazu_s1_q1', type: 'jiaobei', target: 1, description: '累積獲得 1 次聖杯' },
|
|
]
|
|
},
|
|
{
|
|
level: 2,
|
|
name: '媽祖',
|
|
title: '海神',
|
|
description: '守護海上平安的女神,深受漁民愛戴。',
|
|
icon: 'deity-mazu',
|
|
requiredExp: 0,
|
|
buffs: {
|
|
gameSuccessRate: 0.1,
|
|
sicknessReduction: 0.15,
|
|
happinessRecovery: 0.25
|
|
},
|
|
quests: [
|
|
{ id: 'mazu_s2_q1', type: 'jiaobei', target: 10, description: '累積獲得 10 次聖杯' },
|
|
{ id: 'mazu_s2_q2', type: 'clean', target: 20, description: '清理 20 次便便(保持環境整潔)' }
|
|
]
|
|
},
|
|
{
|
|
level: 3,
|
|
name: '天上聖母',
|
|
title: '天后',
|
|
description: '受歷代皇帝敕封的最高女神,神威顯赫。',
|
|
icon: 'deity-mazu-3',
|
|
requiredExp: 0,
|
|
buffs: {
|
|
gameSuccessRate: 0.2,
|
|
sicknessReduction: 0.3,
|
|
happinessRecovery: 0.5,
|
|
sicknessImmune: true,
|
|
healthRecovery: 0.5
|
|
},
|
|
quests: [
|
|
{ id: 'mazu_s3_q1', type: 'jiaobei', target: 50, description: '累積獲得 50 次聖杯' },
|
|
{ id: 'mazu_s3_q2', type: 'heal', target: 10, description: '治療寵物 10 次' },
|
|
{ id: 'mazu_s3_q3', type: 'play', target: 30, description: '陪伴玩耍 30 次' }
|
|
]
|
|
}
|
|
],
|
|
|
|
|
|
|
|
// 向後兼容的舊配置 (數值降低)
|
|
favorLevelBuffs: {
|
|
interval: 10,
|
|
buffsPerLevel: {
|
|
str: 0.1,
|
|
health: 0.2
|
|
}
|
|
},
|
|
|
|
dialogues: [
|
|
'好孩子,媽祖保佑你平安喔',
|
|
'海上無風浪,心中有媽祖',
|
|
'要好好照顧寵物啊',
|
|
'心誠則靈,媽祖會守護你的'
|
|
],
|
|
icon: 'deity-mazu',
|
|
|
|
// 可求的簽詩類型
|
|
lotTypes: ['guanyin_100'] // 觀音100籤
|
|
}
|
|
]
|