pet_data/data/jiaobei-config.js

53 lines
1.5 KiB
JavaScript
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.

// 擲筊配置
export const JIAOBEI_CONFIG = {
// 基礎自然概率(模擬真實物理)
baseProbability: {
holy: 0.50, // 聖筊一正一反50%
laughing: 0.25, // 笑筊兩個正面25%
negative: 0.25 // 陰筊兩個反面25%
},
// 運勢影響每點LUCK增加聖筊概率
luckModifier: 0.001,
// 好感度影響(每點好感度減少陰筊概率)
favorModifier: 0.001,
// 最大概率調整幅度
maxModifier: 0.15,
// 結果訊息
messages: {
holy: [
'聖筊!神明允准',
'一正一反,吉兆也',
'神明應允,大吉',
'筊杯示意,可行之',
'天意如此,順遂矣'
],
laughing: [
'笑筊,神明莞爾',
'兩面皆陽,再問一次',
'神明未決,請重新稟告',
'筊杯發笑,尚需思量',
'神意未明,且慢行之'
],
negative: [
'陰筊,神明不允',
'兩面皆陰,不宜此事',
'神明示警,需三思',
'筊杯示凶,宜緩行',
'天意不從,另謀他法'
]
},
// 聖筊獎勵(好感度增加)
holyFavorBonus: 1,
// 連續聖筊獎勵(未來擴展)
consecutiveHolyBonus: {
2: 5, // 連2次聖筊
3: 15 // 連3次聖筊大吉
}
}