potions.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. [
  2. {
  3. "name": "pumpkin-spice",
  4. "ingredients": [
  5. "pumpkin",
  6. "pumpkin"
  7. ],
  8. "image": "./images/potion_wide_orange.png",
  9. "title": "Pumpkin Spice Latte",
  10. "properties": ["Tasty","Basic","Spooky"],
  11. "model": "models/bottle_C_brown.gltf.glb",
  12. "color": {"r": 0.8, "g": 0.3, "b": 0.0},
  13. "value": 100
  14. },
  15. {
  16. "name": "wildendraught",
  17. "ingredients": [
  18. "pumpkin",
  19. "mushroom"
  20. ],
  21. "image": "./images/potion_normal_green.png",
  22. "title": "Wildendraught",
  23. "properties": ["Feral","Unhinged","Carbonated"],
  24. "model": "models/bottle_B_green.gltf.glb",
  25. "color": {"r": 0.1, "g": 0.8, "b": 0.1},
  26. "value": 100
  27. },
  28. {
  29. "name": "spooksauce",
  30. "ingredients": [
  31. "pumpkin",
  32. "tomato"
  33. ],
  34. "image": "./images/potion_narrow_purple.png",
  35. "title": "Spooksauce",
  36. "properties": ["Haunting","Creepy","Sweet"],
  37. "model": "models/bottle_A_purple.gltf.glb",
  38. "color": {"r": 0.7, "g": 0.1, "b": 0.6},
  39. "value": 100
  40. },
  41. {
  42. "name": "carrot-juice",
  43. "ingredients": [
  44. "pumpkin",
  45. "lettuce"
  46. ],
  47. "image": "./images/potion_narrow_orange.png",
  48. "title": "Carrot Juice",
  49. "properties": ["Confusing","Unusual","Disturbing"],
  50. "model": "models/bottle_A_brown.gltf.glb",
  51. "color": {"r": 0.7, "g": 0.5, "b": 0.1},
  52. "value": 100
  53. },
  54. {
  55. "name": "sanguis-damnum",
  56. "ingredients": [
  57. "tomato",
  58. "tomato"
  59. ],
  60. "image": "./images/potion_wide_purple.png",
  61. "title": "Sanguis Damnum",
  62. "properties": ["Coppery","Thick","Hot"],
  63. "model": "models/bottle_C_purple.gltf.glb",
  64. "color": {"r": 0.5, "g": 0.1, "b": 0.5},
  65. "value": 100
  66. },
  67. {
  68. "name": "freshie",
  69. "ingredients": [
  70. "tomato",
  71. "lettuce"
  72. ],
  73. "image": "./images/potion_normal_purple.png",
  74. "title": "Freshie",
  75. "properties": ["Umami","Invigorating","Yum"],
  76. "model": "models/bottle_B_purple.gltf.glb",
  77. "color": {"r": 0.7, "g": 0.2, "b": 0.9},
  78. "value": 100
  79. },
  80. {
  81. "name": "corpsicle",
  82. "ingredients": [
  83. "tomato",
  84. "mushroom"
  85. ],
  86. "image": "./images/potion_narrow_blue.png",
  87. "title": "Corpsicle",
  88. "properties": ["Meaty","Pulpy","Moldy"],
  89. "model": "models/bottle_A_blue.gltf.glb",
  90. "color": {"r": 0.0, "g": 0.1, "b": 0.4},
  91. "value": 100
  92. },
  93. {
  94. "name": "healthy-greens",
  95. "ingredients": [
  96. "lettuce",
  97. "lettuce"
  98. ],
  99. "image": "./images/potion_wide_green.png",
  100. "title": "Healthy Greens",
  101. "properties": ["Healthy","Crisp","Verdant"],
  102. "model": "models/bottle_C_green.gltf.glb",
  103. "color": {"r": 0.0, "g": 0.8, "b": 0.2},
  104. "value": 100
  105. },
  106. {
  107. "name": "not-poison",
  108. "ingredients": [
  109. "lettuce",
  110. "mushroom"
  111. ],
  112. "image": "./images/potion_narrow_green.png",
  113. "title": "Not Poison",
  114. "properties": ["Bitter","Almond","Intense"],
  115. "model": "models/bottle_A_green.gltf.glb",
  116. "color": {"r": 0.2, "g": 0.8, "b": 0.2},
  117. "value": 100
  118. },
  119. {
  120. "name": "fungus-amongus",
  121. "ingredients": [
  122. "mushroom",
  123. "mushroom"
  124. ],
  125. "image": "./images/potion_wide_blue.png",
  126. "title": "Fungus Amongus",
  127. "properties": ["Sour", "Vile","Suspicious"],
  128. "model": "models/bottle_C_blue.gltf.glb",
  129. "color": {"r": 0.4, "g": 0.4, "b": 0.8},
  130. "value": 100
  131. }
  132. ]