constantConfig.js 599 B

123456789101112131415161718192021222324252627282930313233343536
  1. // 食物种类列表
  2. export const foodSpeciesList = [{
  3. id: 25,
  4. imgUrl: '/static/images/game/food-img3.png',
  5. credit: 100
  6. },
  7. {
  8. id: 50,
  9. imgUrl: '/static/images/game/food-img2.png',
  10. credit: 200
  11. },
  12. {
  13. id: 100,
  14. imgUrl: '/static/images/game/food-img3.png',
  15. credit: 300
  16. }
  17. ]
  18. // 大鹅成长阶段
  19. export const gooseGrowthTypeList = [{
  20. id: 0,
  21. imgUrl: '/static/images/game/game-img1.gif',
  22. },
  23. {
  24. id: 1,
  25. imgUrl: '/static/images/game/game-img2.gif',
  26. },
  27. {
  28. id: 2,
  29. imgUrl: '/static/images/game/game-img3.gif',
  30. },
  31. {
  32. id: 3,
  33. imgUrl: '/static/images/game/game-img4.gif',
  34. }
  35. ]