welcome back stonecutter

This commit is contained in:
Pyritie 2025-06-09 21:01:09 +01:00
parent 86a35b7386
commit 5be2eb1d99
19 changed files with 44 additions and 17 deletions

View file

@ -1 +1 @@
{"ae2:attunement":{"order":137}}
{"ae2:attunement":{"order":138}}

View file

@ -1 +1 @@
{"ae2:entropy":{"order":138}}
{"ae2:entropy":{"order":139}}

View file

@ -1 +1 @@
{"create:draining":{"order":139}}
{"create:draining":{"order":140}}

View file

@ -1 +1 @@
{"create:spout_filling":{"order":140}}
{"create:spout_filling":{"order":141}}

View file

@ -1 +1 @@
{"domum_ornamentum:architects_cutter":{"order":135}}
{"domum_ornamentum:architects_cutter":{"order":136}}

View file

@ -1 +1 @@
{"emi:info":{"order":143}}
{"emi:info":{"order":144}}

View file

@ -1 +1 @@
{"emi:tag":{"order":144}}
{"emi:tag":{"order":145}}

View file

@ -1 +1 @@
{"exposure:photograph_stacking":{"order":141}}
{"exposure:photograph_stacking":{"order":142}}

View file

@ -1 +1 @@
{"framedblocks:framing_saw":{"order":134}}
{"framedblocks:framing_saw":{"order":135}}

View file

@ -1 +1 @@
{"ftbquests:quest":{"order":142}}
{"ftbquests:quest":{"order":143}}

View file

@ -1 +1 @@
{"greate:block_cutting":{"order":133}}
{"greate:block_cutting":{"order":134}}

View file

@ -1 +1 @@
{"gtceu:programmed_circuit":{"order":136}}
{"gtceu:programmed_circuit":{"order":137}}

View file

@ -0,0 +1 @@
{"minecraft:stonecutting":{"order":133}}

View file

@ -6,9 +6,6 @@
{
"category": "minecraft:brewing"
},
{
"category": "minecraft:stonecutting"
},
{
"category": "minecraft:blasting"
},

View file

@ -1010,4 +1010,22 @@ const registerMinecraftRecipes = (event) => {
.itemOutputs('minecraft:shroomlight')
.duration(200)
.EUt(GTValues.VA[GTValues.ULV])
// Stonecutter
event.shaped('minecraft:stonecutter',
[
' E ',
'CAC',
'BDB'
],
{
A: '#forge:plates/wrought_iron',
B: '#tfc:lumber',
C: '#forge:plates/brass',
D: '#forge:small_gears',
E: '#forge:buzz_saw_heads'
}).id('tfg:shaped/stonecutter');
event.stonecutting('minecraft:smooth_quartz', 'minecraft:quartz_block')
}

View file

@ -689,6 +689,7 @@ function removeMinecraftRecipes(event) {
event.remove({ id: 'minecraft:quartz' })
event.remove({ id: 'minecraft:quartz_from_blasting' })
event.remove({ id: 'minecraft:smooth_quartz' })
//#endregion

View file

@ -422,4 +422,16 @@ const registerSophisticatedBackpacksRecipes = (event) => {
F: '#forge:tools/wrenches',
G: 'gtceu:aluminium_drum',
}).id('tfg:sophisticated_backpacks/shaped/tank_upgrade')
// Stonecutter upgrade
event.shaped('sophisticatedbackpacks:stonecutter_upgrade', [
'ABA',
'CDC',
'ACA'
], {
A: '#forge:rods/steel',
B: 'minecraft:stonecutter',
C: '#forge:plates/steel',
D: 'sophisticatedbackpacks:upgrade_base',
}).id('tfg:sophisticated_backpacks/shaped/stonecutter_upgrade')
}

View file

@ -503,7 +503,6 @@ global.MINECRAFT_DISABLED_ITEMS = [
'minecraft:mud',
'minecraft:netherite_scrap',
'minecraft:suspicious_gravel',
'minecraft:stonecutter',
'minecraft:gravel',
'minecraft:large_fern',
'minecraft:tall_grass',

View file

@ -8,7 +8,6 @@ global.SOPHISTICATED_BACKPACKS_DISABLED_ITEMS = [
'sophisticatedbackpacks:auto_smoking_upgrade',
'sophisticatedbackpacks:blasting_upgrade',
'sophisticatedbackpacks:auto_blasting_upgrade',
'sophisticatedbackpacks:stonecutter_upgrade',
'sophisticatedbackpacks:stack_upgrade_tier_2',
'sophisticatedbackpacks:stack_upgrade_tier_3',
'sophisticatedbackpacks:stack_upgrade_tier_4',