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