Advertisement
Guest User

Untitled

a guest
Aug 10th, 2011
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.48 KB | None | 0 0
  1. #Each recipe has a unique id.
  2.  
  3. #Lets have a look at a shapeless recipe.
  4. #8: <-this is the unique ID.
  5. # Result: 3 <-the ID of the result.
  6. # Quantity: 6 <-the quantity of the result.
  7. # Materials: {2: 3, 6: 2} <-Starting materials, format: "id: quantity".
  8. # Type: Shapeless <-Define the type
  9. #For data values in materials, add a DataValues node (value doesn't matter) and use the following syntax:
  10. #{id: quantity/data, id: quantity/data...}
  11. #To addd result data:
  12. # Add ResultData node, set it to the needed value.
  13. #To add result damage:
  14. # Add ResultDamage node, set it to the needed value.
  15. #example8:
  16. # Result: 256
  17. # Quantity: 6
  18. # Materials: {256: 1/127}
  19. # DataValues: abc
  20. # Type: Shapeless
  21. #abc74:
  22. # Result: 256
  23. # Quantity: 6
  24. # Materials: {265: 1}
  25. # Type: Shapeless
  26. # ResultDamage: 251
  27. #Now a shaped recipe
  28. #3: <-this is the unique ID.
  29. # Shape: <-do not touch this, it is a keyword.
  30. # - [3, 3, 3] <-First row of the crafting grid.
  31. # - [3, 0, 3] <-Second row of the crafting grid. Note that you can use 0s for free space.
  32. # - [3, 3, 3] <-Third row of the crafting grid.
  33. # Result: 4 <-result ID
  34. # Quantity: 8 <-quantity of the result
  35. #Note that by default, if no type is defined, the plugin will think that the recipe is shaped.
  36. #bla3:
  37. # Shape:
  38. # - [3, 3, 3]
  39. # - [3, 0, 3]
  40. # - [3, 3, 3]
  41. # Result: 4
  42. # Quantity: 8
  43.  
  44. # Recipes añadidos por Troll ^^
  45. NieveaHielo:
  46. Shape:
  47. - [80, 80]
  48. - [80, 80]
  49. Result: 79
  50. Quantity: 1
  51. TierraaHierba:
  52. Shape:
  53. - [351/14, 351/14]
  54. - [351/14, 3]
  55. Result: 2
  56. Quantity: 1
  57. TierraaHierba:
  58. Shape:
  59. - [351/14, 351/14]
  60. - [351/14, 3]
  61. Result: 2
  62. Quantity: 1
  63. Esponjas:
  64. Shape:
  65. - [287, 35, 287]
  66. - [35, 41, 35]
  67. - [287, 35, 287]
  68. Result: 19
  69. Quantity: 1
  70. TeladeArana:
  71. Shape:
  72. - [287, 287, 287]
  73. - [287, 341, 287]
  74. - [287, 287, 287]
  75. Result: 30
  76. Quantity: 1
  77. SandstoneaArena:
  78. Shape:
  79. - [24]
  80. Result: 12
  81. Quantity: 1
  82. #Recipes de horno
  83. Manzadeoroabloque:
  84. Result: 41
  85. Quantity: 1
  86. Source: 322
  87. Type: Furnace
  88.  
  89. #Another example of a shaped recipe, showing that the recipes don't have to fill in the whole grid.
  90. #hi4:
  91. # Shape:
  92. # - [3, 3]
  93. # - [3, 0]
  94. # Result: 4
  95. # Quantity: 5
  96. # Type: Shaped
  97. #Example of data values in shaped recipes.
  98. #The DataValues node's value doesn't matter - what matters is that it is there.
  99. #It is needed if data values are involved in the recipe.
  100. #Syntax:
  101. # - [id/data, id/data...]
  102. # - [id/data, id/data...]
  103. # - [id/data, id/data...]
  104. #If the item has no data values, use 0. e.g. [3/0, 3/0, 1/0]
  105. #To add result data:
  106. # Add ResultData node, set it to the needed value.
  107. #To add result damage:
  108. # Add ResultDamage node, set it to the needed value.
  109. #argh33:
  110. # Shape:
  111. # - [351/1]
  112. # Result: 258
  113. # Quantity: 1
  114. # Type: Shaped
  115. # ResultDamage: 1
  116. # DataValues: abc
  117. #A furnace recipe.
  118. #99:
  119. # Result: 264 <-result ID
  120. # Quantity: 1 <-quantity of the result
  121. # Source: 263 <-the ID of the material to be smelted
  122. # Type: Furnace <-type definition
  123. #For result data use the ResultData node (optional).
  124. #For result damage use the ResultDamage node (optional).
  125. #For now, source data is broken.
  126. #abc99:
  127. # Result: 351
  128. # ResultData: 3
  129. # Quantity: 1
  130. # Source: 351
  131. # SourceData: 1
  132. # Type: Furnace
  133. #CREDIT GOES TO FULLWALL, THE AUTHOR OF COOKBOOK!
  134. #Repair recipe. Set the source data value to -1!
  135. #ewqer8:
  136. # Result: 256
  137. # Quantity: 1
  138. # Materials: {256: 1/-1, 265: 1/0}
  139. # DataValues: abc
  140. # Type: Shapeless
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement