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

Changing Shaped Recipes to remove gaps to make automated crafting easier early game #591

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 11 additions & 0 deletions kubejs/server_scripts/base/mods/botania.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,15 @@ if (feature('Reduce mana price of manasteel')) {
removeRecipe({ id: 'botania:mana_infusion/manasteel_block' })
addInfusion('botania:manasteel_ingot', '#forge:ingots/iron', 1000)
addInfusion('botania:manasteel_block', '#forge:storage_blocks/iron', 9000)
}

if (feature('Handled shears')) {
removeRecipe({id:'botania:manasteel_shears'})
addShaped('botania:manasteel_shears', ['rm','mr'], { r: '#forge:rods', m: 'botania:manasteel_ingot' })
}

if (feature('Straighten livingwood twig')) {
removeRecipe({input:'botania:livingwood_log',output:'minecraft:stick'})
removeRecipe({id:'botania:livingwood_twig'})
addShaped('botania:livingwood_twig', ['l','l'], { l: 'botania:livingwood_log' })
}
4 changes: 4 additions & 0 deletions kubejs/server_scripts/base/mods/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,3 +301,7 @@ if (feature('Remove tree fertilizer')){
removeItem('create:tree_fertilizer')
}

if (feature('Straighten Minecart Couplings')) {
removeRecipe('create:crafting/curiosities/minecart_coupling')
addShaped('create:minecart_coupling', ['apa'], { a: 'create:andesite_alloy', p: 'create:iron_sheet' })
}
20 changes: 20 additions & 0 deletions kubejs/server_scripts/base/mods/minecraft.js
Original file line number Diff line number Diff line change
Expand Up @@ -545,4 +545,24 @@ if (feature('Water from kelp and seagrass')) {
if (feature('Replace bucket recipe with assembler recipe')) {
removeRecipe({id:'minecraft:bucket'})
addStonecutting('bucket', '#forge:ingots/iron')
}

if (feature('Handled shears')) {
removeRecipe({id:'minecraft:shears'})
addShaped('minecraft:shears', ['ri','ir'], { r: '#forge:rods', i: '#forge:ingots/iron' })
}

if (feature('Replace bottle recipe with assembler recipe')) {
removeRecipe({id:'minecraft:glass_bottle'})
addStonecutting('minecraft:glass_bottle', 'minecraft:glass')
}

if (feature('New lead recipe')) {
removeRecipe({id:'minecraft:lead'})
addShaped('minecraft:lead', ['s ','ss'], { s: 'minecraft:string'})
addShaped('minecraft:lead', ['s ','ss'], { s: 'ae2:silicon'})
}

if (feature('Alternate Bottle Recipe')) {
addDeploying(['minecraft:glass_bottle'],'minecraft:glass','#minecraft:buttons')
}
5 changes: 5 additions & 0 deletions kubejs/server_scripts/base/mods/supplementaries.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ if (feature("Remove bamboo spikes")) {
removeItem("supplementaries:bamboo_spikes");
removeItem("supplementaries:bamboo_spikes_tipped");
}

if (feature("No gaps in wrench recipe")) {
removeRecipe({id:"supplementaries:wrench"})
addShaped("supplementaries:wrench", ["ini"," i "," i "], { i: "minecraft:copper_ingot", n: "create:copper_nugget"})
}
Loading