Advertisement
Guest User

Untitled

a guest
Oct 31st, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 69.67 KB | None | 0 0
  1. import mods.betterbeginnings.Oven;
  2. import mods.betterbeginnings.AdvancedCrafting;
  3. import mods.betterbeginnings.Campfire;
  4. import mods.betterbeginnings.Kiln;
  5. import mods.betterbeginnings.Smelter;
  6. import mods.minefantasytweaker.Bloomery;
  7. import mods.minefantasytweaker.Forge;
  8. import mods.minefantasytweaker.TanningRack;
  9. import mods.minefantasytweaker.Anvil;
  10. import mods.minefantasytweaker.CarpentersBench;
  11. import mods.minefantasytweaker.Crucible;
  12. import mods.nei.NEI;
  13.  
  14. // Tradewinds MT3 script.
  15. // Please do NOT edit this script without making a backup!
  16.  
  17. // Ganys recipes are handled by their own XMLs
  18.  
  19. ################
  20. ## MT/CT Docs ##
  21. ################
  22.  
  23. // Better Beginnings - https://github.com/einsteinsci/betterbeginnings/wiki/MineTweaker-CraftTweaker-Support
  24. //
  25.  
  26. #############
  27. ## Preload ##
  28. #############
  29.  
  30. print("Loading Tradewinds.zs...");
  31.  
  32. #############
  33. ## General ##
  34. #############
  35.  
  36. // Renaming
  37. <AncientWarfareNpc:town_hall>.displayName = "Worker Payment Box";
  38.  
  39.  
  40. // Recipe add
  41.  
  42. recipes.addShapeless(<minecraft:end_stone> * 16, [<minecraft:ender_pearl>, <ore:stone>]);
  43.  
  44. //recipes.addShapeless(<minefantasy2:MF_Com_sharp_rock>, [<ore:stone>, <ore:stone>, <ore:stone>, <ore:stone>]);
  45.  
  46. // Recipe remove
  47.  
  48.  
  49. // Ore dictionary definitions and changes
  50.  
  51. # Vanilla iron ore is being removed from world gen completely. Replaced by SGU BetterGeos iron ore. Ore dictionary value to fix iron ore recipes
  52. val ironore = <ore:oreIron>;
  53. ironore.add(<SGU:item.SGUIronOre>);
  54.  
  55. val oresteel = <ore:oreSteel>;
  56. oresteel.remove(<SGU:item.Steel>);
  57.  
  58. val orecopper = <ore:oreCopper>;
  59. val redstoneingot = <ore:ingotRedstone>;
  60. val copperingot = <ore:ingotCopper>;
  61.  
  62. val marble = <ore:marble>;
  63. val blockMarble = <ore:blockMarble>;
  64. val Limestone = <ore:Limestone>;
  65. val blockLimestone = <ore:blockLimestone>;
  66. val blockGranite = <ore:blockGranite>;
  67. val stoneGranite = <ore:stoneGranite>;
  68. val stoneBasalt = <ore:stoneBasalt>;
  69.  
  70. val paintoil = <ore:paintOil>;
  71. paintoil.add(<ImmersiveEngineering:fluidContainers:0>);
  72. paintoil.add(<ImmersiveEngineering:fluidContainers:1>);
  73. paintoil.add(<Railcraft:fluid.creosote.bucket>);
  74. paintoil.add(<ImmersiveEngineering:fluidContainers:2>);
  75. paintoil.add(<ImmersiveEngineering:fluidContainers:3>);
  76. paintoil.add(<yegamolchattels:linseed_oil>);
  77. paintoil.add(<minefantasy2:MF_Com_plant_oil>);
  78.  
  79. val oreflourwheat = <ore:flourEqualswheat>;
  80. oreflourwheat.remove(<harvestcraft:flourItem>);
  81. oreflourwheat.remove(<minecraft:wheat>);
  82.  
  83.  
  84.  
  85.  
  86. # This allows stone bricks to be crafted with any block with the stone oreDict value, which is vital for using many SGUBetterGeo blocks as stone
  87. recipes.addShapeless(<minecraft:stonebrick> * 4, [<ore:stone>, <ore:stone>, <ore:stone>, <ore:stone>]);
  88.  
  89.  
  90. ##############################
  91. ## Ore/Ingot/WG Unification ##
  92. ##############################
  93.  
  94. // So many copper ingots! Lets get rid of all but one. These were disabled where possible in configs, but Im thorough.
  95. recipes.remove(<Forestry:ingotCopper>);
  96. recipes.remove(<Mariculture:materials:4>);
  97. recipes.remove(<Railcraft:ingot:1>);
  98. recipes.remove(<Steamcraft:steamcraftIngot:0>);
  99.  
  100. copperingot.remove(<Forestry:ingotCopper>);
  101. copperingot.remove(<Mariculture:materials:4>);
  102. copperingot.remove(<Railcraft:ingot:1>);
  103. copperingot.remove(<Steamcraft:steamcraftIngot:0>);
  104.  
  105.  
  106. // orecopper.remove(<metalforge:oreAll:0>);
  107. orecopper.remove(<Forestry:resources:1>);
  108. orecopper.remove(<Mariculture:rocks:1>);
  109.  
  110.  
  111. // recipes.remove(<metalforge:oreAll:0>);
  112. recipes.remove(<Forestry:resources:1>);
  113. recipes.remove(<Mariculture:rocks:1>);
  114.  
  115. // Non-ore World Gen stuff
  116. marble.add(<SGU:Marble>);
  117. blockMarble.add(<SGU:Marble>);
  118. blockGranite.add(<SGU:Granite>);
  119. stoneGranite.add(<SGU:Granite>);
  120. Limestone.add(<SGU:Limestone>);
  121. blockLimestone.add(<SGU:Limestone>);
  122. stoneBasalt.add(<SGU:Basalt>);
  123.  
  124.  
  125.  
  126.  
  127.  
  128. ###################################################################################
  129. ## Redstone Fix ##
  130. ## SGUBetterGeo decided to make all vanilla redstone into copper. This fixes it. ##
  131. ###################################################################################
  132.  
  133. // SGUBetterGeo adds a copper ingot, which is actually redstone. Lets fix that.
  134. copperingot.remove(<SGU:item.CopperIngot>);
  135. redstoneingot.add(<SGU:item.CopperIngot>);
  136.  
  137. // SGUBetterGeo adds a copper ingot. Its actually redstone. The changes below somehow removed the redstone ingot to 9 redstone dust recipe. Lets fix that.
  138. recipes.addShapeless(<minecraft:redstone> * 4, [<SGU:item.CopperIngot>]);
  139.  
  140. // SGUBetterGeo adds a copper ingot. Its actually redstone. Oddly enough, copper ingot from other mods can be crafted into 9 redstone. Lets fix that.
  141. recipes.removeShapeless(<minecraft:redstone>, [<ore:ingotCopper>]);
  142.  
  143.  
  144. // SGUBetterGeo decided to rename all redstone to copper. Lets change that back!
  145. <minecraft:redstone>.displayName = "Redstone";
  146. <SGU:item.CopperIngot>.displayName = "Redstone Ingot";
  147. <minecraft:redstone_ore>.displayName = "Redstone Ore";
  148. <minecraft:redstone_torch>.displayName = "Redstone Torch";
  149. <minecraft:redstone_lamp>.displayName = "Redstone Lamp";
  150. <minecraft:repeater>.displayName = "Redstone Repeater";
  151. <minecraft:comparator>.displayName = "Redstone Comparator";
  152. <SGU:GabbroRedstone>.displayName = "Gabbro with Redstone";
  153. <minecraft:redstone_block>.displayName = "Block of Redstone";
  154.  
  155. // SGUBetterGeo adds copper ingots, which is actually redstone. Most of this was fixed above, but mariculture still melts what is now redstone ingots into copper fluid. Lets remove that.
  156. mods.mariculture.Crucible.removeRecipe(<SGU:item.CopperIngot>);
  157.  
  158.  
  159.  
  160. ###########################
  161. ## Immersive Engineering ##
  162. ###########################
  163.  
  164. //Refine oil into fuel via refinery
  165. mods.immersiveengineering.Refinery.addRecipe(<liquid:fuel> * 2, <liquid:oil> * 4, <liquid:steam>);
  166.  
  167.  
  168. ###############
  169. ## Railcraft ##
  170. ###############
  171.  
  172. //Change hobbyist steam engine to use bronze, not gold
  173. recipes.remove(<Railcraft:machine.beta:7>);
  174. recipes.addShaped(<Railcraft:machine.beta:7>, [
  175. [<ore:ingotBronze>, <ore:ingotBronze>, <ore:ingotBronze>],
  176. [null, <ore:blockGlass>, null],
  177. [<ore:gearBronze>, <minecraft:piston>, <ore:gearBronze>]
  178. ]);
  179.  
  180. //Change Item loader and unloader recipes
  181. recipes.remove(<Railcraft:machine.gamma:2>);
  182. recipes.remove(<Railcraft:machine.gamma:3>);
  183.  
  184.  
  185. ###############
  186. ## Flaxbeard ##
  187. ###############
  188.  
  189. //Boiler oreBronze
  190. recipes.addShaped(<Steamcraft:boiler>, [
  191. [<ore:ingotBronze>, <ore:ingotBronze>, <ore:ingotBronze>],
  192. [<ore:ingotBronze>, <minecraft:furnace>, <ore:ingotBronze>],
  193. [<ore:ingotBronze>, <ore:ingotBronze>, <ore:ingotBronze>]
  194. ]);
  195.  
  196.  
  197.  
  198. ##################
  199. ## Minefantasy2 ##
  200. ##################
  201.  
  202. // Bloomery recipes to include ore dictionary values for ores
  203. Bloomery.addRecipe(<minefantasy2:MF_Com_ingotCopper>, <ore:oreCopper>);
  204. Bloomery.addRecipe(<minefantasy2:MF_Com_ingotTin>, <ore:oreTin>);
  205.  
  206. // Allows forge to heat any copper ingot
  207. Forge.addHeatableItem(<ore:ingotCopper>, 0, 500, 120);
  208.  
  209. // Allows crucible to be crafted with any stone oredict
  210. CarpentersBench.addShapedRecipe(<minefantasy2:MF_Cruciblestone>, "artisanry", "", "minefantasy2:block.hammercarpenter", 200.0, "hammer", 0, 0, 10, [
  211. [<ore:stone>, <ore:stone>, <ore:stone>, null],
  212. [<ore:stone>, null, <ore:stone>, null],
  213. [<ore:stone>, <ore:stone>, <ore:stone>, null],
  214. [null, null, null, null]
  215. ]);
  216.  
  217. // Allows copper pickaxe to be crafted with any hot copper ingot
  218. #Anvil.addShapedRecipe(<minefantasy2:copper_pick>, "artisanry", "", true, 100.0, "hammer", 0, 0, 500, [
  219. #[<minefantasy2:MF_Com_leather_strip>, null, <ore:ingotCopper>, null],
  220. #[<minefantasy2:MF_Com_plank>, <minefantasy2:MF_Com_plank>, <ore:ingotCopper>, null],
  221. #[<minefantasy2:MF_Com_leather_strip>, null, <ore:ingotCopper>, null],
  222. #[null, null, null, null]
  223. #]);
  224.  
  225. // Craft sharp rocks
  226. recipes.addShapeless(<minefantasy2:MF_Com_sharp_rock>, [<minecraft:gravel>, <minecraft:gravel>]);
  227. CarpentersBench.addShapedRecipe(<minefantasy2:MF_Com_sharp_rock> * 4, "artisanry", "", "minefantasy2:block.hammercarpenter", 10.0, "hammer", -1, 0, 3, [
  228. [<ore:stone>, null, null, null],
  229. [null, null, null, null],
  230. [null, null, null, null],
  231. [null, null, null, null]
  232. ]);
  233.  
  234. #######################
  235. ## Better Beginnings ##
  236. #######################
  237.  
  238. //Crafting recipe for pack frame
  239. AdvancedCrafting.addRecipe(<tradewinds:PackFrame>,
  240. [
  241. [<minefantasy2:MF_Com_plank>, <ImmersiveEngineering:material:4>, <minefantasy2:MF_Com_plank>],
  242. [<minefantasy2:MF_Com_plank>, <minefantasy2:MF_Com_plank>, <minefantasy2:MF_Com_plank>],
  243. [<minefantasy2:MF_Com_plank>, <ImmersiveEngineering:material:4>, <minefantasy2:MF_Com_plank>]
  244. ]
  245. , [<minefantasy2:MF_Com_nail> *4]);
  246.  
  247. recipes.addShaped(<betterbeginnings:doubleWorkbench>, [[<ore:plankWood>, <ore:plankWood>], [<ore:plankWood>, <ore:plankWood>]]);
  248.  
  249. Kiln.addRecipe(<minefantasy2:MF_Com_ingot_mould>, <minefantasy2:MF_Com_ingot_mould_uncooked>);
  250.  
  251. recipes.remove(<minecraft:book>);
  252.  
  253. AdvancedCrafting.addRecipe(<minecraft:book>,[
  254. [null, <minecraft:leather>, null],
  255. [<minecraft:paper>, <minecraft:paper>, <minecraft:paper>],
  256. [null, <minecraft:leather>, null]
  257. ]
  258. , [<ore:itemString> *3]);
  259.  
  260. //Use MF2 vines and vanilla string in leu of leather strips for select tools
  261. recipes.addShaped(<betterbeginnings:flintHatchet>,[
  262. [<minecraft:flint>, <minefantasy2:MF_Com_vine>],
  263. [null, <ore:stickWood>]
  264. ]);
  265.  
  266. recipes.addShaped(<betterbeginnings:flintHatchet>,[
  267. [<minecraft:flint>, <ore:itemString>],
  268. [null, <ore:stickWood>]
  269. ]);
  270.  
  271. AdvancedCrafting.addRecipe(<betterbeginnings:bonePickaxe>,[
  272. [<betterbeginnings:boneShard>, <minecraft:bone>, <betterbeginnings:boneShard>],
  273. [null, <ore:stickWood>, null],
  274. [null, <ore:stickWood>, null]
  275. ]
  276. , [<ore:itemString> *2]);
  277.  
  278. AdvancedCrafting.addRecipe(<betterbeginnings:bonePickaxe>,[
  279. [<betterbeginnings:boneShard>, <minecraft:bone>, <betterbeginnings:boneShard>],
  280. [null, <ore:stickWood>, null],
  281. [null, <ore:stickWood>, null]
  282. ]
  283. , [<minefantasy2:MF_Com_vine> *2]);
  284.  
  285. ###############
  286. ## Reliquary ##
  287. ###############
  288.  
  289. recipes.remove(<xreliquary:altar_idle>);
  290. recipes.remove(<xreliquary:apothecary_cauldron>);
  291. recipes.remove(<xreliquary:apothecary_mortar>);
  292. recipes.remove(<xreliquary:lilypad>);
  293. recipes.remove(<xreliquary:interdiction_torch>);
  294. recipes.remove(<xreliquary:wraith_node>);
  295. recipes.remove(<xreliquary:alkahest_tome>);
  296. recipes.remove(<xreliquary:angelheart_vial>);
  297. recipes.remove(<xreliquary:angelic_feather>);
  298. recipes.remove(<xreliquary:attraction_potion>);
  299. recipes.remove(<xreliquary:bullet:*>);
  300. recipes.remove(<xreliquary:destruction_catalyst>);
  301. recipes.remove(<xreliquary:emperor_chalice>);
  302. recipes.remove(<xreliquary:ender_staff>);
  303. recipes.remove(<xreliquary:fertile_potion>);
  304. recipes.remove(<xreliquary:fortune_coin>);
  305. recipes.remove(<xreliquary:glacial_staff>);
  306. recipes.remove(<xreliquary:glowing_bread>);
  307. recipes.remove(<xreliquary:glowing_water>);
  308. recipes.remove(<xreliquary:gun_part:0>);
  309. recipes.remove(<xreliquary:gun_part:1>);
  310. recipes.remove(<xreliquary:gun_part:2>);
  311. recipes.remove(<xreliquary:handgun>);
  312. recipes.remove(<xreliquary:harvest_rod>);
  313. recipes.remove(<xreliquary:heart_pearl:0>);
  314. recipes.remove(<xreliquary:heart_pearl:1>);
  315. recipes.remove(<xreliquary:heart_pearl:2>);
  316. recipes.remove(<xreliquary:heart_pearl:3>);
  317. recipes.remove(<xreliquary:heart_zhu:0>);
  318. recipes.remove(<xreliquary:heart_zhu:1>);
  319. recipes.remove(<xreliquary:heart_zhu:2>);
  320. recipes.remove(<xreliquary:heart_zhu:3>);
  321. recipes.remove(<xreliquary:hero_medallion>);
  322. recipes.remove(<xreliquary:holy_hand_grenade>);
  323. recipes.remove(<xreliquary:ice_magus_rod>);
  324. recipes.remove(<xreliquary:infernal_chalice>);
  325. recipes.remove(<xreliquary:infernal_claws>);
  326. recipes.remove(<xreliquary:infernal_tear>);
  327. recipes.remove(<xreliquary:kraken_shell>);
  328. recipes.remove(<xreliquary:lantern_of_paranoia>);
  329. recipes.remove(<xreliquary:magazine:*>);
  330. recipes.remove(<xreliquary:magicbane>);
  331. recipes.remove(<xreliquary:mercy_cross>);
  332. recipes.remove(<xreliquary:midas_touchstone>);
  333. recipes.remove(<xreliquary:mob_ingredient:*>);
  334. recipes.remove(<xreliquary:phoenix_down>);
  335. recipes.remove(<xreliquary:potion_essence>);
  336. recipes.remove(<xreliquary:pyromancer_staff>);
  337. recipes.remove(<xreliquary:rending_gale>);
  338. recipes.remove(<xreliquary:rod_of_lyssa>);
  339. recipes.remove(<xreliquary:salamander_eye>);
  340. recipes.remove(<xreliquary:serpent_staff>);
  341. recipes.remove(<xreliquary:shears_of_winter>);
  342. recipes.remove(<xreliquary:sojourner_staff>);
  343. recipes.remove(<xreliquary:twilight_cloak>);
  344. recipes.remove(<xreliquary:void_tear>);
  345. recipes.remove(<xreliquary:void_tear_empty>);
  346. recipes.remove(<xreliquary:witch_hat>);
  347. recipes.remove(<xreliquary:witherless_rose>);
  348. recipes.remove(<xreliquary:potion>);
  349.  
  350. //add
  351. recipes.addShaped(<xreliquary:altar>, [
  352. [<minefantasy2:MF_Com_plank>, <minecraft:glowstone>, <minefantasy2:MF_Com_plank>],
  353. [<minecraft:redstone_block>, <Mariculture:pearls:5>, <minecraft:redstone_block>],
  354. [<minefantasy2:MF_Com_plank>, <minecraft:glowstone>, <minefantasy2:MF_Com_plank>]
  355. ]);
  356.  
  357. #######################
  358. ## Archeology System ##
  359. #######################
  360.  
  361. //Craft arcy tools with relic fragments to get unident relic, damage arcy tools by 1 and return it
  362. recipes.addShaped(<tradewinds:Unidentified Relic>, [
  363. [<tradewinds:Relic Fragment>, <tradewinds:Relic Fragment>, <tradewinds:Relic Fragment>],
  364. [<tradewinds:Relic Fragment>, <tradewinds:Archeology Tools>.anyDamage().transformDamage(), <tradewinds:Relic Fragment>],
  365. [<tradewinds:Relic Fragment>, <tradewinds:Relic Fragment>, <tradewinds:Relic Fragment>]
  366. ]);
  367.  
  368. //Crucifix
  369. recipes.addShaped(<tradewinds:Holy Crucifix>, [
  370. [null, <tradewinds:Crucifix Fragment>, null],
  371. [<tradewinds:Crucifix Fragment>, <tradewinds:Mystic Binding Agent>, <tradewinds:Crucifix Fragment>],
  372. [null, <tradewinds:Crucifix Fragment>, null]
  373. ]);
  374.  
  375. //Ancient Staff
  376. recipes.addShaped(<tradewinds:Ancient Staff>, [
  377. [null, <tradewinds:Staff Fragment>, <tradewinds:Staff Fragment>],
  378. [<tradewinds:Staff Fragment>, <tradewinds:Mystic Binding Agent>, <tradewinds:Staff Fragment>],
  379. [<tradewinds:Staff Fragment>, <tradewinds:Staff Fragment>, null]
  380. ]);
  381.  
  382. //Ender Rune
  383. recipes.addShaped(<tradewinds:Ender Rune>, [
  384. [<tradewinds:Ender Rune Fragment>, <tradewinds:Ender Rune Fragment>, <tradewinds:Ender Rune Fragment>],
  385. [<tradewinds:Ender Rune Fragment>, <tradewinds:Mystic Binding Agent>, <tradewinds:Ender Rune Fragment>],
  386. [<tradewinds:Ender Rune Fragment>, <tradewinds:Ender Rune Fragment>, <tradewinds:Ender Rune Fragment>]
  387. ]);
  388.  
  389. #################
  390. ## Mariculture ##
  391. #################
  392.  
  393. //Nothing yet
  394.  
  395. ################
  396. ## Ganys Mods ##
  397. ################
  398.  
  399. //Machine recipes are handled by gany xmls in config folder
  400.  
  401. recipes.remove(<ganysnether:sceptreOfConcealment>);
  402.  
  403. ##############################
  404. ## Crafting Table alignment ##
  405. ##############################
  406.  
  407. //BB and vanilla interchangable
  408.  
  409.  
  410. recipes.remove(<AncientWarfareAutomation:warehouse_crafting_station>);
  411. recipes.addShaped(<AncientWarfareAutomation:warehouse_crafting_station>, [
  412. [<ore:plankWood>, <minecraft:paper>, <ore:plankWood>],
  413. [<ore:plankWood>, <ore:craftingTableWood>, <ore:plankWood>],
  414. [<ore:plankWood>, <ore:ingotIron>, <ore:plankWood>]
  415. ]);
  416.  
  417. recipes.remove(<AncientWarfareAutomation:civic_auto_crafting>);
  418. recipes.addShaped(<AncientWarfareAutomation:civic_auto_crafting>, [
  419. [<ore:plankWood>, <ore:chestWood>, <ore:plankWood>],
  420. [<ore:gearWood>, <ore:craftingTableWood>, <ore:gearWood>],
  421. [<ore:plankWood>, <ore:ingotIron>, <ore:plankWood>]
  422. ]);
  423.  
  424. recipes.remove(<AncientWarfareStructure:drafting_station>);
  425. recipes.addShaped(<AncientWarfareStructure:drafting_station>, [
  426. [<ore:plankWood>, <minecraft:paper>, <ore:plankWood>],
  427. [<ore:gearWood>, <ore:craftingTableWood>, <ore:gearWood>],
  428. [<ore:plankWood>, <ore:stone>, <ore:plankWood>]
  429. ]);
  430.  
  431. recipes.remove(<Railcraft:machine.epsilon:5>);
  432. recipes.addShaped(<Railcraft:machine.epsilon:5>, [
  433. [<minecraft:diamond_pickaxe>, <Railcraft:part.plate>, <minecraft:book>],
  434. [<Railcraft:part.plate>, <ore:craftingTableWood>, <Railcraft:part.plate>],
  435. [<minecraft:piston>, <Railcraft:part.plate>, <minecraft:piston>]
  436. ]);
  437.  
  438. recipes.remove(<BiblioCraft:BiblioWorkbench:6>);
  439. recipes.addShaped(<BiblioCraft:BiblioWorkbench:6>, [
  440. [<ore:dyeBlack>, <ore:craftingTableWood>, <minecraft:feather>],
  441. [<BiblioCraft:item.FramingBoard>, <BiblioCraft:Bibliotheca:*>, <BiblioCraft:item.FramingBoard>],
  442. [<BiblioCraft:item.FramingBoard>, <BiblioCraft:item.FramingBoard>, <BiblioCraft:item.FramingBoard>]
  443. ]);
  444.  
  445. recipes.remove(<Railcraft:machine.alpha:8>);
  446. recipes.addShaped(<Railcraft:machine.alpha:8>, [
  447. [<ore:ingotIron>, <minecraft:piston>, <ore:ingotIron>],
  448. [<minecraft:piston>, <ore:craftingTableWood>, <minecraft:piston>],
  449. [<ore:ingotIron>, <minecraft:piston>, <ore:ingotIron>]
  450. ]);
  451.  
  452. recipes.remove(<OpenBlocks:drawingtable>);
  453. recipes.addShaped(<OpenBlocks:drawingtable>, [
  454. [<OpenBlocks:generic:10>, <OpenBlocks:generic:11>, <OpenBlocks:generic:10>],
  455. [<ore:plankWood>, <ore:craftingTableWood>, <ore:plankWood>],
  456. [<ore:plankWood>, <ore:plankWood>, <ore:plankWood>]
  457. ]);
  458.  
  459. recipes.remove(<AncientWarfare:engineering_station>);
  460. recipes.addShaped(<AncientWarfare:engineering_station>, [
  461. [<ore:ingotIron>, <ore:plankWood>, <ore:ingotIron>],
  462. [<ore:ingotIron>, <ore:craftingTableWood>, <ore:ingotIron>],
  463. [<ore:ingotIron>, <ore:chestWood>, <ore:ingotIron>]
  464. ]);
  465.  
  466. recipes.remove(<AncientWarfare:research_station>);
  467. recipes.addShaped(<AncientWarfare:research_station>, [
  468. [<ore:ingotIron>, <ore:plankWood>, <ore:ingotIron>],
  469. [<ore:ingotGold>, <ore:craftingTableWood>, <ore:ingotGold>],
  470. [<ore:ingotIron>, <ore:chestWood>, <ore:ingotIron>]
  471. ]);
  472.  
  473. recipes.remove(<chisel:upgrade:2>);
  474. recipes.addShaped(<chisel:upgrade:2>, [
  475. [<ore:ingotIron>, <ore:gemEmerald>, <ore:ingotIron>],
  476. [<ore:gemEmerald>, <ore:craftingTableWood>, <ore:gemEmerald>],
  477. [<ore:dustRedstone>, <ore:dustRedstone>, <ore:dustRedstone>]
  478. ]);
  479.  
  480. recipes.remove(<ironbackpacks:condenserUpgrade>);
  481. recipes.addShaped(<ironbackpacks:condenserUpgrade>, [
  482. [<ore:gemLapis>, <ore:blockLapis>, <ore:gemLapis>],
  483. [<ore:craftingTableWood>, <ironbackpacks:upgradeCore>, <ore:craftingTableWood>],
  484. [<ore:dustRedstone>, <ore:blockRedstone>, <ore:dustRedstone>]
  485. ]);
  486.  
  487. recipes.remove(<ironbackpacks:condenserSmallUpgrade>);
  488. recipes.addShaped(<ironbackpacks:condenserSmallUpgrade>, [
  489. [<ore:gemLapis>, <ore:craftingTableWood>, <ore:gemLapis>],
  490. [<ore:craftingTableWood>, <ironbackpacks:upgradeCore>, <ore:craftingTableWood>],
  491. [<ore:dustRedstone>, <ore:craftingTableWood>, <ore:dustRedstone>]
  492. ]);
  493.  
  494. recipes.remove(<ironbackpacks:condenserTinyUpgrade>);
  495. recipes.addShaped(<ironbackpacks:condenserTinyUpgrade>, [
  496. [<ore:gemLapis>, <ore:craftingTableWood>, <ore:gemLapis>],
  497. [<ore:logWood>, <ironbackpacks:upgradeCore>, <ore:logWood>],
  498. [<ore:dustRedstone>, <ore:craftingTableWood>, <ore:dustRedstone>]
  499. ]);
  500.  
  501. recipes.remove(<Mariculture:machines_single:7>);
  502. recipes.addShaped(<Mariculture:machines_single:7>, [
  503. [<ore:logWood>, <ore:logWood>, <ore:logWood>],
  504. [<ore:logWood>, <ore:craftingTableWood>, <ore:logWood>],
  505. [<ore:logWood>, <Mariculture:woods>, <ore:logWood>]
  506. ]);
  507.  
  508. recipes.remove(<ProjRed|Expansion:projectred.expansion.machine2:10>);
  509. recipes.addShaped(<ProjRed|Expansion:projectred.expansion.machine2:10>, [
  510. [<ore:stone>, <ore:stone>, <ore:stone>],
  511. [<ore:plankWood>, <ore:craftingTableWood>, <ore:plankWood>],
  512. [<ore:plankWood>, <ore:chestWood>, <ore:plankWood>]
  513. ]);
  514.  
  515. recipes.remove(<ProjRed|Expansion:projectred.expansion.machine2:11>);
  516. recipes.addShaped(<ProjRed|Expansion:projectred.expansion.machine2:11>, [
  517. [<ore:stone>, <ore:craftingTableWood>, <ore:stone>],
  518. [<ore:ingotIron>, <ore:chestWood>, <ore:ingotIron>],
  519. [<ore:plankWood>, <ore:ingotElectrotineAlloy>, <ore:plankWood>]
  520. ]);
  521.  
  522. recipes.remove(<minefantasy2:MF_CarpenterBench>);
  523. recipes.addShaped(<minefantasy2:MF_CarpenterBench>, [
  524. [<minefantasy2:MF_Com_plank>, <ore:craftingTableWood>, <minefantasy2:MF_Com_plank>],
  525. [<minefantasy2:MF_Com_plank>, null, <minefantasy2:MF_Com_plank>],
  526. [null, null, null]
  527. ]);
  528.  
  529. recipes.remove(<ImmersiveEngineering:woodenDevice:5>);
  530. recipes.addShaped(<ImmersiveEngineering:woodenDevice:5>, [
  531. [<ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>, <ImmersiveEngineering:woodenDecoration:2>],
  532. [<ore:craftingTableWood>, null, <ImmersiveEngineering:woodenDecoration:1>],
  533. [null, null, null]
  534. ]);
  535.  
  536. recipes.remove(<Forestry:factory2:2>);
  537. recipes.addShaped(<Forestry:factory2:2>, [
  538. [<minecraft:book>, null, null],
  539. [<ore:craftingTableWood>, null, null],
  540. [<ore:chestWood>, null, null]
  541. ]);
  542.  
  543. recipes.remove(<Railcraft:cart.work>);
  544. recipes.addShaped(<Railcraft:cart.work>, [
  545. [<ore:craftingTableWood>, null, null],
  546. [<minecraft:minecart>, null, null],
  547. [null, null, null]
  548. ]);
  549.  
  550. recipes.remove(<ganyssurface:workTable>);
  551. recipes.addShapeless(<ganyssurface:workTable>, [<ore:craftingTableWood>, <ore:chestWood>]);
  552.  
  553. #####################
  554. ## Falling Meteors ##
  555. #####################
  556.  
  557. //remove meteor summoners
  558. recipes.remove(<meteors:MeteorSummoner>);
  559. recipes.remove(<meteors:MeteorSummoner:1>);
  560. recipes.remove(<meteors:MeteorSummoner:2>);
  561. recipes.remove(<meteors:MeteorSummoner:3>);
  562. recipes.remove(<meteors:MeteorSummoner:4>);
  563. recipes.remove(<meteors:MeteorSummoner:5>);
  564.  
  565. ##################
  566. ## Cooking Food ##
  567. ##################
  568.  
  569. // This section removes food recipes using the furnace and adds them back using the BB oven. It also removes Pam's recipes that should be cooked and adds them back using the BB oven.
  570.  
  571. //disable Pams oven. Not used at all in the modpack
  572. recipes.remove(<harvestcraft:oven>);
  573. NEI.hide(<harvestcraft:oven>);
  574. NEI.hide(<harvestcraft:ovenon>);
  575.  
  576. //Furnace food removal, add to BB oven
  577. furnace.remove(<harvestcraft:muttoncookedItem>);
  578. Oven.addShapelessRecipe(<harvestcraft:muttoncookedItem>, [<harvestcraft:muttonrawItem>]);
  579.  
  580. furnace.remove(<harvestcraft:calamaricookedItem>);
  581. Oven.addShapelessRecipe(<harvestcraft:calamaricookedItem>, [<harvestcraft:calamarirawItem>]);
  582.  
  583. furnace.remove(<harvestcraft:grilledasparagusItem>);
  584. Oven.addShapelessRecipe(<harvestcraft:grilledasparagusItem>, [<harvestcraft:asparagusItem>]);
  585.  
  586. furnace.remove(<harvestcraft:grilledeggplantItem>);
  587. Oven.addShapelessRecipe(<harvestcraft:grilledeggplantItem>, [<harvestcraft:eggplantItem>]);
  588.  
  589. furnace.remove(<harvestcraft:ricecakeItem>);
  590. Oven.addShapelessRecipe(<harvestcraft:ricecakeItem>, [<harvestcraft:riceItem>]);
  591.  
  592. furnace.remove(<harvestcraft:toastedcoconutItem>);
  593. Oven.addShapelessRecipe(<harvestcraft:toastedcoconutItem>, [<harvestcraft:coconutItem>]);
  594.  
  595. furnace.remove(<harvestcraft:toastItem>);
  596. Oven.addShapelessRecipe(<harvestcraft:toastItem>, [<minecraft:bread>]);
  597.  
  598. furnace.remove(<harvestcraft:roastedpumpkinseedsItem>);
  599. Oven.addShapelessRecipe(<harvestcraft:roastedpumpkinseedsItem>, [<minecraft:pumpkin_seeds>]);
  600.  
  601. furnace.remove(<ganysnether:dimensionalBread>);
  602.  
  603. furnace.remove(<harvestcraft:turtlecookedItem>);
  604. Oven.addShapelessRecipe(<harvestcraft:turtlecookedItem>, [<harvestcraft:turtlerawItem>]);
  605.  
  606. furnace.remove(<minefantasy2:MF2_food_horse_cooked>);
  607. Oven.addShapelessRecipe(<minefantasy2:MF2_food_horse_cooked>, [<minefantasy2:MF2_food_horse_raw>]);
  608.  
  609. furnace.remove(<harvestcraft:crayfishcookedItem>);
  610. Oven.addShapelessRecipe(<harvestcraft:crayfishcookedItem>, [<harvestcraft:crayfishrawItem>]);
  611.  
  612. //Already exists via Pams
  613. furnace.remove(<ganyssurface:cookedEgg>);
  614.  
  615. furnace.remove(<harvestcraft:coffeeItem>);
  616. Oven.addShapelessRecipe(<harvestcraft:coffeeItem>, [<harvestcraft:coffeebeanItem>]);
  617.  
  618. furnace.remove(<harvestcraft:roastedchestnutItem>);
  619. Oven.addShapelessRecipe(<harvestcraft:roastedchestnutItem>, [<harvestcraft:chestnutItem>]);
  620.  
  621. furnace.remove(<harvestcraft:vanillaItem>);
  622. Oven.addShapelessRecipe(<harvestcraft:vanillaItem>, [<harvestcraft:vanillabeanItem>]);
  623.  
  624. furnace.remove(<minefantasy2:MF2_food_saussage_cooked>);
  625. Oven.addShapelessRecipe(<minefantasy2:MF2_food_saussage_cooked>, [<minefantasy2:MF2_food_saussage_raw>]);
  626.  
  627. furnace.remove(<minefantasy2:MF2_food_saussage_cooked>);
  628. Oven.addShapelessRecipe(<minefantasy2:MF2_food_saussage_cooked>, [<minefantasy2:MF2_food_saussage_raw>]);
  629.  
  630. furnace.remove(<Aquaculture:item.loot:5>);
  631. Oven.addShapelessRecipe(<Aquaculture:item.loot:5>, [<Aquaculture:item.loot:2>]);
  632.  
  633.  
  634.  
  635.  
  636. // Shaped/less removal, add to BB oven
  637.  
  638. //Skillet
  639. recipes.remove(<harvestcraft:rainbowcurryItem>);
  640. recipes.remove(<harvestcraft:generaltsochickenItem>);
  641. recipes.remove(<harvestcraft:okracreoleItem>);
  642. recipes.remove(<harvestcraft:veggiestirfryItem>);
  643. recipes.remove(<harvestcraft:coconutshrimpItem>);
  644. recipes.remove(<harvestcraft:hashItem>);
  645. recipes.remove(<harvestcraft:friedriceItem>);
  646. recipes.remove(<harvestcraft:beanburritoItem>);
  647. recipes.remove(<harvestcraft:fishdinnerItem>);
  648. recipes.remove(<harvestcraft:asparagusquicheItem>);
  649. recipes.remove(<harvestcraft:frenchtoastItem>);
  650. recipes.remove(<harvestcraft:wafflesItem>);
  651. recipes.remove(<harvestcraft:friedpecanokraItem>);
  652. recipes.remove(<harvestcraft:salmonpattiesItem>);
  653. recipes.remove(<harvestcraft:fishdinnerItem>);
  654. recipes.remove(<harvestcraft:grilledcheeseItem>);
  655. recipes.remove(<harvestcraft:chickensandwichItem>);
  656. recipes.remove(<harvestcraft:fishsandwichItem>);
  657. recipes.remove(<harvestcraft:potatocakesItem>);
  658. recipes.remove(<harvestcraft:cornbreadItem>);
  659. recipes.remove(<harvestcraft:refriedbeansItem>);
  660. recipes.remove(<harvestcraft:omeletItem>);
  661. recipes.remove(<harvestcraft:hotwingsItem>);
  662. recipes.remove(<harvestcraft:pancakesItem>);
  663. recipes.remove(<harvestcraft:potatoandcheesepirogiItem>);
  664. recipes.remove(<harvestcraft:naanItem>);
  665. recipes.remove(<harvestcraft:fishsandwichItem>);
  666. recipes.remove(<harvestcraft:breadedporkchopItem>);
  667. recipes.remove(<harvestcraft:hamburgerItem>);
  668. recipes.remove(<harvestcraft:tortillaItem>);
  669. recipes.remove(<harvestcraft:bangersandmashItem>);
  670. recipes.remove(<harvestcraft:steakandchipsItem>);
  671. recipes.remove(<harvestcraft:sesamesnapsItem>);
  672. recipes.remove(<harvestcraft:grilledmushroomItem>);
  673. recipes.remove(<harvestcraft:friedeggItem>);
  674.  
  675.  
  676. //Bakeware
  677. recipes.remove(<harvestcraft:brownieItem>);
  678. recipes.remove(<harvestcraft:redvelvetcakeItem>);
  679. recipes.remove(<harvestcraft:chocolatesprinklecakeItem>);
  680. recipes.remove(<harvestcraft:meatpieItem>);
  681. recipes.remove(<harvestcraft:stuffedeggplantItem>);
  682. recipes.remove(<harvestcraft:gingerbreadItem>);
  683. recipes.remove(<harvestcraft:garlicchickenItem>);
  684. recipes.remove(<harvestcraft:chickencelerycasseroleItem>);
  685. recipes.remove(<harvestcraft:zestyzucchiniItem>);
  686. recipes.remove(<harvestcraft:zucchinibakeItem>);
  687. recipes.remove(<harvestcraft:banananutbreadItem>);
  688. recipes.remove(<harvestcraft:jaffaItem>);
  689. recipes.remove(<harvestcraft:sunflowerwheatrollsItem>);
  690. recipes.remove(<harvestcraft:baklavaItem>);
  691. recipes.remove(<harvestcraft:shepardspieItem>);
  692. recipes.remove(<harvestcraft:spicebunItem>);
  693. recipes.remove(<harvestcraft:gingeredrhubarbtartItem>);
  694. recipes.remove(<harvestcraft:fairybreadItem>);
  695. recipes.remove(<harvestcraft:pavlovaItem>);
  696. recipes.remove(<harvestcraft:holidaycakeItem>);
  697. recipes.remove(<harvestcraft:mincepieItem>);
  698. recipes.remove(<harvestcraft:cornishpastyItem>);
  699. recipes.remove(<harvestcraft:cottagepieItem>);
  700. recipes.remove(<harvestcraft:veggiestripsItem>);
  701. recipes.remove(<harvestcraft:yorkshirepuddingItem>);
  702. recipes.remove(<harvestcraft:chickenpotpieItem>);
  703. recipes.remove(<harvestcraft:pizzaItem>);
  704. recipes.remove(<harvestcraft:peanutbuttercookiesItem>);
  705. recipes.remove(<harvestcraft:raisincookiesItem>);
  706. recipes.remove(<harvestcraft:mushroomrisottoItem>);
  707. recipes.remove(<harvestcraft:lemonmeringueItem>);
  708. recipes.remove(<harvestcraft:cheesecakeItem>);
  709. recipes.remove(<harvestcraft:eggplantparmItem>);
  710. recipes.remove(<harvestcraft:sweetpotatopieItem>);
  711. recipes.remove(<harvestcraft:pineappleupsidedowncakeItem>);
  712. recipes.remove(<harvestcraft:pineapplehamItem>);
  713. recipes.remove(<harvestcraft:roastedrootveggiemedleyItem>);
  714. recipes.remove(<harvestcraft:bakedturnipsItem>);
  715. recipes.remove(<harvestcraft:zucchinibreadItem>);
  716. recipes.remove(<harvestcraft:zucchinifriesItem>);
  717. recipes.remove(<harvestcraft:walnutraisinbreadItem>);
  718. recipes.remove(<harvestcraft:fruitcrumbleItem>);
  719. recipes.remove(<harvestcraft:keylimepieItem>);
  720. recipes.remove(<harvestcraft:creamcookieItem>);
  721. recipes.remove(<harvestcraft:honeylemonlambItem>);
  722. recipes.remove(<harvestcraft:pumpkinoatsconesItem>);
  723. recipes.remove(<harvestcraft:ovenroastedcauliflowerItem>);
  724. recipes.remove(<harvestcraft:sweetpotatosouffleItem>);
  725. recipes.remove(<harvestcraft:pecanpieItem>);
  726. recipes.remove(<harvestcraft:timtamItem>);
  727. recipes.remove(<harvestcraft:damperItem>);
  728. recipes.remove(<harvestcraft:spinachpieItem>);
  729. recipes.remove(<harvestcraft:raspberrytrifleItem>);
  730. recipes.remove(<harvestcraft:lambwithmintsauceItem>);
  731. recipes.remove(<harvestcraft:crackerItem>);
  732. recipes.remove(<harvestcraft:applepieItem>);
  733. recipes.remove(<harvestcraft:pumpkinbreadItem>);
  734. recipes.remove(<harvestcraft:carrotcakeItem>);
  735. recipes.remove(<harvestcraft:stuffedmushroomItem>);
  736. recipes.remove(<harvestcraft:bakedhamItem>);
  737. recipes.remove(<harvestcraft:chickenparmasanItem>);
  738. recipes.remove(<harvestcraft:strawberrypieItem>);
  739. recipes.remove(<harvestcraft:stuffedpepperItem>);
  740. recipes.remove(<harvestcraft:chilipoppersItem>);
  741. recipes.remove(<harvestcraft:lemonbarItem>);
  742. recipes.remove(<harvestcraft:lemonchickenItem>);
  743. recipes.remove(<harvestcraft:blueberrypieItem>);
  744. recipes.remove(<harvestcraft:blueberrymuffinItem>);
  745. recipes.remove(<harvestcraft:cherrypieItem>);
  746. recipes.remove(<harvestcraft:bakedbeetsItem>);
  747. recipes.remove(<harvestcraft:gingersnapsItem>);
  748. recipes.remove(<harvestcraft:peachcobblerItem>);
  749. recipes.remove(<harvestcraft:cinnamonrollItem>);
  750. recipes.remove(<harvestcraft:softpretzelItem>);
  751. recipes.remove(<harvestcraft:blackberrycobblerItem>);
  752. recipes.remove(<harvestcraft:raspberrypieItem>);
  753. recipes.remove(<harvestcraft:cranberrybarItem>);
  754. recipes.remove(<harvestcraft:figbarItem>);
  755. recipes.remove(<harvestcraft:datenutbreadItem>);
  756. recipes.remove(<harvestcraft:lamingtonItem>);
  757. recipes.remove(<harvestcraft:chaoscookieItem>);
  758. recipes.remove(<harvestcraft:pumpkinmuffinItem>);
  759. recipes.remove(<harvestcraft:roastchickenItem>);
  760. recipes.remove(<harvestcraft:roastpotatoesItem>);
  761. recipes.remove(<harvestcraft:sundayroastItem>);
  762. recipes.remove(<harvestcraft:croissantItem>);
  763. recipes.remove(<harvestcraft:gooseberrypieItem>);
  764. recipes.remove(<harvestcraft:okrachipsItem>);
  765. recipes.remove(<harvestcraft:chocolaterollItem>);
  766. recipes.remove(<harvestcraft:jamrollItem>);
  767. recipes.remove(<harvestcraft:friesItem>);
  768. recipes.remove(<harvestcraft:fishsticksItem>);
  769. recipes.remove(<harvestcraft:candiedlemonItem>);
  770. recipes.remove(<harvestcraft:stuffedeggplantItem>);
  771. recipes.remove(<harvestcraft:biscuitItem>);
  772. recipes.remove(<harvestcraft:pistachiobakedsalmonItem>);
  773. recipes.remove(<harvestcraft:baconwrappeddatesItem>);
  774. recipes.remove(<harvestcraft:maplecandiedbaconItem>);
  775. recipes.remove(<harvestcraft:chocolatecaramelfudgeItem>);
  776. recipes.remove(<harvestcraft:lavendershortbreadItem>);
  777. recipes.remove(<harvestcraft:cheeseontoastItem>);
  778. recipes.remove(<harvestcraft:toadintheholeItem>);
  779. recipes.remove(<harvestcraft:fishsticksItem>);
  780.  
  781.  
  782.  
  783. //Skillet
  784. Oven.addShapelessRecipe(<harvestcraft:rainbowcurryItem>, [<ore:toolSkillet>, <ore:cropRice>, <ore:flowerRed>, <ore:flowerYellow>, <ore:honeyEqualssugar>, <ore:honeyEqualssugar>, <ore:honeyEqualssugar>, <ore:honeyEqualssugar>]);
  785. Oven.addShapelessRecipe(<harvestcraft:generaltsochickenItem>, [<ore:toolSkillet>, <ore:listAllchickenraw>, <ore:cropBroccoli>, <ore:listAllsugar>, <ore:foodFlour>, <ore:cropChilipepper>, <ore:cropRice>]);
  786. Oven.addShapelessRecipe(<harvestcraft:okracreoleItem>, [<ore:toolSkillet>, <ore:cropOkra>, <ore:cropGarlic>, <ore:cropTomato>, <ore:cropBellpepper>, <ore:cropOnion>, <ore:listAllspice>]);
  787. Oven.addShapelessRecipe(<harvestcraft:veggiestirfryItem>, [<ore:toolSkillet>, <ore:cropBellpepper>, <minecraft:carrot>, <ore:cropRice>, <ore:cropOnion>, <ore:cropBean>]);
  788. Oven.addShapelessRecipe(<harvestcraft:veggiestirfryItem>, [<ore:toolSkillet>, <ore:cropBellpepper>, <minecraft:carrot>, <ore:cropRice>, <ore:cropOnion>, <ore:cropChilipepper>]);
  789. Oven.addShapelessRecipe(<harvestcraft:veggiestirfryItem>, [<ore:toolSkillet>, <ore:cropBellpepper>, <minecraft:carrot>, <ore:cropRice>, <ore:cropOnion>, <ore:listAllmushroom>]);
  790. Oven.addShapelessRecipe(<harvestcraft:veggiestirfryItem>, [<ore:toolSkillet>, <ore:cropBellpepper>, <minecraft:carrot>, <ore:cropRice>, <ore:cropOnion>, <ore:listAllmushroom>]);
  791. Oven.addShapelessRecipe(<harvestcraft:veggiestirfryItem>, [<ore:toolSkillet>, <ore:cropBellpepper>, <minecraft:carrot>, <ore:cropRice>, <ore:cropOnion>, <ore:listAllmushroom>]);
  792. Oven.addShapelessRecipe(<harvestcraft:coconutshrimpItem>, [<ore:toolSkillet>, <ore:cropCoconut>, <ore:listAllegg>, <ore:foodFlour>, <ore:foodShrimpraw>, <ore:foodOliveoil>]);
  793. Oven.addShapelessRecipe(<harvestcraft:coconutshrimpItem>, [<ore:toolSkillet>, <ore:cropCoconut>, <ore:listAllegg>, <ore:foodFlour>, <ore:honeyEqualssugar>, <ore:foodOliveoil>]);
  794. Oven.addShapelessRecipe(<harvestcraft:hashItem>, [<ore:toolSkillet>, <ore:cropOnion>, <ore:listAllbeefcooked>, <minecraft:potato>, <ore:foodKetchup>]);
  795. Oven.addShapelessRecipe(<harvestcraft:friedriceItem>, [<ore:toolSkillet>, <ore:cropRice>, <minecraft:carrot>, <ore:listAllegg>, <ore:cropOnion>]);
  796. Oven.addShapelessRecipe(<harvestcraft:beanburritoItem>, [<ore:toolSkillet>, <ore:cropBean>, <ore:foodTortilla>, <ore:cropRice>, <ore:foodCheese>]);
  797. Oven.addShapelessRecipe(<harvestcraft:fishdinnerItem>, [<ore:toolSkillet>, <ore:cropLemon>, <ore:foodFlour>, <ore:listAllfishraw>, <ore:foodMayo>]);
  798. Oven.addShapelessRecipe(<harvestcraft:asparagusquicheItem>, [<ore:toolSkillet>, <ore:cropAsparagus>, <ore:listAllegg>, <ore:cropOnion>, <ore:foodCheese>]);
  799. Oven.addShapelessRecipe(<harvestcraft:frenchtoastItem>, [<ore:toolSkillet>, <ore:foodGroundcinnamon>, <ore:foodToast>, <ore:listAllsugar>, <ore:listAllegg>]);
  800. Oven.addShapelessRecipe(<harvestcraft:wafflesItem>, [<ore:toolSkillet>, <ore:foodFlour>, <ore:listAllegg>, <ore:listAllmilk>, <ore:foodButter>]);
  801. Oven.addShapelessRecipe(<harvestcraft:friedpecanokraItem>, [<ore:toolSkillet>, <ore:cropOkra>, <ore:cropPecan>, <ore:foodOliveoil>, <ore:foodBlackpepper>]);
  802. Oven.addShapelessRecipe(<harvestcraft:salmonpattiesItem>, [<ore:toolSkillet>, <ore:foodSalmonraw>, <ore:foodToast>, <ore:listAllegg>, <ore:foodOliveoil>]);
  803. Oven.addShapelessRecipe(<harvestcraft:fishdinnerItem>, [<ore:toolSkillet>, <ore:cropLemon>, <ore:foodFlour>, <ore:listAllfishraw>, <ore:foodMayo>]);
  804. Oven.addShapelessRecipe(<harvestcraft:grilledcheeseItem>, [<ore:toolSkillet>, <ore:foodToast>, <ore:foodButter>, <ore:foodCheese>]);
  805. Oven.addShapelessRecipe(<harvestcraft:chickensandwichItem>, [<ore:toolSkillet>, <ore:listAllchickenraw>, <minecraft:bread>, <ore:foodMayo>]);
  806. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:listAllfishraw>, <ore:foodMayo>, <minecraft:bread>]);
  807. Oven.addShapelessRecipe(<harvestcraft:potatocakesItem>, [<ore:toolSkillet>, <ore:cropOnion>, <minecraft:potato>, <ore:foodButter>]);
  808. Oven.addShapelessRecipe(<harvestcraft:cornbreadItem>, [<ore:toolSkillet>, <ore:foodCornmeal>, <ore:listAllegg>, <ore:listAllmilk>]);
  809. Oven.addShapelessRecipe(<harvestcraft:refriedbeansItem>, [<ore:toolSkillet>, <ore:cropBean>, <ore:cropOnion>, <ore:foodButter>]);
  810. Oven.addShapelessRecipe(<harvestcraft:omeletItem>, [<ore:toolSkillet>, <ore:listAllegg>, <ore:cropBellpepper>, <ore:cropOnion>]);
  811. Oven.addShapelessRecipe(<harvestcraft:hotwingsItem>, [<ore:toolSkillet>, <ore:cropChilipepper>, <ore:listAllchickencooked>, <ore:foodButter>]);
  812. Oven.addShapelessRecipe(<harvestcraft:pancakesItem>, [<ore:toolSkillet>, <ore:foodFlour>, <ore:listAllegg>, <ore:listAllmilk>]);
  813. Oven.addShapelessRecipe(<harvestcraft:potatoandcheesepirogiItem>, [<ore:toolSkillet>, <ore:foodDough>, <ore:cropPotato>, <ore:foodCheese>]);
  814. Oven.addShapelessRecipe(<harvestcraft:naanItem>, [<ore:toolSkillet>, <ore:foodDough>, <ore:cropOnion>, <ore:foodOliveoil>]);
  815. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  816. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  817. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  818. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  819. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  820. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  821. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  822. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  823. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  824. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  825. Oven.addShapelessRecipe(<harvestcraft:fishsandwichItem>, [<ore:toolSkillet>, <ore:honeyEqualssugar>, <ore:foodMayo>, <minecraft:bread>]);
  826. Oven.addShapelessRecipe(<harvestcraft:breadedporkchopItem>, [<ore:toolSkillet>, <ore:listAllporkraw>, <ore:foodFlour>]);
  827. Oven.addShapelessRecipe(<harvestcraft:hamburgerItem>, [<ore:toolSkillet>, <ore:listAllbeefraw>, <ore:foodToast>]);
  828. Oven.addShapelessRecipe(<harvestcraft:tortillaItem>, [<ore:toolSkillet>, <ore:foodCornmeal>, <ore:listAllwater>]);
  829. Oven.addShapelessRecipe(<harvestcraft:bangersandmashItem>, [<ore:toolSkillet>, <ore:foodPorksausage>, <ore:foodMashedpotatoes>]);
  830. Oven.addShapelessRecipe(<harvestcraft:steakandchipsItem>, [<ore:toolSkillet>, <ore:listAllbeefraw>, <ore:foodFries>]);
  831. Oven.addShapelessRecipe(<harvestcraft:sesamesnapsItem>, [<ore:toolSkillet>, <ore:cropSesame>, <ore:listAllsugar>]);
  832. Oven.addShapelessRecipe(<harvestcraft:grilledmushroomItem>, [<ore:toolSkillet>, <ore:listAllmushroom>]);
  833. Oven.addShapelessRecipe(<harvestcraft:friedeggItem>, [<ore:toolSkillet>, <ore:listAllegg>]);
  834.  
  835.  
  836. //Bakeware
  837. Oven.addShapelessRecipe(<harvestcraft:applepieItem>, [<ore:toolBakeware>, <ore:cropApple>, <ore:listAllsugar>, <ore:foodDough>]);
  838. Oven.addShapelessRecipe(<harvestcraft:baconwrappeddatesItem>, [<ore:toolBakeware>, <ore:cropDate>, <ore:listAllporkcooked>]);
  839. Oven.addShapelessRecipe(<harvestcraft:bakedbeetsItem>, [<ore:toolBakeware>, <ore:cropBeet>, <ore:foodButter>, <ore:foodBlackpepper>]);
  840. Oven.addShapelessRecipe(<harvestcraft:bakedhamItem>, [<ore:toolBakeware>, <ore:listAllporkraw>, <ore:cropApple>, <ore:listAllsugar>]);
  841. Oven.addShapelessRecipe(<harvestcraft:bakedturnipsItem>, [<ore:toolBakeware>, <ore:cropTurnip>, <ore:foodButter>, <ore:dustSalt>, <ore:foodBlackpepper>]);
  842. Oven.addShapelessRecipe(<harvestcraft:bakedturnipsItem>, [<ore:toolBakeware>, <ore:cropTurnip>, <ore:foodButter>, <ore:foodSalt>, <ore:foodBlackpepper>]);
  843. Oven.addShapelessRecipe(<harvestcraft:bakedturnipsItem>, [<ore:toolBakeware>, <ore:cropTurnip>, <ore:foodButter>, <ore:itemSalt>, <ore:foodBlackpepper>]);
  844. Oven.addShapelessRecipe(<harvestcraft:baklavaItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:cropWalnut>, <ore:cropCinnamon>, <ore:foodButter>, <ore:listAllsugar>]);
  845. Oven.addShapelessRecipe(<harvestcraft:banananutbreadItem>, [<ore:toolBakeware>, <ore:cropBanana>, <ore:foodFlour>, <ore:cropWalnut>, <ore:listAllmilk>, <ore:dustSalt>]);
  846. Oven.addShapelessRecipe(<harvestcraft:banananutbreadItem>, [<ore:toolBakeware>, <ore:cropBanana>, <ore:foodFlour>, <ore:cropWalnut>, <ore:listAllmilk>, <ore:foodSalt>]);
  847. Oven.addShapelessRecipe(<harvestcraft:banananutbreadItem>, [<ore:toolBakeware>, <ore:cropBanana>, <ore:foodFlour>, <ore:cropWalnut>, <ore:listAllmilk>, <ore:itemSalt>]);
  848. Oven.addShapelessRecipe(<harvestcraft:biscuitItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:foodButter>]);
  849. Oven.addShapelessRecipe(<harvestcraft:blackberrycobblerItem>, [<ore:cropBlackberry>, <ore:toolBakeware>, <ore:listAllsugar>, <ore:foodDough>]);
  850. Oven.addShapelessRecipe(<harvestcraft:blueberrymuffinItem>, [<ore:toolBakeware>, <ore:cropBlueberry>, <ore:foodFlour>, <ore:listAllegg>]);
  851. Oven.addShapelessRecipe(<harvestcraft:blueberrypieItem>, [<ore:toolBakeware>, <ore:cropBlueberry>, <ore:foodDough>, <ore:listAllsugar>]);
  852. Oven.addShapelessRecipe(<harvestcraft:brownieItem>, [<ore:toolBakeware>, <ore:cropWalnut>, <ore:foodFlour>, <ore:listAllegg>, <ore:foodButter>, <ore:listAllsugar>, <ore:foodCocoapowder>, <ore:foodVanilla>]);
  853. Oven.addShapelessRecipe(<harvestcraft:candiedlemonItem>, [<ore:toolBakeware>, <ore:cropLemon>, <ore:listAllsugar>]);
  854. Oven.addShapelessRecipe(<harvestcraft:carrotcakeItem>, [<ore:toolBakeware>, <minecraft:carrot>, <ore:listAllsugar>, <ore:foodDough>]);
  855. Oven.addShapelessRecipe(<harvestcraft:chaoscookieItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:foodChocolatebar>, <minecraft:dye:5>]);
  856. Oven.addShapelessRecipe(<harvestcraft:cheesecakeItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:listAllheavycream>, <ore:listAllsugar>, <ore:listAllegg>]);
  857. Oven.addShapelessRecipe(<harvestcraft:cheeseontoastItem>, [<ore:toolBakeware>, <ore:foodToast>, <ore:foodCheese>]);
  858. Oven.addShapelessRecipe(<harvestcraft:cherrypieItem>, [<ore:toolBakeware>, <ore:cropCherry>, <ore:foodDough>, <ore:listAllsugar>]);
  859. Oven.addShapelessRecipe(<harvestcraft:chickencelerycasseroleItem>, [<ore:toolBakeware>, <ore:cropCelery>, <ore:listAllchickenraw>, <ore:cropGarlic>, <minecraft:carrot>, <ore:listAllmushroom>]);
  860. Oven.addShapelessRecipe(<harvestcraft:chickenparmasanItem>, [<ore:toolBakeware>, <ore:listAllchickencooked>, <ore:cropTomato>, <ore:foodCheese>]);
  861. Oven.addShapelessRecipe(<harvestcraft:chickenpotpieItem>, [<ore:toolBakeware>, <ore:listAllchickenraw>, <minecraft:potato>, <minecraft:carrot>, <ore:foodDough>]);
  862. Oven.addShapelessRecipe(<harvestcraft:chilipoppersItem>, [<ore:toolBakeware>, <ore:cropChilipepper>, <ore:foodFlour>, <ore:foodCheese>]);
  863. Oven.addShapelessRecipe(<harvestcraft:chocolatecaramelfudgeItem>, [<ore:toolBakeware>, <ore:foodChocolatebar>, <ore:foodCaramel>]);
  864. Oven.addShapelessRecipe(<harvestcraft:chocolaterollItem>, [<ore:toolBakeware>, <ore:foodChocolatebar>, <ore:foodFlour>, <ore:listAllheavycream>]);
  865. Oven.addShapelessRecipe(<harvestcraft:chocolatesprinklecakeItem>, [<ore:toolBakeware>, <ore:foodCocoapowder>, <ore:listAllsugar>, <ore:foodDough>, <minecraft:dye:1>, <minecraft:dye:2>, <minecraft:dye:11>]);
  866. Oven.addShapelessRecipe(<harvestcraft:cinnamonrollItem>, [<ore:toolBakeware>, <ore:foodGroundcinnamon>, <ore:listAllsugar>, <ore:foodDough>]);
  867. Oven.addShapelessRecipe(<harvestcraft:cornishpastyItem>, [<ore:toolBakeware>, <ore:listAllbeefraw>, <ore:cropPotato>, <ore:foodDough>, <ore:cropRutabaga>, <ore:foodBlackpepper>]);
  868. Oven.addShapelessRecipe(<harvestcraft:cottagepieItem>, [<ore:toolBakeware>, <ore:listAllbeefraw>, <ore:cropPotato>, <ore:cropCarrot>, <ore:foodDough>, <ore:cropPeas>]);
  869. Oven.addShapelessRecipe(<harvestcraft:crackerItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:foodOliveoil>, <ore:foodSalt>, <ore:listAllwater>]);
  870. Oven.addShapelessRecipe(<harvestcraft:cranberrybarItem>, [<ore:toolBakeware>, <ore:cropCranberry>, <ore:listAllsugar>, <ore:foodDough>]);
  871. Oven.addShapelessRecipe(<harvestcraft:creamcookieItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:listAllheavycream>, <ore:listAllsugar>, <ore:foodCocoapowder>]);
  872. Oven.addShapelessRecipe(<harvestcraft:croissantItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:foodButter>, <ore:listAllegg>]);
  873. Oven.addShapelessRecipe(<harvestcraft:damperItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:listAllmilk>, <ore:dustSalt>, <ore:foodButter>]);
  874. Oven.addShapelessRecipe(<harvestcraft:damperItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:listAllmilk>, <ore:foodSalt>, <ore:foodButter>]);
  875. Oven.addShapelessRecipe(<harvestcraft:damperItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:listAllmilk>, <ore:honeyEqualssugar>, <ore:foodButter>]);
  876. Oven.addShapelessRecipe(<harvestcraft:damperItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:listAllmilk>, <ore:itemSalt>, <ore:foodButter>]);
  877. Oven.addShapelessRecipe(<harvestcraft:datenutbreadItem>, [<ore:toolBakeware>, <ore:cropDate>, <ore:foodDough>, <ore:listAllnut>]);
  878. Oven.addShapelessRecipe(<harvestcraft:eggplantparmItem>, [<ore:toolBakeware>, <ore:cropEggplant>, <ore:cropTomato>, <ore:foodPasta>, <ore:foodCheese>]);
  879. Oven.addShapelessRecipe(<harvestcraft:fairybreadItem>, [<ore:toolBakeware>, <minecraft:bread>, <ore:foodButter>, <ore:dyeRed>, <ore:dyeGreen>, <ore:dyeYellow>]);
  880. Oven.addShapelessRecipe(<harvestcraft:figbarItem>, [<ore:toolBakeware>, <ore:cropFig>, <ore:listAllsugar>, <ore:foodDough>]);
  881. Oven.addShapelessRecipe(<harvestcraft:fishsticksItem>, [<ore:toolBakeware>, <ore:listAllfishraw>, <ore:foodFlour>]);
  882. Oven.addShapelessRecipe(<harvestcraft:friesItem>, [<ore:toolBakeware>, <minecraft:potato>, <ore:dustSalt>]);
  883. Oven.addShapelessRecipe(<harvestcraft:friesItem>, [<ore:toolBakeware>, <minecraft:potato>, <ore:foodSalt>]);
  884. Oven.addShapelessRecipe(<harvestcraft:friesItem>, [<ore:toolBakeware>, <minecraft:potato>, <ore:itemSalt>]);
  885. Oven.addShapelessRecipe(<harvestcraft:fruitcrumbleItem>, [<ore:toolBakeware>, <ore:listAllfruit>, <ore:foodGroundcinnamon>, <ore:foodFlour>, <ore:foodButter>]);
  886. Oven.addShapelessRecipe(<harvestcraft:garlicchickenItem>, [<ore:toolBakeware>, <ore:cropGarlic>, <ore:cropGarlic>, <ore:cropGarlic>, <ore:foodOliveoil>, <ore:listAllchickenraw>]);
  887. Oven.addShapelessRecipe(<harvestcraft:gingerbreadItem>, [<ore:toolBakeware>, <ore:cropGinger>, <ore:foodFlour>, <ore:foodButter>, <ore:listAllegg>, <ore:foodGroundcinnamon>]);
  888. Oven.addShapelessRecipe(<harvestcraft:gingeredrhubarbtartItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:cropRhubarb>, <ore:cropGinger>, <ore:listAllsugar>, <ore:listAllegg>]);
  889. Oven.addShapelessRecipe(<harvestcraft:gingersnapsItem>, [<ore:toolBakeware>, <ore:cropGinger>, <ore:foodFlour>, <ore:listAllsugar>]);
  890. Oven.addShapelessRecipe(<harvestcraft:gooseberrypieItem>, [<ore:toolBakeware>, <ore:cropGooseberry>, <ore:listAllsugar>, <ore:foodDough>]);
  891. Oven.addShapelessRecipe(<harvestcraft:holidaycakeItem>, [<ore:toolBakeware>, <ore:listAllegg>, <ore:listAllsugar>, <ore:cropCherry>, <ore:listAllheavycream>, <ore:cropSpiceleaf>]);
  892. Oven.addShapelessRecipe(<harvestcraft:honeylemonlambItem>, [<ore:toolBakeware>, <ore:listAllmuttonraw>, <ore:cropLemon>, <ore:foodMustard>, <ore:dropHoney>]);
  893. Oven.addShapelessRecipe(<harvestcraft:honeylemonlambItem>, [<ore:toolBakeware>, <ore:listAllmuttonraw>, <ore:cropLemon>, <ore:foodMustard>, <ore:foodHoneydrop>]);
  894. Oven.addShapelessRecipe(<harvestcraft:jaffaItem>, [<ore:toolBakeware>, <ore:listAllegg>, <ore:listAllsugar>, <ore:foodFlour>, <ore:foodChocolatebar>, <ore:cropOrange>]);
  895. Oven.addShapelessRecipe(<harvestcraft:jamrollItem>, [<ore:toolBakeware>, <ore:foodChocolatebar>, <ore:foodFlour>, <ore:honeyEqualssugar>]);
  896. Oven.addShapelessRecipe(<harvestcraft:keylimepieItem>, [<ore:toolBakeware>, <ore:cropLime>, <ore:listAllheavycream>, <ore:listAllsugar>, <ore:foodDough>]);
  897. Oven.addShapelessRecipe(<harvestcraft:lambwithmintsauceItem>, [<ore:toolBakeware>, <ore:listAllmuttonraw>, <ore:cropSpiceleaf>, <ore:foodVinegar>, <ore:listAllsugar>]);
  898. Oven.addShapelessRecipe(<harvestcraft:lamingtonItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:foodChocolatebar>, <ore:foodToastedcoconut>]);
  899. Oven.addShapelessRecipe(<harvestcraft:lavendershortbreadItem>, [<ore:toolBakeware>, <ore:dyePurple>, <ore:foodDough>]);
  900. Oven.addShapelessRecipe(<harvestcraft:lemonbarItem>, [<ore:toolBakeware>, <ore:cropLemon>, <ore:foodDough>, <ore:listAllsugar>]);
  901. Oven.addShapelessRecipe(<harvestcraft:lemonchickenItem>, [<ore:toolBakeware>, <ore:cropLemon>, <ore:listAllchickenraw>, <ore:foodButter>]);
  902. Oven.addShapelessRecipe(<harvestcraft:lemonmeringueItem>, [<ore:toolBakeware>, <ore:cropLemon>, <ore:listAllsugar>, <ore:foodDough>, <ore:listAllheavycream>]);
  903. Oven.addShapelessRecipe(<harvestcraft:maplecandiedbaconItem>, [<ore:toolBakeware>, <ore:listAllporkcooked>, <ore:cropMaplesyrup>]);
  904. Oven.addShapelessRecipe(<harvestcraft:meatpieItem>, [<ore:toolBakeware>, <ore:listAllbeefraw>, <ore:foodDough>, <ore:cropOnion>, <ore:cropGarlic>, <ore:foodBlackpepper>, <ore:foodStock>]);
  905. Oven.addShapelessRecipe(<harvestcraft:mincepieItem>, [<ore:toolBakeware>, <ore:listAllbeefcooked>, <ore:listAllfruit>, <ore:listAllnut>, <ore:foodDough>, <ore:foodButter>]);
  906. Oven.addShapelessRecipe(<harvestcraft:mushroomrisottoItem>, [<ore:toolBakeware>, <ore:cropRice>, <ore:listAllmushroom>, <ore:cropOnion>, <ore:foodCheese>]);
  907. Oven.addShapelessRecipe(<harvestcraft:okrachipsItem>, [<ore:toolBakeware>, <ore:cropOkra>, <ore:foodSalt>, <ore:cropSpiceleaf>]);
  908. Oven.addShapelessRecipe(<harvestcraft:ovenroastedcauliflowerItem>, [<ore:toolBakeware>, <ore:cropCauliflower>, <ore:foodOliveoil>, <ore:cropGarlic>, <ore:cropLemon>]);
  909. Oven.addShapelessRecipe(<harvestcraft:pavlovaItem>, [<ore:toolBakeware>, <ore:listAllegg>, <ore:listAllsugar>, <ore:cropLemon>, <ore:listAllheavycream>, <ore:cropStrawberry>]);
  910. Oven.addShapelessRecipe(<harvestcraft:peachcobblerItem>, [<ore:toolBakeware>, <ore:cropPeach>, <ore:listAllsugar>, <ore:foodDough>]);
  911. Oven.addShapelessRecipe(<harvestcraft:peanutbuttercookiesItem>, [<ore:toolBakeware>, <ore:listAllnutbutter>, <ore:foodFlour>, <ore:listAllegg>, <ore:listAllsugar>]);
  912. Oven.addShapelessRecipe(<harvestcraft:pecanpieItem>, [<ore:toolBakeware>, <ore:cropPecan>, <ore:foodDough>, <ore:listAllsugar>, <ore:foodButter>]);
  913. Oven.addShapelessRecipe(<harvestcraft:pineapplehamItem>, [<ore:toolBakeware>, <ore:cropPineapple>, <ore:listAllporkraw>, <ore:cropCherry>, <ore:listAllsugar>]);
  914. Oven.addShapelessRecipe(<harvestcraft:pineappleupsidedowncakeItem>, [<ore:toolBakeware>, <ore:cropPineapple>, <ore:foodDough>, <ore:cropCherry>, <ore:cropWalnut>]);
  915. Oven.addShapelessRecipe(<harvestcraft:pistachiobakedsalmonItem>, [<ore:toolBakeware>, <ore:cropPistachio>, <ore:foodSalmonraw>]);
  916. Oven.addShapelessRecipe(<harvestcraft:pizzaItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:cropTomato>, <ore:foodCheese>, <ore:listAllporkraw>]);
  917. Oven.addShapelessRecipe(<harvestcraft:pumpkinbreadItem>, [<ore:toolBakeware>, <minecraft:pumpkin>, <ore:listAllsugar>, <ore:foodDough>]);
  918. Oven.addShapelessRecipe(<harvestcraft:pumpkinmuffinItem>, [<ore:toolBakeware>, <minecraft:pumpkin>, <ore:foodFlour>, <ore:listAllegg>]);
  919. Oven.addShapelessRecipe(<harvestcraft:pumpkinoatsconesItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:cropOats>, <minecraft:pumpkin>, <ore:foodButter>]);
  920. Oven.addShapelessRecipe(<harvestcraft:raisincookiesItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:listAllegg>, <ore:listAllsugar>, <ore:foodRaisins>]);
  921. Oven.addShapelessRecipe(<harvestcraft:raspberrypieItem>, [<ore:cropRaspberry>, <ore:toolBakeware>, <ore:listAllsugar>, <ore:foodDough>]);
  922. Oven.addShapelessRecipe(<harvestcraft:raspberrytrifleItem>, [<ore:toolBakeware>, <ore:cropRaspberry>, <ore:listAllheavycream>, <ore:foodVanilla>, <ore:foodDough>]);
  923. Oven.addShapelessRecipe(<harvestcraft:redvelvetcakeItem>, [<ore:toolBakeware>, <ore:listAllmilk>, <ore:foodFlour>, <ore:listAllheavycream>, <ore:listAllsugar>, <ore:listAllegg>, <minecraft:dye:1>, <minecraft:dye:1>]);
  924. Oven.addShapelessRecipe(<harvestcraft:roastchickenItem>, [<ore:toolBakeware>, <ore:listAllchickenraw>, <ore:foodSalt>, <ore:foodBlackpepper>]);
  925. Oven.addShapelessRecipe(<harvestcraft:roastedrootveggiemedleyItem>, [<ore:toolBakeware>, <minecraft:potato>, <minecraft:carrot>, <ore:cropOnion>, <ore:cropSpiceleaf>]);
  926. Oven.addShapelessRecipe(<harvestcraft:roastedrootveggiemedleyItem>, [<ore:toolBakeware>, <minecraft:pumpkin>, <minecraft:carrot>, <ore:cropOnion>, <ore:cropSpiceleaf>]);
  927. Oven.addShapelessRecipe(<harvestcraft:roastedrootveggiemedleyItem>, [<ore:toolBakeware>, <ore:cropParsnip>, <minecraft:carrot>, <ore:cropOnion>, <ore:cropSpiceleaf>]);
  928. Oven.addShapelessRecipe(<harvestcraft:roastedrootveggiemedleyItem>, [<ore:toolBakeware>, <ore:cropRadish>, <minecraft:carrot>, <ore:cropOnion>, <ore:cropSpiceleaf>]);
  929. Oven.addShapelessRecipe(<harvestcraft:roastedrootveggiemedleyItem>, [<ore:toolBakeware>, <ore:cropSweetpotato>, <minecraft:carrot>, <ore:cropOnion>, <ore:cropSpiceleaf>]);
  930. Oven.addShapelessRecipe(<harvestcraft:roastedrootveggiemedleyItem>, [<ore:toolBakeware>, <ore:cropTurnip>, <minecraft:carrot>, <ore:cropOnion>, <ore:cropSpiceleaf>]);
  931. Oven.addShapelessRecipe(<harvestcraft:roastpotatoesItem>, [<ore:toolBakeware>, <ore:cropPotato>, <ore:foodSalt>, <ore:foodBlackpepper>]);
  932. Oven.addShapelessRecipe(<harvestcraft:shepardspieItem>, [<ore:toolBakeware>, <ore:listAllmuttonraw>, <minecraft:potato>, <minecraft:carrot>, <ore:foodDough>, <ore:cropPeas>]);
  933. Oven.addShapelessRecipe(<harvestcraft:softpretzelItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:foodButter>, <ore:dustSalt>]);
  934. Oven.addShapelessRecipe(<harvestcraft:softpretzelItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:foodButter>, <ore:foodSalt>]);
  935. Oven.addShapelessRecipe(<harvestcraft:softpretzelItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:foodButter>, <ore:itemSalt>]);
  936. Oven.addShapelessRecipe(<harvestcraft:spicebunItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:listAllmilk>, <ore:foodGroundnutmeg>, <ore:foodGroundcinnamon>, <ore:foodRaisins>]);
  937. Oven.addShapelessRecipe(<harvestcraft:spinachpieItem>, [<ore:toolBakeware>, <ore:foodDough>, <ore:cropSpinach>, <ore:foodCheese>, <ore:foodToast>]);
  938. Oven.addShapelessRecipe(<harvestcraft:strawberrypieItem>, [<ore:toolBakeware>, <ore:cropStrawberry>, <ore:foodDough>, <ore:listAllsugar>]);
  939. Oven.addShapelessRecipe(<harvestcraft:stuffedeggplantItem>, [<ore:toolBakeware>, <ore:cropEggplant>, <ore:cropGarlic>]);
  940. Oven.addShapelessRecipe(<harvestcraft:stuffedeggplantItem>, [<ore:toolBakeware>, <ore:cropEggplant>, <ore:cropOnion>, <ore:cropBellpepper>, <ore:foodButter>, <ore:listAllegg>]);
  941. Oven.addShapelessRecipe(<harvestcraft:stuffedmushroomItem>, [<ore:toolBakeware>, <ore:listAllmushroom>, <ore:foodCheese>, <ore:foodToast>]);
  942. Oven.addShapelessRecipe(<harvestcraft:stuffedpepperItem>, [<ore:toolBakeware>, <ore:cropBellpepper>, <ore:cropTomato>, <ore:cropRice>]);
  943. Oven.addShapelessRecipe(<harvestcraft:sundayroastItem>, [<ore:toolBakeware>, <ore:foodRoastchicken>, <ore:foodRoastpotatoes>, <ore:listAllgreenveggie>]);
  944. Oven.addShapelessRecipe(<harvestcraft:sunflowerwheatrollsItem>, [<ore:toolBakeware>, <ore:cropSunflower>, <ore:foodFlour>, <ore:listAllegg>, <ore:dustSalt>, <ore:foodOliveoil>]);
  945. Oven.addShapelessRecipe(<harvestcraft:sunflowerwheatrollsItem>, [<ore:toolBakeware>, <ore:cropSunflower>, <ore:foodFlour>, <ore:listAllegg>, <ore:foodSalt>, <ore:foodOliveoil>]);
  946. Oven.addShapelessRecipe(<harvestcraft:sunflowerwheatrollsItem>, [<ore:toolBakeware>, <ore:cropSunflower>, <ore:foodFlour>, <ore:listAllegg>, <ore:itemSalt>, <ore:foodOliveoil>]);
  947. Oven.addShapelessRecipe(<harvestcraft:sweetpotatopieItem>, [<ore:toolBakeware>, <ore:cropSweetpotato>, <ore:foodDough>, <ore:foodGroundcinnamon>, <ore:foodMarshmellows>]);
  948. Oven.addShapelessRecipe(<harvestcraft:sweetpotatosouffleItem>, [<ore:toolBakeware>, <ore:cropSweetpotato>, <ore:cropPecan>, <ore:foodDough>, <ore:foodButter>]);
  949. Oven.addShapelessRecipe(<harvestcraft:timtamItem>, [<ore:toolBakeware>, <ore:listAllsugar>, <ore:foodFlour>, <ore:listAllmilk>, <ore:foodChocolatebar>]);
  950. Oven.addShapelessRecipe(<harvestcraft:toadintheholeItem>, [<ore:toolBakeware>, <ore:foodYorkshirepudding>, <ore:foodSausage>]);
  951. Oven.addShapelessRecipe(<harvestcraft:veggiestripsItem>, [<ore:toolBakeware>, <ore:listAllveggie>, <ore:listAllveggie>, <ore:listAllveggie>, <ore:foodSalt>, <ore:listAllspice>]);
  952. Oven.addShapelessRecipe(<harvestcraft:walnutraisinbreadItem>, [<ore:toolBakeware>, <ore:cropWalnut>, <ore:foodRaisins>, <ore:foodDough>, <ore:foodGroundcinnamon>]);
  953. Oven.addShapelessRecipe(<harvestcraft:yorkshirepuddingItem>, [<ore:toolBakeware>, <ore:foodFlour>, <ore:foodSalt>, <ore:foodStock>, <ore:listAllegg>, <ore:listAllmilk>]);
  954. Oven.addShapelessRecipe(<harvestcraft:zestyzucchiniItem>, [<ore:toolBakeware>, <ore:cropZucchini>, <ore:foodPasta>, <ore:cropChilipepper>, <ore:cropGarlic>, <ore:foodCheese>]);
  955. Oven.addShapelessRecipe(<harvestcraft:zucchinibakeItem>, [<ore:toolBakeware>, <ore:cropZucchini>, <ore:cropTomato>, <ore:foodToast>, <ore:cropCorn>, <ore:foodCheese>]);
  956. Oven.addShapelessRecipe(<harvestcraft:zucchinibreadItem>, [<ore:toolBakeware>, <ore:cropZucchini>, <ore:foodDough>, <ore:foodGroundcinnamon>, <ore:cropWalnut>]);
  957. Oven.addShapelessRecipe(<harvestcraft:zucchinifriesItem>, [<ore:toolBakeware>, <ore:cropZucchini>, <ore:foodToast>, <ore:foodCheese>, <ore:listAllegg>]);
  958.  
  959.  
  960.  
  961. ###########
  962. ## Paint ##
  963. ###########
  964.  
  965. //paintbrushes
  966. recipes.remove(<BuildCraft|Core:paintbrush>);
  967. recipes.remove(<OpenBlocks:paintBrush>);
  968. AdvancedCrafting.addRecipe(<OpenBlocks:paintBrush>,[
  969. [null, null, <minecraft:wool>],
  970. [null, <ore:stickWood>, null],
  971. [<ore:stickWood>, null, null]
  972. ]
  973. , [<ore:itemString> *2]);
  974.  
  975. val redbrush = <OpenBlocks:paintBrush>.withTag({color: 11743532});
  976. val limebrush = <OpenBlocks:paintBrush>.withTag({color: 4312372});
  977. val blackbrush = <OpenBlocks:paintBrush>.withTag({color: 1973019});
  978. val lgraybrush = <OpenBlocks:paintBrush>.withTag({color: 11250603});
  979. val lbluebrush = <OpenBlocks:paintBrush>.withTag({color: 6719955});
  980. val yellowbrush = <OpenBlocks:paintBrush>.withTag({color: 14602026});
  981. val bluebrush = <OpenBlocks:paintBrush>.withTag({color: 2437522});
  982. val magentabrush = <OpenBlocks:paintBrush>.withTag({color: 12801229});
  983. val greenbrush = <OpenBlocks:paintBrush>.withTag({color: 3887386});
  984. val whitebrush = <OpenBlocks:paintBrush>.withTag({color: 15790320});
  985. val graybrush = <OpenBlocks:paintBrush>.withTag({color: 4408131});
  986. val pinkbrush = <OpenBlocks:paintBrush>.withTag({color: 14188952});
  987. val cyanbrush = <OpenBlocks:paintBrush>.withTag({color: 2651799});
  988. val orangebrush = <OpenBlocks:paintBrush>.withTag({color: 15435844});
  989. val purplebrush = <OpenBlocks:paintBrush>.withTag({color: 8073150});
  990. val brownbrush = <OpenBlocks:paintBrush>.withTag({color: 5320730});
  991.  
  992. recipes.addShapeless(redbrush, [<OpenBlocks:paintBrush>, <tradewinds:Red Paint Bucket>.anyDamage().transformDamage()]);
  993. recipes.addShapeless(limebrush, [<OpenBlocks:paintBrush>, <tradewinds:Lime Paint Bucket>.anyDamage().transformDamage()]);
  994. recipes.addShapeless(blackbrush, [<OpenBlocks:paintBrush>, <tradewinds:Black Paint Bucket>.anyDamage().transformDamage()]);
  995. recipes.addShapeless(lgraybrush, [<OpenBlocks:paintBrush>, <tradewinds:Light Gray Paint Bucket>.anyDamage().transformDamage()]);
  996. recipes.addShapeless(lbluebrush, [<OpenBlocks:paintBrush>, <tradewinds:Light Blue Paint Bucket>.anyDamage().transformDamage()]);
  997. recipes.addShapeless(yellowbrush, [<OpenBlocks:paintBrush>, <tradewinds:Yellow Paint Bucket>.anyDamage().transformDamage()]);
  998. recipes.addShapeless(bluebrush, [<OpenBlocks:paintBrush>, <tradewinds:Blue Paint Bucket>.anyDamage().transformDamage()]);
  999. recipes.addShapeless(magentabrush, [<OpenBlocks:paintBrush>, <tradewinds:Magenta Paint Bucket>.anyDamage().transformDamage()]);
  1000. recipes.addShapeless(greenbrush, [<OpenBlocks:paintBrush>, <tradewinds:Green Paint Bucket>.anyDamage().transformDamage()]);
  1001. recipes.addShapeless(whitebrush, [<OpenBlocks:paintBrush>, <tradewinds:White Paint Bucket>.anyDamage().transformDamage()]);
  1002. recipes.addShapeless(graybrush, [<OpenBlocks:paintBrush>, <tradewinds:Gray Paint Bucket>.anyDamage().transformDamage()]);
  1003. recipes.addShapeless(pinkbrush, [<OpenBlocks:paintBrush>, <tradewinds:Pink Paint Bucket>.anyDamage().transformDamage()]);
  1004. recipes.addShapeless(cyanbrush, [<OpenBlocks:paintBrush>, <tradewinds:Cyan Paint Bucket>.anyDamage().transformDamage()]);
  1005. recipes.addShapeless(orangebrush, [<OpenBlocks:paintBrush>, <tradewinds:Orange Paint Bucket>.anyDamage().transformDamage()]);
  1006. recipes.addShapeless(purplebrush, [<OpenBlocks:paintBrush>, <tradewinds:Purple Paint Bucket>.anyDamage().transformDamage()]);
  1007. recipes.addShapeless(brownbrush, [<OpenBlocks:paintBrush>, <tradewinds:Brown Paint Bucket>.anyDamage().transformDamage()]);
  1008.  
  1009. //paint buckets
  1010. recipes.addShapeless(<tradewinds:Red Paint Bucket>, [<minecraft:bucket>, <ore:dyeRed>, <ore:paintOil>]);
  1011. recipes.addShapeless(<tradewinds:Lime Paint Bucket>, [<minecraft:bucket>, <ore:dyeLime>, <ore:paintOil>]);
  1012. recipes.addShapeless(<tradewinds:Black Paint Bucket>, [<minecraft:bucket>, <ore:dyeBlack>, <ore:paintOil>]);
  1013. recipes.addShapeless(<tradewinds:Light Gray Paint Bucket>, [<minecraft:bucket>, <ore:dyeLightGray>, <ore:paintOil>]);
  1014. recipes.addShapeless(<tradewinds:Light Blue Paint Bucket>, [<minecraft:bucket>, <ore:dyeLightBlue>, <ore:paintOil>]);
  1015. recipes.addShapeless(<tradewinds:Yellow Paint Bucket>, [<minecraft:bucket>, <ore:dyeYellow>, <ore:paintOil>]);
  1016. recipes.addShapeless(<tradewinds:Blue Paint Bucket>, [<minecraft:bucket>, <ore:dyeBlue>, <ore:paintOil>]);
  1017. recipes.addShapeless(<tradewinds:Magenta Paint Bucket>, [<minecraft:bucket>, <ore:dyeMagenta>, <ore:paintOil>]);
  1018. recipes.addShapeless(<tradewinds:Green Paint Bucket>, [<minecraft:bucket>, <ore:dyeGreen>, <ore:paintOil>]);
  1019. recipes.addShapeless(<tradewinds:White Paint Bucket>, [<minecraft:bucket>, <ore:dyeWhite>, <ore:paintOil>]);
  1020. recipes.addShapeless(<tradewinds:Gray Paint Bucket>, [<minecraft:bucket>, <ore:dyeGray>, <ore:paintOil>]);
  1021. recipes.addShapeless(<tradewinds:Pink Paint Bucket>, [<minecraft:bucket>, <ore:dyePink>, <ore:paintOil>]);
  1022. recipes.addShapeless(<tradewinds:Cyan Paint Bucket>, [<minecraft:bucket>, <ore:dyeCyan>, <ore:paintOil>]);
  1023. recipes.addShapeless(<tradewinds:Orange Paint Bucket>, [<minecraft:bucket>, <ore:dyeOrange>, <ore:paintOil>]);
  1024. recipes.addShapeless(<tradewinds:Purple Paint Bucket>, [<minecraft:bucket>, <ore:dyePurple>, <ore:paintOil>]);
  1025. recipes.addShapeless(<tradewinds:Brown Paint Bucket>, [<minecraft:bucket>, <ore:dyeBrown>, <ore:paintOil>]);
  1026.  
  1027.  
  1028.  
  1029. ##################
  1030. ## Glassblowing ##
  1031. ##################
  1032.  
  1033. recipes.remove(<redgear_brewcraft:RedGear.Brewcraft.Misc:1>);
  1034. recipes.remove(<minecraft:glass_bottle>);
  1035. recipes.remove(<redgear_brewcraft:RedGear.Brewcraft.Misc:2>);
  1036. recipes.remove(<redgear_brewcraft:RedGear.Brewcraft.Misc:3>);
  1037. recipes.remove(<Mariculture:crafting:18>);
  1038. recipes.addShapeless(<tradewinds:SilicateBlend> *4, [<ore:sand>, <tradewinds:SodaAsh>]);
  1039. recipes.addShapeless(<tradewinds:SGlassVialMouldU>, [<minecraft:clay_ball>, <redgear_brewcraft:RedGear.Brewcraft.Misc:1>.reuse()]);
  1040. recipes.addShapeless(<tradewinds:SGlassBottleMouldU>, [<minecraft:clay_ball>, <minecraft:glass_bottle>.reuse()]);
  1041. recipes.addShapeless(<tradewinds:LGlassVialMouldU>, [<minecraft:clay_ball>, <redgear_brewcraft:RedGear.Brewcraft.Misc:2>.reuse()]);
  1042. recipes.addShapeless(<tradewinds:LGlassBottleMouldU>, [<minecraft:clay_ball>, <redgear_brewcraft:RedGear.Brewcraft.Misc:3>.reuse()]);
  1043. recipes.addShapeless(<tradewinds:GlassLensMouldU>, [<minecraft:clay_ball>, <Mariculture:crafting:18>.reuse()]);
  1044. Kiln.addRecipe(<tradewinds:GlassVialSMould>, <tradewinds:SGlassVialMouldU>, 5);
  1045. Kiln.addRecipe(<tradewinds:GlassBottleSMould>, <tradewinds:SGlassBottleMouldU>, 5);
  1046. Kiln.addRecipe(<tradewinds:GlassVialLMould>, <tradewinds:LGlassVialMouldU>, 5);
  1047. Kiln.addRecipe(<tradewinds:GlassBottleLMould>, <tradewinds:LGlassBottleMouldU>, 5);
  1048. Kiln.addRecipe(<tradewinds:GlassLensMould>, <tradewinds:GlassLensMouldU>, 5);
  1049. Kiln.addRecipe(<tradewinds:MoltenGlass>, <tradewinds:SilicateBlend>, 5);
  1050. recipes.addShapeless(<redgear_brewcraft:RedGear.Brewcraft.Misc:1>, [<tradewinds:MoltenGlass>, <tradewinds:GlassBlowPipe>.reuse(), <tradewinds:GlassVialSMould>.anyDamage().transformDamage()]);
  1051. recipes.addShapeless(<minecraft:glass_bottle>, [<tradewinds:MoltenGlass>, <tradewinds:GlassBlowPipe>.reuse(), <tradewinds:GlassBottleSMould>.anyDamage().transformDamage()]);
  1052. recipes.addShapeless(<redgear_brewcraft:RedGear.Brewcraft.Misc:2>, [<tradewinds:MoltenGlass>, <tradewinds:GlassBlowPipe>.reuse(), <tradewinds:GlassVialLMould>.anyDamage().transformDamage()]);
  1053. recipes.addShapeless(<redgear_brewcraft:RedGear.Brewcraft.Misc:3>, [<tradewinds:MoltenGlass>, <tradewinds:GlassBlowPipe>.reuse(), <tradewinds:GlassBottleLMould>.anyDamage().transformDamage()]);
  1054. recipes.addShapeless(<Mariculture:crafting:18>, [<tradewinds:MoltenGlass>, <tradewinds:GlassBlowPipe>.reuse(), <tradewinds:GlassLensMould>.anyDamage().transformDamage()]);
  1055.  
  1056.  
  1057.  
  1058. ####################
  1059. ## Steel Overhaul ##
  1060. ####################
  1061.  
  1062. //Recipe removal
  1063. mods.mariculture.Casting.removeIngotRecipe(<ore:ingotSteel>);
  1064. furnace.remove(<ore:ingotSteel>);
  1065. /* mods.immersiveengineering.ArcFurnace.removeRecipe(<ore:ingotSteel>); */
  1066. mods.immersiveengineering.ArcFurnace.removeRecipe(<ImmersiveEngineering:metal:7>);
  1067. mods.railcraft.BlastFurnace.removeRecipe(<ore:ingotSteel>);
  1068. mods.railcraft.BlastFurnace.removeRecipe(<Railcraft:ingot>);
  1069. mods.immersiveengineering.BlastFurnace.removeRecipe(<ImmersiveEngineering:metal:7>);
  1070. mods.immersiveengineering.BlastFurnace.removeRecipe(<ImmersiveEngineering:storage:7>);
  1071. mods.immersiveengineering.BlastFurnace.removeFuel(<minecraft:coal:1>);
  1072. mods.immersiveengineering.BlastFurnace.removeFuel(<ganyssurface:charcoalBlock>);
  1073. mods.immersiveengineering.BlastFurnace.removeFuel(<Railcraft:fuel.coke>);
  1074. mods.immersiveengineering.BlastFurnace.removeFuel(<ImmersiveEngineering:stoneDevice:3>);
  1075.  
  1076. //Coke
  1077. furnace.remove(<minefantasy2:MF_Com_coke>);
  1078. mods.immersiveengineering.CokeOven.addRecipe(<ImmersiveEngineering:material:6>, 500, <minefantasy2:MF_Com_coal_prep>, 1800);
  1079.  
  1080. //Add recipes
  1081. mods.immersiveengineering.BlastFurnace.addRecipe(<ImmersiveEngineering:metal:7>, <minefantasy2:MF_Com_ingotPigIron>, 1200, <ImmersiveEngineering:material:13>);
  1082. mods.immersiveengineering.BlastFurnace.addFuel(<Railcraft:fuel.coke>, 1200);
  1083. mods.immersiveengineering.BlastFurnace.addFuel(<minefantasy2:MF_Com_coke>, 1200);
  1084. mods.immersiveengineering.BlastFurnace.addFuel(<ImmersiveEngineering:material:6>, 1200);
  1085. mods.immersiveengineering.BlastFurnace.addFuel(<ImmersiveEngineering:stoneDecoration:3>, 12000);
  1086. mods.immersiveengineering.BlastFurnace.addFuel(<Railcraft:cube>, 12000);
  1087. mods.immersiveengineering.BlastFurnace.addRecipe(<minefantasy2:MF_Com_ingotPigIron>, <ore:ingotIron>, 1200, <ImmersiveEngineering:material:13>);
  1088.  
  1089.  
  1090. //Blast Furnaces
  1091. recipes.addShapeless(<minefantasy2:MF_Com_kaolinite>, [<ore:sand>, <minecraft:clay>]);
  1092. recipes.remove(<Railcraft:machine.alpha:12>);
  1093. recipes.remove(<ImmersiveEngineering:stoneDecoration:2>);
  1094. AdvancedCrafting.addRecipe(<ImmersiveEngineering:stoneDecoration:2>,
  1095. [
  1096. [<minefantasy2:MF_Com_fireclay_brick>, <minefantasy2:MF_Com_fireclay_brick>, <minefantasy2:MF_Com_fireclay_brick>],
  1097. [<minefantasy2:MF_Com_fireclay_brick>, <minefantasy2:MF_Com_fireclay_brick>, <minefantasy2:MF_Com_fireclay_brick>],
  1098. [<minefantasy2:MF_Com_fireclay_brick>, <minefantasy2:MF_Com_fireclay_brick>, <minefantasy2:MF_Com_fireclay_brick>]
  1099. ]
  1100. , [<minecraft:clay> *2]);
  1101.  
  1102.  
  1103.  
  1104. #########
  1105. ## YGS ##
  1106. #########
  1107.  
  1108.  
  1109.  
  1110. ####################
  1111. ## Pig Iron fixes ##
  1112. ####################
  1113.  
  1114. //Several recipes are including pig iron in their recipes. This removes them and adds them back
  1115. //Remove
  1116. mods.railcraft.Rolling.removeRecipe(<Railcraft:part.rebar>);
  1117. mods.railcraft.Rolling.removeRecipe(<Railcraft:post:2>);
  1118.  
  1119. //Add
  1120. mods.railcraft.Rolling.addShaped(<Railcraft:part.rebar>, [
  1121. [null, null, <ore:ingotIron>],
  1122. [null, <ore:ingotIron>, null],
  1123. [<ore:ingotIron>, null, null]]);
  1124. mods.railcraft.Rolling.addShaped(<Railcraft:post:2>, [
  1125. [<ore:ingotIron>, <ore:ingotIron>, <ore:ingotIron>],
  1126. [null, <ore:ingotIron>, null],
  1127. [<ore:ingotIron>, <ore:ingotIron>, <ore:ingotIron>]]);
  1128.  
  1129.  
  1130.  
  1131. ################
  1132. ## Iron Chest ##
  1133. ################
  1134.  
  1135. recipes.remove(<IronChest:ironGoldUpgrade>);
  1136. recipes.remove(<IronChest:copperIronUpgrade>);
  1137. recipes.remove(<IronChest:woodIronUpgrade>);
  1138. recipes.remove(<IronChest:goldDiamondUpgrade>);
  1139. recipes.remove(<IronChest:copperSilverUpgrade>);
  1140. recipes.remove(<IronChest:silverGoldUpgrade>);
  1141. recipes.remove(<IronChest:diamondCrystalUpgrade>);
  1142. recipes.remove(<IronChest:woodCopperUpgrade>);
  1143. recipes.remove(<IronChest:diamondObsidianUpgrade>);
  1144. recipes.remove(<IronChest:BlockIronChest>);
  1145. recipes.remove(<IronChest:BlockIronChest:1>);
  1146. recipes.remove(<IronChest:BlockIronChest:2>);
  1147. recipes.remove(<IronChest:BlockIronChest:3>);
  1148. recipes.remove(<IronChest:BlockIronChest:4>);
  1149. recipes.remove(<IronChest:BlockIronChest:5>);
  1150. recipes.remove(<IronChest:BlockIronChest:6>);
  1151.  
  1152.  
  1153.  
  1154. ####################
  1155. ## Stick Overhaul ##
  1156. ####################
  1157.  
  1158. //remove stick and timber recipes
  1159. recipes.remove(<minecraft:stick>);
  1160. recipes.remove(<ore:stickWood>);
  1161.  
  1162. //add
  1163. recipes.addShapeless(<minecraft:stick> * 4, [<betterbeginnings:flintHatchet>.anyDamage().transformDamage(), <minefantasy2:MF_Com_plank>]);
  1164. recipes.addShapeless(<minefantasy2:MF_Com_plank> * 2, [<betterbeginnings:flintHatchet>.anyDamage().transformDamage(), <ore:logWood>]);
  1165. recipes.addShapeless(<minecraft:stick>, [<betterbeginnings:flintHatchet>.anyDamage().transformDamage(), <ore:treeSapling>]);
  1166. recipes.addShapeless(<minecraft:stick>, [<betterbeginnings:flintKnife>.anyDamage(), <ore:treeSapling>]);
  1167. recipes.addShapeless(<minecraft:stick>, [<AgriCraft:cropsItem>]);
  1168. recipes.addShapeless(<minecraft:stick>, [<ore:stickWood>]);
  1169.  
  1170.  
  1171.  
  1172. ##########################
  1173. ## Changed paper recipe ##
  1174. ##########################
  1175.  
  1176. mods.mariculture.Vat.addRecipe(<liquid:water> * 750, <minefantasy2:MF_Com_plank> * 2, <Forestry:woodPulp> * 4, 30);
  1177. recipes.addShaped(<minecraft:paper>, [[<Forestry:woodPulp>, <Forestry:woodPulp>, null], [<Forestry:woodPulp>, <Forestry:woodPulp>, null]]);
  1178. recipes.removeShaped(<minecraft:paper>, [[<minecraft:reeds>, <minecraft:reeds>, <minecraft:reeds>]]);
  1179.  
  1180. //Removes presser recipes that involves steel and bronze
  1181. recipes.removeShaped(<harvestcraft:presser>);
  1182. recipes.addShaped(<harvestcraft:presser>, [[<minecraft:iron_ingot>, <minecraft:piston>, <minecraft:iron_ingot>], [<minecraft:iron_ingot>, null, <minecraft:iron_ingot>], [<minecraft:iron_ingot>, <minecraft:piston>, <minecraft:iron_ingot>]]);
  1183.  
  1184.  
  1185.  
  1186. ################
  1187. ## Misc fixes ##
  1188. ################
  1189.  
  1190. // oreDict sticks crafted into regular MC sticks
  1191.  
  1192.  
  1193.  
  1194. ######################
  1195. ## temp workarounds ##
  1196. ######################
  1197.  
  1198. recipes.addShapeless(<minecraft:sand>, [<ore:sand>]);
  1199. recipes.addShaped(<minecraft:log> * 4, [[<ore:logWood>, <ore:logWood>], [<ore:logWood>, <ore:logWood>]]);
  1200.  
  1201.  
  1202.  
  1203.  
  1204. // End Script
  1205. print("Tradewinds.zs loaded successfully!");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement