Advertisement
Soruyao

recipelist.yml

Jun 21st, 2011
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.50 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.  
  16. #Now a shaped recipe
  17. #3: <-this is the unique ID.
  18. # Shape: <-do not touch this, it is a keyword.
  19. # - [3, 3, 3] <-First row of the crafting grid.
  20. # - [3, 0, 3] <-Second row of the crafting grid. Note that you can use 0s for free space.
  21. # - [3, 3, 3] <-Third row of the crafting grid.
  22. # Result: 4 <-result ID
  23. # Quantity: 8 <-quantity of the result
  24. #Note that by default, if no type is defined, the plugin will think that the recipe is shaped.
  25. #Another example of a shaped recipe, showing that the recipes don't have to fill in the whole grid.
  26. #Example of data values in shaped recipes.
  27. #The DataValues node's value doesn't matter - what matters is that it is there.
  28. #It is needed if data values are involved in the recipe.
  29. #Syntax:
  30. # - [id/data, id/data...]
  31. # - [id/data, id/data...]
  32. # - [id/data, id/data...]
  33. #If the item has no data values, use 0. e.g. [3/0, 3/0, 1/0]
  34. #To add result data:
  35. # Add ResultData node, set it to the needed value.
  36. #To add result damage:
  37. # Add ResultDamage node, set it to the needed value.
  38. #A furnace recipe.
  39. #99:
  40. # Result: 264 <-result ID
  41. # Quantity: 1 <-quantity of the result
  42. # Source: 263 <-the ID of the material to be smelted
  43. # Type: Furnace <-type definition
  44. #For result data use the ResultData node (optional).
  45. #For result damage use the ResultDamage node (optional).
  46. #For now, source data is broken.
  47. #CREDIT GOES TO FULLWALL, THE AUTHOR OF COOKBOOK!
  48. #Repair recipe. Set the source data value to -1!
  49.  
  50. #%Name: Kevlar
  51. 200:
  52. Result: 334
  53. Quantity: 1
  54. Materials: {35: 1/0, 337: 1/0}
  55. DataValues: DerEchteNexus
  56. Type: Shapeless
  57.  
  58. #%Name: Graphite
  59. 201:
  60. Result: 351
  61. Quantity: 1
  62. Materials: {263: 1/0}
  63. DataValues: DerEchteNexus
  64. Type: Shapeless
  65.  
  66. #%Name: SoyPork
  67. 202:
  68. Result: 319
  69. Quantity: 1
  70. Materials: {295: 8/0, 296: 1/0}
  71. DataValues: DerEchteNexus
  72. Type: Shapeless
  73.  
  74. #%Name: SoyMilk
  75. 203:
  76. Result: 335
  77. Quantity: 1
  78. Materials: {295: 3/0, 326: 1/0}
  79. DataValues: DerEchteNexus
  80. Type: Shapeless
  81.  
  82. #%Name: EgglessCake
  83. 204:
  84. Result: 354
  85. ResultDamage: 0
  86. Quantity: 1
  87. Shape:
  88. - [335/0, 335/0, 335/0]
  89. - [353/0, 331/0, 353/0]
  90. - [296/0, 296/0, 296/0]
  91. DataValues: DerEchteNexus
  92. Type: Shaped
  93.  
  94. #%Name: Paper
  95. 205:
  96. Result: 339
  97. Quantity: 3
  98. Materials: {326: 1/0, 17: 1/0}
  99. DataValues: DerEchteNexus
  100. Type: Shapeless
  101.  
  102. #%Name: Mossy
  103. 206:
  104. Result: 48
  105. ResultDamage: 0
  106. Quantity: 1
  107. Shape:
  108. - [295/0, 295/0, 295/0]
  109. - [289/0, 337/0, 289/0]
  110. - [352/0, 352/0, 352/0]
  111. DataValues: DerEchteNexus
  112. Type: Shaped
  113.  
  114. #%Name: RepairIH
  115. 200:
  116. Result: 306
  117. Quantity: 1
  118. Materials: {306: 1/-1, 265: 3/0}
  119. DataValues: DerEchteNexus
  120. Type: Shapeless
  121.  
  122. #%Name: RepairIC
  123. 201:
  124. Result: 307
  125. Quantity: 1
  126. Materials: {265: 5/0, 307: 1/-1}
  127. DataValues: DerEchteNexus
  128. Type: Shapeless
  129.  
  130. #%Name: RepairIB
  131. 202:
  132. Result: 309
  133. Quantity: 1
  134. Materials: {309: 1/-1, 265: 2/0}
  135. DataValues: DerEchteNexus
  136. Type: Shapeless
  137.  
  138. #%Name: RepairIL
  139. 203:
  140. Result: 308
  141. Quantity: 1
  142. Materials: {265: 4/0, 308: 1/-1}
  143. DataValues: DerEchteNexus
  144. Type: Shapeless
  145.  
  146. #%Name: RepairLH
  147. 204:
  148. Result: 298
  149. Quantity: 1
  150. Materials: {298: 1/-1, 334: 3/0}
  151. DataValues: DerEchteNexus
  152. Type: Shapeless
  153.  
  154. #%Name: RepairLC
  155. 205:
  156. Result: 299
  157. Quantity: 1
  158. Materials: {334: 5/0, 299: 1/-1}
  159. DataValues: DerEchteNexus
  160. Type: Shapeless
  161.  
  162. #%Name: RepairLB
  163. 206:
  164. Result: 301
  165. Quantity: 1
  166. Materials: {301: 1/-1, 334: 2/0}
  167. DataValues: DerEchteNexus
  168. Type: Shapeless
  169.  
  170. #%Name: RepairLL
  171. 207:
  172. Result: 300
  173. Quantity: 1
  174. Materials: {334: 4/0, 300: 1/-1}
  175. DataValues: DerEchteNexus
  176. Type: Shapeless
  177.  
  178. #%Name: RepairGH
  179. 208:
  180. Result: 314
  181. Quantity: 1
  182. Materials: {314: 1/-1, 266: 3/0}
  183. DataValues: DerEchteNexus
  184. Type: Shapeless
  185.  
  186. #%Name: RepairGC
  187. 209:
  188. Result: 315
  189. Quantity: 1
  190. Materials: {266: 5/0, 315: 1/-1}
  191. DataValues: DerEchteNexus
  192. Type: Shapeless
  193.  
  194. #%Name: RepairGB
  195. 210:
  196. Result: 317
  197. Quantity: 1
  198. Materials: {317: 1/-1, 266: 2/0}
  199. DataValues: DerEchteNexus
  200. Type: Shapeless
  201.  
  202. #%Name: RepairGL
  203. 211:
  204. Result: 316
  205. Quantity: 1
  206. Materials: {316: 1/-1, 266: 4/0}
  207. DataValues: DerEchteNexus
  208. Type: Shapeless
  209.  
  210. #%Name: RepairDH
  211. 212:
  212. Result: 310
  213. Quantity: 1
  214. Materials: {310: 1/-1, 264: 3/0}
  215. DataValues: DerEchteNexus
  216. Type: Shapeless
  217.  
  218. #%Name: RepairDC
  219. 213:
  220. Result: 311
  221. Quantity: 1
  222. Materials: {264: 5/0, 311: 1/-1}
  223. DataValues: DerEchteNexus
  224. Type: Shapeless
  225.  
  226. #%Name: RepairDB
  227. 214:
  228. Result: 313
  229. Quantity: 1
  230. Materials: {313: 1/-1, 264: 2/0}
  231. DataValues: DerEchteNexus
  232. Type: Shapeless
  233.  
  234. #%Name: RepairDL
  235. 215:
  236. Result: 312
  237. Quantity: 1
  238. Materials: {312: 1/-1, 264: 4/0}
  239. DataValues: DerEchteNexus
  240. Type: Shapeless
  241.  
  242. #%Name: Repair WSH
  243. 200:
  244. Result: 269
  245. Quantity: 1
  246. Materials: {269: 1/-1, 5: 1/0}
  247. DataValues: DerEchteNexus
  248. Type: Shapeless
  249.  
  250. #%Name: Repair WS
  251. 201:
  252. Result: 268
  253. Quantity: 1
  254. Materials: {268: 1/-1, 5: 1/0}
  255. DataValues: DerEchteNexus
  256. Type: Shapeless
  257.  
  258. #%Name: Repair WP
  259. 202:
  260. Result: 270
  261. Quantity: 1
  262. Materials: {270: 1/-1, 5: 2/0}
  263. DataValues: DerEchteNexus
  264. Type: Shapeless
  265.  
  266. #%Name: Repair WA
  267. 203:
  268. Result: 271
  269. Quantity: 1
  270. Materials: {271: 1/-1, 5: 2/0}
  271. DataValues: DerEchteNexus
  272. Type: Shapeless
  273.  
  274. #%Name: Repair WSY
  275. 204:
  276. Result: 290
  277. Quantity: 1
  278. Materials: {290: 1/-1, 5: 1/0}
  279. DataValues: DerEchteNexus
  280. Type: Shapeless
  281.  
  282. #%Name: Repair SSH
  283. 205:
  284. Result: 273
  285. Quantity: 1
  286. Materials: {273: 1/-1, 4: 1/0}
  287. DataValues: DerEchteNexus
  288. Type: Shapeless
  289.  
  290. #%Name: Repair SS
  291. 206:
  292. Result: 272
  293. Quantity: 1
  294. Materials: {272: 1/-1, 4: 1/0}
  295. DataValues: DerEchteNexus
  296. Type: Shapeless
  297.  
  298. #%Name: Repair SP
  299. 207:
  300. Result: 274
  301. Quantity: 1
  302. Materials: {274: 1/-1, 4: 2/0}
  303. DataValues: DerEchteNexus
  304. Type: Shapeless
  305.  
  306. #%Name: Repair SA
  307. 208:
  308. Result: 275
  309. Quantity: 1
  310. Materials: {275: 1/-1, 4: 2/0}
  311. DataValues: DerEchteNexus
  312. Type: Shapeless
  313.  
  314. #%Name: Repair SSY
  315. 209:
  316. Result: 291
  317. Quantity: 1
  318. Materials: {291: 1/-1, 4: 1/0}
  319. DataValues: DerEchteNexus
  320. Type: Shapeless
  321.  
  322. #%Name: Repair ISH
  323. 210:
  324. Result: 256
  325. Quantity: 1
  326. Materials: {256: 1/-1, 265: 1/0}
  327. DataValues: DerEchteNexus
  328. Type: Shapeless
  329.  
  330. #%Name: Repair IS
  331. 211:
  332. Result: 267
  333. Quantity: 1
  334. Materials: {267: 1/-1, 265: 1/0}
  335. DataValues: DerEchteNexus
  336. Type: Shapeless
  337.  
  338. #%Name: Repair IP
  339. 212:
  340. Result: 257
  341. Quantity: 1
  342. Materials: {257: 1/-1, 265: 2/0}
  343. DataValues: DerEchteNexus
  344. Type: Shapeless
  345.  
  346. #%Name: Repair IA
  347. 213:
  348. Result: 258
  349. Quantity: 1
  350. Materials: {258: 1/-1, 265: 2/0}
  351. DataValues: DerEchteNexus
  352. Type: Shapeless
  353.  
  354. #%Name: Repair ISY
  355. 214:
  356. Result: 292
  357. Quantity: 1
  358. Materials: {292: 1/-1, 265: 1/0}
  359. DataValues: DerEchteNexus
  360. Type: Shapeless
  361.  
  362. #%Name: Repair GSH
  363. 215:
  364. Result: 284
  365. Quantity: 1
  366. Materials: {284: 1/-1, 266: 1/0}
  367. DataValues: DerEchteNexus
  368. Type: Shapeless
  369.  
  370. #%Name: Repair GS
  371. 216:
  372. Result: 283
  373. Quantity: 1
  374. Materials: {283: 1/-1, 266: 1/0}
  375. DataValues: DerEchteNexus
  376. Type: Shapeless
  377.  
  378. #%Name: Repair GP
  379. 217:
  380. Result: 285
  381. Quantity: 1
  382. Materials: {285: 1/0, 266: 2/0}
  383. DataValues: DerEchteNexus
  384. Type: Shapeless
  385.  
  386. #%Name: Repair GA
  387. 218:
  388. Result: 286
  389. Quantity: 1
  390. Materials: {286: 1/-1, 266: 2/0}
  391. DataValues: DerEchteNexus
  392. Type: Shapeless
  393.  
  394. #%Name: Repair GSY
  395. 219:
  396. Result: 294
  397. Quantity: 1
  398. Materials: {294: 1/-1, 266: 1/0}
  399. DataValues: DerEchteNexus
  400. Type: Shapeless
  401.  
  402. #%Name: Repair DSH
  403. 220:
  404. Result: 277
  405. Quantity: 1
  406. Materials: {277: 1/-1, 264: 1/0}
  407. DataValues: DerEchteNexus
  408. Type: Shapeless
  409.  
  410. #%Name: Repair DP
  411. 221:
  412. Result: 278
  413. Quantity: 1
  414. Materials: {278: 1/-1, 264: 2/0}
  415. DataValues: DerEchteNexus
  416. Type: Shapeless
  417.  
  418. #%Name: Repair DS
  419. 222:
  420. Result: 276
  421. Quantity: 1
  422. Materials: {276: 1/-1, 264: 1/0}
  423. DataValues: DerEchteNexus
  424. Type: Shapeless
  425.  
  426. #%Name: Repair DA
  427. 223:
  428. Result: 279
  429. Quantity: 1
  430. Materials: {279: 1/-1, 264: 2/0}
  431. DataValues: DerEchteNexus
  432. Type: Shapeless
  433.  
  434. #%Name: Repair DSY
  435. 224:
  436. Result: 293
  437. Quantity: 1
  438. Materials: {293: 1/-1, 264: 1/0}
  439. DataValues: DerEchteNexus
  440. Type: Shapeless
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement