64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
|
|
// 命格資料配置
|
||
|
|
export const FATES = [
|
||
|
|
{
|
||
|
|
id: 'lonestar',
|
||
|
|
name: '天煞孤星',
|
||
|
|
description: '孤獨的強者,攻擊力極高但容易抑鬱',
|
||
|
|
buffs: {
|
||
|
|
attack: 0.25,
|
||
|
|
happinessRecovery: -0.2,
|
||
|
|
sicknessReduction: 0.1
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 'lucky_star',
|
||
|
|
name: '天乙貴人',
|
||
|
|
description: '吉星高照,處處逢凶化吉',
|
||
|
|
buffs: {
|
||
|
|
luck: 20,
|
||
|
|
badEventReduction: 0.3,
|
||
|
|
dropRate: 0.15
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 'martial_god',
|
||
|
|
name: '武曲星',
|
||
|
|
description: '天生神力,適合戰鬥',
|
||
|
|
buffs: {
|
||
|
|
strGain: 0.3,
|
||
|
|
defense: 0.15,
|
||
|
|
speed: 0.1
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 'scholar',
|
||
|
|
name: '文曲星',
|
||
|
|
description: '聰明絕頂,學習能力強',
|
||
|
|
buffs: {
|
||
|
|
intGain: 0.4,
|
||
|
|
miniGameBonus: 0.2,
|
||
|
|
gameSuccessRate: 0.15
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 'peach_blossom',
|
||
|
|
name: '紅鸞星',
|
||
|
|
description: '人見人愛,容易獲得好感',
|
||
|
|
buffs: {
|
||
|
|
happinessRecovery: 0.2,
|
||
|
|
breedingSuccess: 0.3,
|
||
|
|
resourceGain: 0.1
|
||
|
|
}
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id: 'broken_army',
|
||
|
|
name: '破軍星',
|
||
|
|
description: '衝鋒陷陣,速度極快但防禦較低',
|
||
|
|
buffs: {
|
||
|
|
speed: 0.3,
|
||
|
|
attack: 0.15,
|
||
|
|
defense: -0.1
|
||
|
|
}
|
||
|
|
}
|
||
|
|
]
|