123456789101112131415161718192021222324252627282930313233343536 |
- // 食物种类列表
- export const foodSpeciesList = [{
- id: 25,
- imgUrl: '/static/images/game/food-img3.png',
- credit: 100
- },
- {
- id: 50,
- imgUrl: '/static/images/game/food-img2.png',
- credit: 200
- },
- {
- id: 100,
- imgUrl: '/static/images/game/food-img3.png',
- credit: 300
- }
- ]
- // 大鹅成长阶段
- export const gooseGrowthTypeList = [{
- id: 0,
- imgUrl: '/static/images/game/game-img1.gif',
- },
- {
- id: 1,
- imgUrl: '/static/images/game/game-img2.gif',
- },
- {
- id: 2,
- imgUrl: '/static/images/game/game-img3.gif',
- },
- {
- id: 3,
- imgUrl: '/static/images/game/game-img4.gif',
- }
- ]
|