Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.92 KB | None | 0 0
  1. val ccobble = <minecraft:cobblestone>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  2. var cobble = <minecraft:cobblestone>;
  3.  
  4. recipes.addShaped(ccobble,
  5. [[cobble, cobble, cobble],
  6. [cobble, cobble, cobble],
  7. [cobble, cobble, cobble]]);
  8.  
  9. val cplanks = <minecraft:planks>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  10. var planks = <minecraft:planks>;
  11.  
  12. recipes.addShaped(cplanks,
  13. [[planks, planks, planks],
  14. [planks, planks, planks],
  15. [planks, planks, planks]]);
  16.  
  17. val cwood = <minecraft:log>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  18. var wood = <minecraft:log>;
  19.  
  20. recipes.addShaped(cwood,
  21. [[wood, wood, wood],
  22. [wood, wood, wood],
  23. [wood, wood, wood]]);
  24.  
  25.  
  26. val cleaves = <minecraft:leaves>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  27.  
  28. recipes.addShaped(cleaves*20,
  29. [[null, cplanks, null],
  30. [cplanks, cplanks, cplanks],
  31. [null, cplanks, null]]);
  32.  
  33.  
  34. val cdirt = <minecraft:dirt>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  35. var dirt = <minecraft:dirt>;
  36. recipes.addShaped(cdirt,
  37. [[dirt, dirt, dirt],
  38. [dirt, dirt, dirt],
  39. [dirt, dirt, dirt]]);
  40.  
  41. recipes.addShaped(dirt*8,
  42. [[null, cleaves, null],
  43. [cleaves, cleaves, cleaves],
  44. [null, cleaves, null]]);
  45.  
  46. var oaksapling = <minecraft:sapling>;
  47. var sprucesapling = <minecraft:sapling:1>;
  48. var birchsapling = <minecraft:sapling:2>;
  49. var junglesapling = <minecraft:sapling:3>;
  50. var acaciasapling = <minecraft:sapling:4>;
  51. var darkoaksapling = <minecraft:sapling:5>;
  52.  
  53. recipes.addShaped(oaksapling,
  54. [[cleaves, null, null],
  55. [null, null, null],
  56. [null, null, null]]);
  57.  
  58. recipes.addShaped(sprucesapling,
  59. [[null, cleaves, null],
  60. [null, null, null],
  61. [null, null, null]]);
  62.  
  63. recipes.addShaped(birchsapling,
  64. [[null, null, cleaves],
  65. [null, null, null],
  66. [null, null, null]]);
  67.  
  68. recipes.addShaped(junglesapling,
  69. [[null, null, null],
  70. [cleaves, null, null],
  71. [null, null, null]]);
  72.  
  73. recipes.addShaped(acaciasapling,
  74. [[null, null, null],
  75. [null, cleaves, null],
  76. [null, null, null]]);
  77.  
  78. recipes.addShaped(darkoaksapling,
  79. [[null, null, null],
  80. [null, null, cleaves],
  81. [null, null, null]]);
  82.  
  83. val cgravel = <minecraft:gravel>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  84.  
  85. recipes.addShaped(cgravel,
  86. [[null, cdirt, null],
  87. [cdirt, cdirt, cdirt],
  88. [null, cdirt, null]]);
  89.  
  90. recipes.addShaped(cobble*64,
  91. [[cgravel, cgravel, cgravel],
  92. [cgravel, cgravel, cgravel],
  93. [cgravel, cgravel, cgravel]]);
  94.  
  95. recipes.addShaped(wood*45,
  96. [[null, cwood, null],
  97. [cwood, cwood,cwood],
  98. [null, cwood, null]]);
  99.  
  100. var coalore = <minecraft:coal_ore>;
  101. var coal = <minecraft:coal>;
  102. var charcoal = <minecraft:coal:1>;
  103. var coalblock = <minecraft:coal_block>;
  104.  
  105. recipes.addShaped(coalore,
  106. [[ccobble, ccobble, ccobble],
  107. [ccobble, coal, ccobble],
  108. [ccobble, ccobble, ccobble]]);
  109.  
  110. recipes.addShaped(coalblock,
  111. [[charcoal, charcoal, charcoal],
  112. [charcoal, charcoal, charcoal],
  113. [charcoal, charcoal, charcoal]]);
  114.  
  115. recipes.addShaped(coalore,
  116. [[ccobble, ccobble, ccobble],
  117. [ccobble, charcoal, ccobble],
  118. [ccobble, ccobble, ccobble]]);
  119.  
  120. var gravel = <minecraft:gravel>;
  121.  
  122. recipes.addShaped(cgravel,
  123. [[gravel, gravel, gravel],
  124. [gravel, gravel, gravel],
  125. [gravel, gravel, gravel]]);
  126.  
  127. val cstone = <minecraft:stone>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  128. var stone = <minecraft:stone>;
  129.  
  130. recipes.addShaped(cstone,
  131. [[stone, stone, stone],
  132. [stone, stone, stone],
  133. [stone, stone, stone]]);
  134.  
  135. var ironore = <minecraft:iron_ore>;
  136.  
  137. recipes.addShaped(ironore*16,
  138. [[cstone, coalblock, cstone],
  139. [coalblock, cstone, coalblock],
  140. [cstone, coalblock, cstone]]);
  141.  
  142. var ironblock = <minecraft:iron_block>;
  143. var goldore = <minecraft:gold_ore>;
  144.  
  145. recipes.addShaped(goldore*16,
  146. [[null, ironblock, null],
  147. [ironblock, ironblock, ironblock],
  148. [null, ironblock, null]]);
  149.  
  150. var sand = <minecraft:sand>;
  151.  
  152. recipes.addShaped(sand*45,
  153. [[null, cgravel, null],
  154. [cgravel, cgravel, cgravel],
  155. [null, cgravel, null]]);
  156.  
  157. var goldblock = <minecraft:gold_block>;
  158. var lapisore = <minecraft:lapis_ore>;
  159.  
  160. recipes.addShaped(lapisore*16,
  161. [[null, goldblock, null],
  162. [goldblock, goldblock, goldblock],
  163. [null, goldblock, null]]);
  164.  
  165. var lapisblock = <minecraft:lapis_block>;
  166. var redstoneore = <minecraft:redstone_ore>;
  167.  
  168. recipes.addShaped(redstoneore*16,
  169. [[null, lapisblock, null],
  170. [lapisblock, lapisblock, lapisblock],
  171. [null, lapisblock, null]]);
  172.  
  173. var redstoneblock = <minecraft:redstone_block>;
  174. var diamondore = <minecraft:diamond_ore>;
  175.  
  176. recipes.addShaped(diamondore*16,
  177. [[null, redstoneblock, null],
  178. [redstoneblock, redstoneblock, redstoneblock],
  179. [null, redstoneblock, null]]);
  180.  
  181. var diamondblock = <minecraft:diamond_block>;
  182. var emeraldore = <minecraft:emerald_ore>;
  183.  
  184. recipes.addShaped(emeraldore*16,
  185. [[null, diamondblock, null],
  186. [diamondblock, diamondblock, diamondblock],
  187. [null, diamondblock, null]]);
  188.  
  189. var emeraldblock = <minecraft:emerald_block>;
  190. var quartzore = <minecraft:quartz_ore>;
  191.  
  192. recipes.addShaped(quartzore*16,
  193. [[null, emeraldblock, null],
  194. [emeraldblock, emeraldblock, emeraldblock],
  195. [null, emeraldblock, null]]);
  196.  
  197. var bucket = <minecraft:bucket>;
  198. var apple = <minecraft:apple>;
  199. var waterbucket = <minecraft:water_bucket>;
  200.  
  201. recipes.addShaped(waterbucket,
  202. [[null, apple, null],
  203. [apple, bucket, apple],
  204. [null, apple, null]]);
  205.  
  206. var flintsteel = <minecraft:flint_and_steel>;
  207. var lavabucket = <minecraft:lava_bucket>;
  208.  
  209. recipes.addShaped(lavabucket,
  210. [[cstone, cstone, cstone],
  211. [cstone, cstone, cstone],
  212. [flintsteel, cstone, flintsteel]]);
  213.  
  214. val csand = <minecraft:sand>.withTag({ench: [{lvl: 1 as short, id: 2 as short}], RepairCost: 1});
  215.  
  216. recipes.addShaped(csand,
  217. [[sand, sand, sand],
  218. [sand, sand, sand],
  219. [sand, sand, sand]]);
  220.  
  221. var potion = <minecraft:potion>.withTag({Potion: "minecraft:water"});
  222. var clayblock = <minecraft:clay>;
  223.  
  224. recipes.addShaped(clayblock*32,
  225. [[csand, csand, csand],
  226. [csand, potion, csand],
  227. [csand, csand, csand]]);
  228.  
  229. var melonseeds = <minecraft:melon_seeds>;
  230. var pumpkinseeds = <minecraft:pumpkin_seeds>;
  231. var sugarcane = <minecraft:reeds>;
  232. var cocoabeans = <minecraft:dye:3>;
  233. var cactus = <minecraft:cactus>;
  234. var beetrootseeds = <minecraft:beetroot_seeds>;
  235.  
  236. recipes.addShaped(melonseeds*4,
  237. [[oaksapling, oaksapling, oaksapling],
  238. [oaksapling, waterbucket, oaksapling],
  239. [oaksapling, oaksapling, oaksapling]]);
  240.  
  241. recipes.addShaped(pumpkinseeds*4,
  242. [[sprucesapling, sprucesapling, sprucesapling],
  243. [sprucesapling, waterbucket, sprucesapling],
  244. [sprucesapling, sprucesapling, sprucesapling]]);
  245.  
  246. recipes.addShaped(sugarcane*4,
  247. [[birchsapling, birchsapling, birchsapling],
  248. [birchsapling, waterbucket, birchsapling],
  249. [birchsapling, birchsapling, birchsapling]]);
  250.  
  251. recipes.addShaped(cocoabeans*4,
  252. [[junglesapling, junglesapling, junglesapling],
  253. [junglesapling, waterbucket, junglesapling],
  254. [junglesapling, junglesapling, junglesapling]]);
  255.  
  256. recipes.addShaped(cactus*4,
  257. [[acaciasapling, acaciasapling, acaciasapling],
  258. [acaciasapling, waterbucket, acaciasapling],
  259. [acaciasapling, acaciasapling, acaciasapling]]);
  260.  
  261. recipes.addShaped(beetrootseeds*4,
  262. [[darkoaksapling, darkoaksapling, darkoaksapling],
  263. [darkoaksapling, waterbucket, darkoaksapling],
  264. [darkoaksapling, darkoaksapling, darkoaksapling]]);
  265.  
  266. var bonemeal = <minecraft:dye:15>;
  267.  
  268. recipes.addShaped(bonemeal*8,
  269. [[null, null, null],
  270. [null, oaksapling, null],
  271. [null, dirt, null]]);
  272.  
  273. val cwpickaxe = <minecraft:wooden_pickaxe>.withTag({ench: [{lvl: 1 as short, id: 32 as short}], RepairCost: 1});
  274. var wpickaxe = <minecraft:wooden_pickaxe>;
  275.  
  276. recipes.addShaped(cwpickaxe,
  277. [[cwood, cwood, cwood],
  278. [cwood, wpickaxe, cwood],
  279. [cwood, cwood, cwood]]);
  280.  
  281. val cspickaxe = <minecraft:stone_pickaxe>.withTag({ench: [{lvl: 2 as short, id: 32 as short}], RepairCost: 1});
  282. var spickaxe = <minecraft:stone_pickaxe>;
  283.  
  284. recipes.addShaped(cspickaxe,
  285. [[cstone, cstone, cstone],
  286. [cstone, spickaxe, cstone],
  287. [cstone, cstone, cstone]]);
  288.  
  289. val cipickaxe = <minecraft:iron_pickaxe>.withTag({ench: [{lvl: 3 as short, id: 32 as short}], RepairCost: 1});
  290. var ipickaxe = <minecraft:iron_pickaxe>;
  291.  
  292. recipes.addShaped(cipickaxe,
  293. [[ironblock, ironblock, ironblock],
  294. [ironblock, ipickaxe, ironblock],
  295. [ironblock, ironblock, ironblock]]);
  296.  
  297. val cgpickaxe = <minecraft:golden_pickaxe>.withTag({ench: [{lvl: 4 as short, id: 32 as short}], RepairCost: 1});
  298. var gpickaxe = <minecraft:golden_pickaxe>;
  299.  
  300. recipes.addShaped(cgpickaxe,
  301. [[goldblock, goldblock, goldblock],
  302. [goldblock, gpickaxe, goldblock],
  303. [goldblock, goldblock, goldblock]]);
  304.  
  305. val cdpickaxe = <minecraft:diamond_pickaxe>.withTag({ench: [{lvl: 5 as short, id: 32 as short}], RepairCost: 1});
  306. var dpickaxe = <minecraft:diamond_pickaxe>;
  307.  
  308. recipes.addShaped(cdpickaxe,
  309. [[diamondblock, diamondblock, diamondblock],
  310. [diamondblock, dpickaxe, diamondblock],
  311. [diamondblock, diamondblock, diamondblock]]);
  312.  
  313. val cwaxe = <minecraft:wooden_axe>.withTag({ench: [{lvl: 1 as short, id: 32 as short}], RepairCost: 1});
  314. var waxe = <minecraft:wooden_axe>;
  315.  
  316. recipes.addShaped(cwaxe,
  317. [[cwood, cwood, cwood],
  318. [cwood, waxe, cwood],
  319. [cwood, cwood, cwood]]);
  320.  
  321. val csaxe = <minecraft:stone_axe>.withTag({ench: [{lvl: 2 as short, id: 32 as short}], RepairCost: 1});
  322. var saxe = <minecraft:stone_axe>;
  323.  
  324. recipes.addShaped(csaxe,
  325. [[cstone, cstone, cstone],
  326. [cstone, saxe, cstone],
  327. [cstone, cstone, cstone]]);
  328.  
  329. val ciaxe = <minecraft:iron_axe>.withTag({ench: [{lvl: 3 as short, id: 32 as short}], RepairCost: 1});
  330. var iaxe = <minecraft:iron_axe>;
  331.  
  332. recipes.addShaped(ciaxe,
  333. [[ironblock, ironblock, ironblock],
  334. [ironblock, iaxe, ironblock],
  335. [ironblock, ironblock, ironblock]]);
  336.  
  337. val cgaxe = <minecraft:golden_axe>.withTag({ench: [{lvl: 4 as short, id: 32 as short}], RepairCost: 1});
  338. var gaxe = <minecraft:golden_axe>;
  339.  
  340. recipes.addShaped(cgaxe,
  341. [[goldblock, goldblock, goldblock],
  342. [goldblock, gaxe, goldblock],
  343. [goldblock, goldblock, goldblock]]);
  344.  
  345. val cdaxe = <minecraft:diamond_axe>.withTag({ench: [{lvl: 5 as short, id: 32 as short}], RepairCost: 1});
  346. var daxe = <minecraft:diamond_axe>;
  347.  
  348. recipes.addShaped(cdaxe,
  349. [[diamondblock, diamondblock, diamondblock],
  350. [diamondblock, daxe, diamondblock],
  351. [diamondblock, diamondblock, diamondblock]]);
  352.  
  353. val cwshovel = <minecraft:wooden_shovel>.withTag({ench: [{lvl: 1 as short, id: 32 as short}], RepairCost: 1});
  354. val csshovel = <minecraft:stone_shovel>.withTag({ench: [{lvl: 2 as short, id: 32 as short}], RepairCost: 1});
  355. val cishovel = <minecraft:iron_shovel>.withTag({ench: [{lvl: 3 as short, id: 32 as short}], RepairCost: 1});
  356. val cgshovel = <minecraft:golden_shovel>.withTag({ench: [{lvl: 4 as short, id: 32 as short}], RepairCost: 1});
  357. val cdshovel = <minecraft:diamond_shovel>.withTag({ench: [{lvl: 5 as short, id: 32 as short}], RepairCost: 1});
  358.  
  359. var wshovel = <minecraft:wooden_shovel>;
  360. var sshovel = <minecraft:stone_shovel>;
  361. var ishovel = <minecraft:iron_shovel>;
  362. var gshovel = <minecraft:golden_shovel>;
  363. var dshovel = <minecraft:diamond_shovel>;
  364.  
  365. recipes.addShaped(cwshovel,
  366. [[cwood, cwood, cwood],
  367. [cwood, wshovel, cwood],
  368. [cwood, cwood, cwood]]);
  369.  
  370. recipes.addShaped(csshovel,
  371. [[cstone, cstone, cstone],
  372. [cstone, sshovel, cstone],
  373. [cstone, cstone, cstone]]);
  374.  
  375. recipes.addShaped(cishovel,
  376. [[ironblock, ironblock, ironblock],
  377. [ironblock, ishovel, ironblock],
  378. [ironblock, ironblock, ironblock]]);
  379.  
  380. recipes.addShaped(cgshovel,
  381. [[goldblock, goldblock, goldblock],
  382. [goldblock, gshovel, goldblock],
  383. [goldblock, goldblock, goldblock]]);
  384.  
  385. recipes.addShaped(cdshovel,
  386. [[diamondblock, diamondblock, diamondblock],
  387. [diamondblock, dshovel, diamondblock],
  388. [diamondblock, diamondblock, diamondblock]]);
  389.  
  390. val cwsword = <minecraft:wooden_sword>.withTag({ench: [{lvl: 1 as short, id: 16 as short}]});
  391. val cssword = <minecraft:stone_sword>.withTag({ench: [{lvl: 2 as short, id: 16 as short}]});
  392. val cisword = <minecraft:iron_sword>.withTag({ench: [{lvl: 3 as short, id: 16 as short}]});
  393. val cgsword = <minecraft:golden_sword>.withTag({ench: [{lvl: 4 as short, id: 16 as short}]});
  394. val cdsword = <minecraft:diamond_sword>.withTag({ench: [{lvl: 5 as short, id: 16 as short}]});
  395.  
  396. var wsword = <minecraft:wooden_sword>;
  397. var ssword = <minecraft:stone_sword>;
  398. var isword = <minecraft:iron_sword>;
  399. var gsword = <minecraft:golden_sword>;
  400. var dsword = <minecraft:diamond_sword>;
  401.  
  402. recipes.addShaped(cwsword,
  403. [[cwood, cwood, cwood],
  404. [cwood, wsword, cwood],
  405. [cwood, cwood, cwood]]);
  406.  
  407. recipes.addShaped(cssword,
  408. [[cstone, cstone, cstone],
  409. [cstone, ssword, cstone],
  410. [cstone, cstone, cstone]]);
  411.  
  412. recipes.addShaped(cisword,
  413. [[ironblock, ironblock, ironblock],
  414. [ironblock, isword, ironblock],
  415. [ironblock, ironblock, ironblock]]);
  416.  
  417. recipes.addShaped(cgsword,
  418. [[goldblock, goldblock, goldblock],
  419. [goldblock, gsword, goldblock],
  420. [goldblock, goldblock, goldblock]]);
  421.  
  422. recipes.addShaped(cdsword,
  423. [[diamondblock, diamondblock, diamondblock],
  424. [diamondblock, dsword, diamondblock],
  425. [diamondblock, diamondblock, diamondblock]]);
  426.  
  427. val cangel1 = <minecraft:fishing_rod>.withTag({ench: [{lvl: 1 as short, id: 61 as short}], RepairCost: 1});
  428. val cangel2 = <minecraft:fishing_rod>.withTag({ench: [{lvl: 2 as short, id: 61 as short}], RepairCost: 1});
  429. val cangel3 = <minecraft:fishing_rod>.withTag({ench: [{lvl: 3 as short, id: 61 as short}], RepairCost: 1});
  430.  
  431. var angel = <minecraft:fishing_rod>;
  432.  
  433. recipes.addShaped(cangel1,
  434. [[cwood, cwood, cwood],
  435. [cwood, angel, cwood],
  436. [cwood, cwood, cwood]]);
  437.  
  438. recipes.addShaped(cangel2,
  439. [[ironblock, ironblock, ironblock],
  440. [ironblock, angel, ironblock],
  441. [ironblock, ironblock, ironblock]]);
  442.  
  443. recipes.addShaped(cangel3,
  444. [[emeraldblock, emeraldblock, emeraldblock],
  445. [emeraldblock, angel, emeraldblock],
  446. [emeraldblock, emeraldblock, emeraldblock]]);
  447.  
  448. var gunpowder = <minecraft:gunpowder>;
  449. var slimeball = <minecraft:slime_ball>;
  450.  
  451. recipes.addShaped(slimeball*4,
  452. [[bonemeal, bonemeal, bonemeal],
  453. [bonemeal, gunpowder, bonemeal],
  454. [bonemeal, bonemeal, bonemeal]]);
  455.  
  456. var netherrack = <minecraft:netherrack>;
  457.  
  458. recipes.addShaped(netherrack*64,
  459. [[cstone, cstone, cstone],
  460. [cstone, flintsteel, cstone],
  461. [cstone, cstone, cstone]]);
  462.  
  463. var magmablock = <minecraft:magma>;
  464.  
  465. recipes.addShaped(magmablock*2,
  466. [[netherrack, netherrack, netherrack],
  467. [netherrack, flintsteel, netherrack],
  468. [netherrack, netherrack, netherrack]]);
  469.  
  470. var soulsand = <minecraft:soul_sand>;
  471.  
  472. recipes.addShaped(soulsand*4,
  473. [[sand, sand, sand],
  474. [sand, flintsteel, sand],
  475. [sand, sand, sand]]);
  476.  
  477. var goldingot = <minecraft:gold_ingot>;
  478. var stick = <minecraft:stick>;
  479. var blazerod = <minecraft:blaze_rod>;
  480.  
  481. recipes.addShaped(blazerod*4,
  482. [[goldingot, goldingot, goldingot],
  483. [goldingot, stick, goldingot],
  484. [goldingot, goldingot, goldingot]]);
  485.  
  486. var blazepowder = <minecraft:blaze_powder>;
  487. var glas = <minecraft:glass>;
  488. var glowstone = <minecraft:glowstone>;
  489.  
  490. recipes.addShaped(glowstone*4,
  491. [[glas, glas, glas],
  492. [glas, blazepowder, glas],
  493. [glas, glas, glas]]);
  494.  
  495. var ironnugget = <minecraft:iron_nugget>;
  496. var goldnugget = <minecraft:gold_nugget>;
  497. var ghasttear = <minecraft:ghast_tear>;
  498.  
  499. recipes.addShaped(ghasttear*2,
  500. [[ironnugget, ironnugget, ironnugget],
  501. [ironnugget, goldnugget, ironnugget],
  502. [ironnugget, ironnugget, ironnugget]]);
  503.  
  504. var netherwart = <minecraft:nether_wart>;
  505. var wheatseeds = <minecraft:wheat_seeds>;
  506.  
  507. recipes.addShaped(netherwart*4,
  508. [[wheatseeds, wheatseeds, wheatseeds],
  509. [wheatseeds, soulsand, wheatseeds],
  510. [wheatseeds, wheatseeds, wheatseeds]]);
  511.  
  512. var granite = <minecraft:stone:2>;
  513. var andesite = <minecraft:stone:6>;
  514. var diorite = <minecraft:stone:4>;
  515.  
  516. recipes.addShaped(granite*12,
  517. [[null, null, null],
  518. [null, cwood, null],
  519. [null, cstone, null]]);
  520.  
  521. recipes.addShaped(diorite*12,
  522. [[null, null, null],
  523. [null, cplanks, null],
  524. [null, cstone, null]]);
  525.  
  526. recipes.addShaped(andesite*12,
  527. [[null, null, null],
  528. [null, cgravel, null],
  529. [null, cstone, null]]);
  530.  
  531. val cstick = <minecraft:stick>.withTag({ench: [{lvl: 2 as short, id: 19 as short}], RepairCost: 1});
  532.  
  533. recipes.addShaped(cstick,
  534. [[cwood, cwood, cwood],
  535. [cwood, stick, cwood],
  536. [cwood, cwood, cwood]]);
  537.  
  538. var clay = <minecraft:clay_ball>;
  539. var egg = <minecraft:egg>;
  540.  
  541. recipes.addShaped(egg,
  542. [[bonemeal, bonemeal, bonemeal],
  543. [bonemeal, clay, bonemeal],
  544. [bonemeal, bonemeal, bonemeal]]);
  545.  
  546. var milkbucket = <minecraft:milk_bucket>;
  547. var cowegg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:cow"}});
  548.  
  549. recipes.addShaped(cowegg,
  550. [[milkbucket, milkbucket, milkbucket],
  551. [milkbucket, egg, milkbucket],
  552. [milkbucket, milkbucket, milkbucket]]);
  553.  
  554. var wheat = <minecraft:wheat>;
  555. var horseegg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:horse"}});
  556.  
  557. recipes.addShaped(horseegg,
  558. [[wheat, wheat, wheat],
  559. [wheat, cowegg, wheat],
  560. [wheat, wheat, wheat]]);
  561.  
  562. var fish = <minecraft:fish>;
  563. var categg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:ocelot"}});
  564.  
  565. recipes.addShaped(categg,
  566. [[fish, fish, fish],
  567. [fish, horseegg, fish],
  568. [fish, fish, fish]]);
  569.  
  570. var parrotegg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:parrot"}});
  571.  
  572. recipes.addShaped(parrotegg,
  573. [[wheatseeds, wheatseeds, wheatseeds],
  574. [wheatseeds, categg, wheatseeds],
  575. [wheatseeds, wheatseeds, wheatseeds]]);
  576.  
  577. var potato = <minecraft:potato>;
  578. var carrot = <minecraft:carrot>;
  579.  
  580. recipes.addShaped(potato,
  581. [[null, melonseeds, null],
  582. [melonseeds, melonseeds, null],
  583. [null, melonseeds, null]]);
  584.  
  585. recipes.addShaped(carrot,
  586. [[null, pumpkinseeds, null],
  587. [pumpkinseeds, pumpkinseeds, pumpkinseeds],
  588. [null, pumpkinseeds, null]]);
  589.  
  590. var pigegg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:pig"}});
  591.  
  592. recipes.addShaped(pigegg,
  593. [[carrot, carrot, carrot],
  594. [carrot, parrotegg, carrot],
  595. [carrot, carrot, carrot]]);
  596.  
  597. var rabbitegg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:rabbit"}});
  598.  
  599. recipes.addShaped(rabbitegg,
  600. [[carrot, carrot, carrot],
  601. [carrot, pigegg, carrot],
  602. [carrot, carrot, carrot]]);
  603.  
  604. var wool = <minecraft:wool>;
  605. var sheepegg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:sheep"}});
  606.  
  607. recipes.addShaped(sheepegg,
  608. [[wool, wool, wool],
  609. [wool, rabbitegg, wool],
  610. [wool, wool, wool]]);
  611.  
  612. var bone = <minecraft:bone>;
  613. var wolfegg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:wolf"}});
  614.  
  615. recipes.addShaped(wolfegg,
  616. [[bone, bone, bone],
  617. [bone, sheepegg, bone],
  618. [bone, bone, bone]]);
  619.  
  620. var villageregg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:villager"}});
  621.  
  622. recipes.addShaped(villageregg,
  623. [[emeraldblock, emeraldblock, emeraldblock],
  624. [emeraldblock, wolfegg, emeraldblock],
  625. [emeraldblock, emeraldblock, emeraldblock]]);
  626.  
  627. var witheregg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:wither_skeleton"}});
  628.  
  629. recipes.addShaped(witheregg,
  630. [[bone, bone, bone],
  631. [bone, villageregg, bone],
  632. [bone, bone, bone]]);
  633.  
  634. val cbow1 = <minecraft:bow>.withTag({ench: [{lvl: 1 as short, id: 51 as short}], RepairCost: 1});
  635. var bow = <minecraft:bow>;
  636.  
  637. recipes.addShaped(cbow1,
  638. [[diamondblock, diamondblock, diamondblock],
  639. [diamondblock, bow, diamondblock],
  640. [diamondblock, diamondblock, diamondblock]]);
  641.  
  642. val cbow2 = <minecraft:bow>.withTag({ench: [{lvl: 2 as short, id: 49 as short}], RepairCost: 1});
  643. var obsidian = <minecraft:obsidian>;
  644.  
  645. recipes.addShaped(cbow2,
  646. [[obsidian, obsidian, obsidian],
  647. [obsidian, bow, obsidian],
  648. [obsidian, obsidian, obsidian]]);
  649.  
  650. val cbow3 = <minecraft:bow>.withTag({ench: [{lvl: 1 as short, id: 50 as short}], RepairCost: 1});
  651.  
  652. recipes.addShaped(cbow3,
  653. [[emeraldblock, emeraldblock, emeraldblock],
  654. [emeraldblock, bow, emeraldblock],
  655. [emeraldblock, emeraldblock, emeraldblock]]);
  656.  
  657. val cbow4 = <minecraft:bow>.withTag({ench: [{lvl: 5 as short, id: 48 as short}], RepairCost: 1});
  658.  
  659. recipes.addShaped(cbow4,
  660. [[quartzore, quartzore, quartzore],
  661. [quartzore, bow, quartzore],
  662. [quartzore, quartzore, quartzore]]);
  663.  
  664. val cbow5 = <minecraft:bow>.withTag({ench: [{lvl: 1 as short, id: 70 as short}], RepairCost: 1});
  665. var quartzblock = <minecraft:quartz_block>;
  666.  
  667. recipes.addShaped(cbow5,
  668. [[quartzblock, quartzblock, quartzblock],
  669. [quartzblock, bow, quartzblock],
  670. [quartzblock, quartzblock, quartzblock]]);
  671.  
  672. var totem = <minecraft:totem_of_undying>;
  673.  
  674. recipes.addShaped(totem,
  675. [[emeraldblock, null, emeraldblock],
  676. [goldblock, goldblock, goldblock],
  677. [null, goldblock, null]]);
  678.  
  679. var dhoe = <minecraft:diamond_hoe>;
  680. val cdhoe = <minecraft:diamond_hoe>.withTag({ench: [{lvl: 1 as short, id: 33 as short}], RepairCost: 1});
  681.  
  682. recipes.addShaped(cdhoe,
  683. [[ironblock, ironblock, ironblock],
  684. [ironblock, dhoe, ironblock],
  685. [ironblock, ironblock, ironblock]]);
  686.  
  687. recipes.addShaped(gravel*9,
  688. [[null, null, null],
  689. [null, cgravel, null],
  690. [null, null, null]]);
  691.  
  692. var leaves = <minecraft:leaves>;
  693.  
  694. recipes.addShaped(cleaves*2,
  695. [[leaves, null, leaves],
  696. [null, leaves, null],
  697. [leaves, null, leaves]]);
  698.  
  699. recipes.addShaped(cobble*45,
  700. [[ccobble, null, ccobble],
  701. [null, ccobble, null],
  702. [ccobble, null, ccobble]]);
  703.  
  704. recipes.addShaped(planks*45,
  705. [[cplanks, null, cplanks],
  706. [null, cplanks, null],
  707. [cplanks, null, cplanks]]);
  708.  
  709. var endstone = <minecraft:end_stone>;
  710. var chorusfruit = <minecraft:chorus_flower>;
  711. var portalframe = <minecraft:end_portal_frame>;
  712. var quartz = <minecraft:quartz>;
  713.  
  714. recipes.addShaped(endstone,
  715. [[quartz, quartz, quartz],
  716. [quartz, cstone, quartz],
  717. [quartz, quartz, quartz]]);
  718.  
  719. recipes.addShaped(chorusfruit,
  720. [[endstone, endstone, endstone],
  721. [endstone, apple, endstone],
  722. [endstone, endstone, endstone]);
  723.  
  724. var endereye = <minecraft:ender_eye>;
  725.  
  726. recipes.addShaped(portalframe,
  727. [[endereye, endereye, endereye],
  728. [endstone, endstone, endstone],
  729. [endstone, endstone, endstone]]);
  730.  
  731. var leather = <minecraft:leather>;
  732. var ironingot = <minecraft:iron_ingot>;
  733. var saddle = <minecraft:saddle>;
  734.  
  735. recipes.addShaped(saddle,
  736. [[leather, leather, leather],
  737. [leather, ironingot, leather],
  738. [null, null, null]]);
  739.  
  740. var elytra = <minecraft:elytra>;
  741.  
  742. recipes.addShaped(elytra,
  743. [[quartzblock, quartzblock, quartzblock],
  744. [quartzblock, saddle, quartzblock],
  745. [quartzblock, quartzblock, quartzblock]]);
  746.  
  747. var shulkeregg = <minecraft:spawn_egg>.withTag({EntityTag: {id: "minecraft:shulker"}});
  748.  
  749. recipes.addShaped(shulkeregg,
  750. [[blazerod, blazerod, blazerod],
  751. [blazerod, egg, blazerod],
  752. [blazerod, blazerod, blazerod]]);
  753.  
  754. var prisshard = <minecraft:prismarine_shard>;
  755. var priscrys = <minecraft:prismarine_crystals>;
  756. var diamond = <minecraft:diamond>;
  757.  
  758. recipes.addShaped(prisshard*6,
  759. [[null, null, null],
  760. [null, diamond, null],
  761. [null, null, null]]);
  762.  
  763. var glowstonedust = <minecraft:glowstone_dust>;
  764. var lapis = <minecraft:dye:4>;
  765.  
  766. recipes.addShaped(priscrys,
  767. [[glowstonedust, lapis, glowstonedust],
  768. [lapis, glowstonedust, lapis],
  769. [glowstonedust, lapis, glowstonedust]]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement