Skip to content

Instantly share code, notes, and snippets.

@Davoleo
Last active November 13, 2018 14:25
Show Gist options
  • Save Davoleo/590ea42a1695cee3ec301ec800385b17 to your computer and use it in GitHub Desktop.
Save Davoleo/590ea42a1695cee3ec301ec800385b17 to your computer and use it in GitHub Desktop.
Zenscript recipes for a better AoE gameplay
//Author: Davoleo
//Date: 03/03/2018
//These custom recipes are introduced by [Davoleo - © - 2018] to enhance modpack gameplay
//imports
import mods.ic2.OreWasher;
//Ore dictionary
recipes.addShapeless(<chisel:basaltextra:7>, [<environmentaltech:basalt>, <environmentaltech:basalt>]);
<chisel:basalt:*>.addTooltip(format.black("(Ore dictionary conversion added by D36L)"));
<chisel:basalt1:*>.addTooltip(format.black("(Ore dictionary conversion added by D36L)"));
<chisel:basaltextra:*>.addTooltip(format.black("(Ore dictionary conversion added by D36L)"));
recipes.addShapeless(<immersiveengineering:storage:8> *2, [<basemetals:steel_block>, <basemetals:steel_block>]);
<immersiveengineering:storage:8>.addTooltip(format.darkGray("Ore dictionary conversion added by D36L"));
//cactus
OreWasher.addRecipe([<minecraft:cactus>], <tconstruct:soil:1>, 8000);
<minecraft:cactus>.addTooltip(format.darkGreen("(Washing Recipe created by D36L)"));
//vines
mods.tconstruct.Drying.addRecipe(<minecraft:cactus>, <tconstruct:bow_string>.withTag({Material:"vine"}), 1000);
recipes.addShapeless(<minecraft:vine> * 2, [<tconstruct:bow_string>.withTag({Material:"vine"}), <tconstruct:bow_string>.withTag({Material:"vine"}), <tconstruct:bow_string>.withTag({Material:"vine"}), <tconstruct:bow_string>.withTag({Material:"vine"})]);
<minecraft:vine>.addTooltip(format.darkGreen("(Drying recipe created by D36L)"));
//blue slimes
recipes.addShaped(<tconstruct:edible:1> * 8, [[<minecraft:slime_ball>, <minecraft:slime_ball>, <minecraft:slime_ball>],
[<minecraft:slime_ball>, <minecraft:dye:4>, <minecraft:slime_ball>],
[<minecraft:slime_ball>, <minecraft:slime_ball>, <minecraft:slime_ball>]]);
<tconstruct:edible:1>.addTooltip(format.aqua("(Lapis recipe created by D36L)"));
//bee frames
recipes.addShaped(<morebees:frameMutating:0>,
[[<immersiveengineering:treatedWood:0>, <immersiveengineering:treatedWood:0>, <immersiveengineering:treatedWood:0>],
[<minecraft:soul_sand>, <minecraft:soul_sand>, <minecraft:soul_sand>],
[<immersiveengineering:material:0>, <immersiveengineering:material:0>, <immersiveengineering:material:0>]]);
<morebees:frameMutating:0>.addTooltip(format.darkRed("(Treated wood recipe created by D36L)"));
recipes.addShaped(<forestry:frameProven>,
[[<tconstruct:firewood:0>, <tconstruct:firewood:0>, <tconstruct:firewood:0>],
[<forestry:honeyDrop>, <forestry:frameImpregnated>, <forestry:honeyDrop>],
[<immersiveengineering:material:0>, <immersiveengineering:material:0>, <immersiveengineering:material:0>]]);
<forestry:frameProven>.addTooltip(format.darkRed("(Recipe created by D36L)"));
recipes.addShaped(<forestry:grafterProven>,
[[null, null, <minecraft:prismarine_shard>],
[null, <forestry:grafter>, null],
[<immersiveengineering:material:0>, null, null]]);
<forestry:grafterProven>.addTooltip(format.darkRed("(Recipe created by D36L)"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment