Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tweaked RGB Ingot recipe #148

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add slime saplings recipe
ManuCoding11 committed Mar 8, 2022
commit b53cdf30ad86ad599dd55d260ae119b3fd5639c1
24 changes: 24 additions & 0 deletions scripts/tconstruct.zs
Original file line number Diff line number Diff line change
@@ -588,3 +588,27 @@ recipes.addShaped("tconstructController", <tconstruct:smeltery_controller>, [
[<embers:ashen_stone>, <ore:gemHearthWellNetherCrystal>, <embers:ashen_stone>],
[<ore:blockBlackIron>, <cookingforblockheads:toaster>, <ore:blockBlackIron>]
]);

// Slime saplings
recipes.addShaped("slimesapling0", <tconstruct:slime_sapling>, [
[<hwell:shard_o>, <botania:shinyflower:3>, <hwell:shard_o>],
[<ore:slimeballGreen>, <ore:treeSapling>, <ore:slimeballGreen>],
[null, <botania:specialflower>.withTag({type: "narslimmus"}), null]
]);

recipes.addShaped("slimesapling1", <tconstruct:slime_sapling:1>, [
[<hwell:shard_h>, <botania:shinyflower:10>, <hwell:shard_h>],
[<tconstruct:edible:1>, <tconstruct:slime_sapling>, <tconstruct:edible:1>],
[null, <botania:specialflower>.withTag({type: "arcanerose"}), null]
]);

recipes.addShaped("slimesapling2", <tconstruct:slime_sapling:2>, [
[<embers:shard_ember>, <botania:shinyflower:1>, <embers:shard_ember>],
[<tconstruct:edible:2>, <tconstruct:slime_sapling:1>, <tconstruct:edible:2>],
[null, <botania:specialflower>.withTag({type: "thermalily"}), null]
]);

// Slimy dirt
mods.tconstruct.Drying.addRecipe(<tconstruct:slime_dirt>, <tconstruct:soil:1>, 18000);
mods.tconstruct.Drying.addRecipe(<tconstruct:slime_dirt:1>, <tconstruct:soil:2>, 18000);
mods.tconstruct.Drying.addRecipe(<tconstruct:slime_dirt:3>, <tconstruct:soil:5>, 18000);