welcome back stonecutter
This commit is contained in:
parent
86a35b7386
commit
5be2eb1d99
19 changed files with 44 additions and 17 deletions
|
|
@ -1 +1 @@
|
|||
{"ae2:attunement":{"order":137}}
|
||||
{"ae2:attunement":{"order":138}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"ae2:entropy":{"order":138}}
|
||||
{"ae2:entropy":{"order":139}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"create:draining":{"order":139}}
|
||||
{"create:draining":{"order":140}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"create:spout_filling":{"order":140}}
|
||||
{"create:spout_filling":{"order":141}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"domum_ornamentum:architects_cutter":{"order":135}}
|
||||
{"domum_ornamentum:architects_cutter":{"order":136}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"emi:info":{"order":143}}
|
||||
{"emi:info":{"order":144}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"emi:tag":{"order":144}}
|
||||
{"emi:tag":{"order":145}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"exposure:photograph_stacking":{"order":141}}
|
||||
{"exposure:photograph_stacking":{"order":142}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"framedblocks:framing_saw":{"order":134}}
|
||||
{"framedblocks:framing_saw":{"order":135}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"ftbquests:quest":{"order":142}}
|
||||
{"ftbquests:quest":{"order":143}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"greate:block_cutting":{"order":133}}
|
||||
{"greate:block_cutting":{"order":134}}
|
||||
|
|
@ -1 +1 @@
|
|||
{"gtceu:programmed_circuit":{"order":136}}
|
||||
{"gtceu:programmed_circuit":{"order":137}}
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"minecraft:stonecutting":{"order":133}}
|
||||
|
|
@ -6,9 +6,6 @@
|
|||
{
|
||||
"category": "minecraft:brewing"
|
||||
},
|
||||
{
|
||||
"category": "minecraft:stonecutting"
|
||||
},
|
||||
{
|
||||
"category": "minecraft:blasting"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
}
|
||||
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue