pet_data/data/deities.js

87 lines
2.4 KiB
JavaScript
Raw Permalink Normal View History

2025-11-23 18:03:56 +00:00
// 神明資料配置
export const DEITIES = [
{
id: 'mazu',
name: '媽祖',
2025-11-27 08:42:55 +00:00
origin: 'eastern',
2025-11-23 18:03:56 +00:00
personality: '溫柔守護',
2025-11-27 08:42:55 +00:00
// 進化階段
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 次' }
]
}
],
2025-11-24 07:38:44 +00:00
2025-11-27 08:42:55 +00:00
// 向後兼容的舊配置 (數值降低)
2025-11-24 07:38:44 +00:00
favorLevelBuffs: {
2025-11-27 08:42:55 +00:00
interval: 10,
2025-11-24 07:38:44 +00:00
buffsPerLevel: {
2025-11-27 08:42:55 +00:00
str: 0.1,
health: 0.2
2025-11-24 07:38:44 +00:00
}
},
2025-11-23 18:03:56 +00:00
dialogues: [
'好孩子,媽祖保佑你平安喔',
'海上無風浪,心中有媽祖',
'要好好照顧寵物啊',
'心誠則靈,媽祖會守護你的'
],
2025-11-24 08:04:00 +00:00
icon: 'deity-mazu',
// 可求的簽詩類型
lotTypes: ['guanyin_100'] // 觀音100籤
2025-11-23 18:03:56 +00:00
}
]