63 lines
2.5 KiB
JavaScript
63 lines
2.5 KiB
JavaScript
|
|
export const LOCATIONS = [
|
|||
|
|
{
|
|||
|
|
id: 'taipei_101',
|
|||
|
|
name: '台北 101',
|
|||
|
|
description: '繁華的信義區,高樓林立,充滿了現代氣息。',
|
|||
|
|
backgroundImage: 'https://images.unsplash.com/photo-1596386461350-326256609fe1?q=80&w=800&auto=format&fit=crop',
|
|||
|
|
costHunger: 0,
|
|||
|
|
costGold: 0,
|
|||
|
|
reqStats: null,
|
|||
|
|
enemyPool: ['cockroach', 'stray_dog'],
|
|||
|
|
enemyRate: 0.3,
|
|||
|
|
events: [
|
|||
|
|
{ type: 'text', text: '你在 101 前面看到很多觀光客拍照。' },
|
|||
|
|
{ type: 'item', itemId: 'bubble_tea', chance: 0.1, text: '你撿到了一杯沒喝完的珍珠奶茶(還是別喝了吧...)' }
|
|||
|
|
]
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
id: 'night_market',
|
|||
|
|
name: '饒河夜市',
|
|||
|
|
description: '熱鬧非凡的夜市,空氣中飄散著臭豆腐和藥燉排骨的香氣。',
|
|||
|
|
backgroundImage: 'https://images.unsplash.com/photo-1552423316-684441402375?q=80&w=800&auto=format&fit=crop',
|
|||
|
|
costHunger: 0,
|
|||
|
|
costGold: 0,
|
|||
|
|
reqStats: null,
|
|||
|
|
enemyPool: ['mouse', 'cockroach', 'stray_dog'],
|
|||
|
|
enemyRate: 0.5,
|
|||
|
|
events: [
|
|||
|
|
{ type: 'text', text: '老闆熱情地招呼你:「帥哥/美女,來坐喔!」' },
|
|||
|
|
{ type: 'buff', buffId: 'full', duration: 300, text: '你試吃了一口胡椒餅,感覺充滿了力量!' }
|
|||
|
|
]
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
id: 'longshan_temple',
|
|||
|
|
name: '龍山寺',
|
|||
|
|
description: '香火鼎盛的古老寺廟,許多信徒在此虔誠祈禱。',
|
|||
|
|
backgroundImage: 'https://images.unsplash.com/photo-1599926676326-877a54913416?q=80&w=800&auto=format&fit=crop',
|
|||
|
|
costHunger: 10,
|
|||
|
|
costGold: 0,
|
|||
|
|
reqStats: null,
|
|||
|
|
enemyPool: ['bad_spirit'],
|
|||
|
|
enemyRate: 0.4,
|
|||
|
|
events: [
|
|||
|
|
{ type: 'text', text: '你聽到誦經聲,心靈感到平靜。' },
|
|||
|
|
{ type: 'item', itemId: 'incense', chance: 0.2, text: '你獲得了一柱清香。' }
|
|||
|
|
]
|
|||
|
|
},
|
|||
|
|
{
|
|||
|
|
id: 'alishan',
|
|||
|
|
name: '阿里山',
|
|||
|
|
description: '雲霧繚繞的高山,擁有神木和日出美景。',
|
|||
|
|
backgroundImage: 'https://images.unsplash.com/photo-1512453979798-5ea9ba6a80f4?q=80&w=800&auto=format&fit=crop',
|
|||
|
|
costHunger: 20,
|
|||
|
|
costGold: 10,
|
|||
|
|
reqStats: { str: 50, int: 30 },
|
|||
|
|
enemyPool: ['formosan_bear', 'snake'],
|
|||
|
|
enemyRate: 0.6,
|
|||
|
|
events: [
|
|||
|
|
{ type: 'text', text: '你看到了壯觀的雲海。' },
|
|||
|
|
{ type: 'text', text: '一隻獼猴搶走了你的香蕉!' }
|
|||
|
|
]
|
|||
|
|
}
|
|||
|
|
];
|