ingredients.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "pumpkin": {
  3. "name": "pumpkin",
  4. "model": "models/pumpkin_orange_small.gltf",
  5. "image": "./images/ingredient_pumpkin.png",
  6. "title": "Pumpkin",
  7. "description": "Makes things pumpkiny",
  8. "shelfOffset": -0.15,
  9. "wobble": {
  10. "amplitude": 0.125,
  11. "frequency": 4,
  12. "rotation": 0.01
  13. },
  14. "cost": 10
  15. },
  16. "tomato": {
  17. "name": "tomato",
  18. "model": "models/food_ingredient_tomato.gltf",
  19. "image": "./images/ingredient_tomato.png",
  20. "title": "Tomato",
  21. "description": "Makes things tomatoy",
  22. "shelfOffset": -0.2,
  23. "wobble": {
  24. "amplitude": 0.125,
  25. "frequency": 3.7,
  26. "rotation": 0.01
  27. },
  28. "cost": 10
  29. },
  30. "lettuce": {
  31. "name": "lettuce",
  32. "model": "models/food_ingredient_lettuce.gltf",
  33. "image": "./images/ingredient_lettuce.png",
  34. "title": "Lettuce",
  35. "description": "Makes things lettucey",
  36. "shelfOffset": 0.1,
  37. "wobble": {
  38. "amplitude": 0.0625,
  39. "frequency": 2.7,
  40. "rotation": 0.005
  41. },
  42. "cost": 10
  43. },
  44. "mushroom": {
  45. "name": "mushroom",
  46. "model": "models/food_ingredient_mushroom.gltf",
  47. "image": "./images/ingredient_mushroom.png",
  48. "title": "Mushroom",
  49. "description": "Makes things mushroomy",
  50. "shelfOffset": 0.05,
  51. "wobble": {
  52. "amplitude": 0.125,
  53. "frequency": 3.6,
  54. "rotation": 0.01
  55. },
  56. "cost": 10
  57. }
  58. }