Advertisement
MidenTD

Miden's Foods Default Config

Feb 3rd, 2021 (edited)
2,069
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | None | 0 0
  1. LegacySystem: false
  2. #This is enabled by default (whether set to true OR false) if your server is running 1.13 or under!
  3. #Set this option to TRUE if you want to use the Legacy hunger system!
  4. #Note that the ID system is MUCH more efficient than the old system!
  5. #SMOKER AND CAMPFIRE RECIPES WILL NOT WORK WHEN USING THE LEGACY SYSTEM!
  6. #When using the legacy system, you will not be able to use custom foods in other foods' recipes, unless using a 3rd party crafting plugin.
  7.  
  8. Recipes:
  9. #EXAMPLES:
  10. Toast:
  11. Name: "&6Toast"
  12. #Name of the food (what the item will show up as)
  13. Type: "Furnace"
  14. #Furnace or crafting table? Write Furnace for furnace and Table for crafting table. Smoker not yet supported
  15. Lore: "&bmmm... toasty"
  16. #The lore of the item, only one string supported for now
  17. Recipe:
  18. Ingredient: "BREAD"
  19. #The item going into the furnace
  20. Cook-Time: 100
  21. #How long, in ticks, the food will take to cook
  22. Experience: 30
  23. #Amount of experience rewarded for cooking
  24. Base: "BREAD"
  25. #What the new food will appear as in your hand, can be changed via resource pack. See foodvalues.yml for all supported base items
  26. Hunger-Fill: 6
  27. #How much hunger it will fill. 1 = half a hunger bar 20 = full hunger.
  28. Saturation: 5
  29. #How much saturation it will restore. same formula as hunger fill.
  30. Id: 1
  31. #Tells my plugin what food you're eating!
  32. #Also allows for Custom Models with a resource pack.
  33. #This MUST be unique for every different food!
  34.  
  35. BaconBurger:
  36. Name: "&6Bacon Burger"
  37. Type: "Shaped"
  38. Lore: "&bTasty Burger"
  39. Recipe:
  40. TableLine1: " B "
  41. TableLine2: "KMS"
  42. TableLine3: " B "
  43. #The shape of the recipe in the crafting table. Put a letter for an item and a space to leave it blank. MUST HAVE 3 CHARACTERS IN EACH!
  44. LetterKeys:
  45. B: "BREAD"
  46. K: "DRIED_KELP"
  47. M: "COOKED_BEEF"
  48. S: "CFD-Bacon"
  49. #What materials the letters in the recipe are representing.
  50. #Use "CFD-[FoodConfigName]" to use a custom food in the crafting recipe of another custom food
  51. Base: "COOKED_BEEF"
  52. Hunger-Fill: 10
  53. Saturation: 15
  54. Id: 2
  55. #Incompatible with 1.13!
  56.  
  57. Chocolatebar:
  58. Name: "&6Chocolate Bar"
  59. Type: "Shaped"
  60. Lore: "&bmmmm... chocolatey"
  61. Recipe:
  62. TableLine1: " "
  63. TableLine2: "CMC"
  64. TableLine3: "CCC"
  65. LetterKeys:
  66. C: "COCOA_BEANS"
  67. M: "MILK_BUCKET"
  68. Base: "DRIED_KELP"
  69. Hunger-Fill: 3
  70. Saturation: 3
  71. Id: 3
  72.  
  73. Bakedapple:
  74. Name: "&6Baked Apple"
  75. Type: "Furnace"
  76. Lore: "&bAn apple and an open flame makes for a succulent treat"
  77. Recipe:
  78. Ingredient: "APPLE"
  79. Cook-Time: 55
  80. Experience: 40
  81. Base: "APPLE"
  82. Hunger-Fill: 5
  83. Saturation: 4
  84. Id: 4
  85.  
  86. Bacon:
  87. Name: "&6Bacon"
  88. Type: "None"
  89. Lore: "&bGreasy..."
  90. Base: "COOKED_PORKCHOP"
  91. Hunger-Fill: 5
  92. Saturation: 7
  93. Id: 5
  94.  
  95. Smokedapple:
  96. Name: "&6Smoked Apple"
  97. Type: "Smoker"
  98. Lore: "&bReally just a smoker recipe test, otherwise identical to baked apple"
  99. Recipe:
  100. Ingredient: "APPLE"
  101. Cook-Time: 55
  102. Experience: 40
  103. Base: "APPLE"
  104. Hunger-Fill: 5
  105. Saturation: 4
  106. Id: 6
  107.  
  108. Woodsmokedapple:
  109. Name: "&6Wood Smoked Apple"
  110. Type: "Campfire"
  111. Lore: "&bReally just a campfire recipe test, otherwise identical to baked apple"
  112. Recipe:
  113. Ingredient: "APPLE"
  114. Cook-Time: 55
  115. Experience: 40
  116. Base: "APPLE"
  117. Hunger-Fill: 5
  118. Saturation: 4
  119. Id: 7
  120.  
  121. Chickenkebab:
  122. Name: "&6Chicken Kebab"
  123. Type: "Shapeless"
  124. Lore: "&bIt tastes like chicken..."
  125. Ingredients:
  126. STICK: 2
  127. COOKED_CHICKEN: 1
  128. Base: "COOKED_CHICKEN"
  129. Hunger-Fill: 6
  130. Saturation: 6
  131. Id: 8
  132.  
  133. PoisonedGrass:
  134. Name: "&2Poisoned Grass"
  135. Type: "None"
  136. Lore: "&bIt doesn't seem edible..."
  137. Base: "DRIED_KELP"
  138. Hunger-Fill: 2
  139. Saturation: 1
  140. Id: 9
  141. #Example of potion effects on foods:
  142. Effects:
  143. POISON:
  144. #Open with the potion effect type (found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/potion/PotionEffectType.html)
  145. Duration: 60
  146. #Duration in ticks (20 ticks per second)
  147. Amplifier: 0
  148. #Amplifier is the level minus one, so Poison 2 has an amplifier of 1
  149. CONFUSION:
  150. #Confusion = nausea
  151. Duration: 40
  152. Amplifier: 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement