- Added handcart recipe

- Allowed more blocks to be used as oven, forge, and bloomery insulation
- Fixed lang error with treated wood planks recipe
- Forgot to add fishing net functionality before
This commit is contained in:
Redeix 2025-04-26 02:35:02 -05:00
parent ee55e713b1
commit fba935817e
6 changed files with 175 additions and 50 deletions

View file

@ -400,4 +400,17 @@ const registerRailWaysRecipes = (event) => {
.EUt(16)
.circuit(3)
});
event.shaped('1x railways:handcar', [
'EFE',
'BAA',
'CDC'
], {
A: '#minecraft:wooden_slabs',
B: '#create:seats',
C: 'gtceu:steel_minecart_wheels',
D: 'greate:steel_cogwheel',
E: ChemicalHelper.get(TagPrefix.rodLong, GTMaterials.Steel, 1),
F: ChemicalHelper.get(TagPrefix.spring, GTMaterials.Steel, 1)
}).id('tfg:railways/shaped/handcar')
}