changed glowstone dust recipes to need glowstone block instead, so lamps are still relevant until you get to steam power. Also removed eternal candle

This commit is contained in:
Pyritie 2025-04-21 21:55:31 +01:00
parent 24602a46c0
commit f9db4f8c68
6 changed files with 51 additions and 21 deletions

View file

@ -539,4 +539,29 @@ const registerFramedBlocksRecipes = (event) => {
count: 4
}
}).id('framedblocks:framing_saw/framed_lever')
// Glowing cube
event.shapeless(
Item.of('framedblocks:framed_glowing_cube', 1),
[
'framedblocks:framed_cube',
'minecraft:glowstone',
]
).id('framedblocks:framed_glowing_cube')
event.custom({
type: "framedblocks:frame",
additives: [
{
"count": 1,
"ingredient": { item: "minecraft:glowstone" }
}
],
material: 6144,
result: {
item: "framedblocks:framed_glowing_cube",
count: 1
}
}).id('framedblocks:framing_saw/framed_glowing_cube')
}