fixed framed pressure plates
This commit is contained in:
parent
11b52b9ec3
commit
54e9155f49
2 changed files with 33 additions and 6 deletions
|
|
@ -12,6 +12,7 @@
|
|||
- Decreased the frequency of caves/canyons so the world looks less 'scarred'. @Pyritie
|
||||
- Added mixer recipe for Sugar Water. @Pyritie
|
||||
- Shroomlights are no longer easily obtainable for permanent lighting pre-LV. @Pyritie
|
||||
- Made pressure plates cheaper. @Pyritie
|
||||
- More quest tweaks and fixes.
|
||||
|
||||
## [0.9.7] - 17.05.2025
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ const registerFramedBlocksRecipes = (event) => {
|
|||
event.shapeless(
|
||||
Item.of('framedblocks:framed_pressure_plate', 1),
|
||||
[
|
||||
'#minecraft:pressure_plates',
|
||||
'#minecraft:wooden_pressure_plates',
|
||||
'framedblocks:framed_cube',
|
||||
]
|
||||
).id('framedblocks:framed_pressure_plate')
|
||||
|
|
@ -70,17 +70,43 @@ const registerFramedBlocksRecipes = (event) => {
|
|||
{
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
tag: "minecraft:pressure_plates"
|
||||
tag: "minecraft:wooden_pressure_plates"
|
||||
}
|
||||
}
|
||||
],
|
||||
material: 1536,
|
||||
material: 6144,
|
||||
result: {
|
||||
item: "framedblocks:framed_pressure_plate"
|
||||
}
|
||||
}).id('framedblocks:framing_saw/framed_pressure_plate')
|
||||
//#endregion
|
||||
|
||||
//#region Framed Pressure Plate
|
||||
event.shapeless(
|
||||
Item.of('framedblocks:framed_stone_pressure_plate', 1),
|
||||
[
|
||||
'#minecraft:stone_pressure_plates',
|
||||
'framedblocks:framed_cube',
|
||||
]
|
||||
).id('framedblocks:framed_stone_pressure_plate')
|
||||
|
||||
event.custom({
|
||||
type: "framedblocks:frame",
|
||||
additives: [
|
||||
{
|
||||
"count": 1,
|
||||
"ingredient": {
|
||||
tag: "minecraft:stone_pressure_plates"
|
||||
}
|
||||
}
|
||||
],
|
||||
material: 6144,
|
||||
result: {
|
||||
item: "framedblocks:framed_stone_pressure_plate"
|
||||
}
|
||||
}).id('framedblocks:framing_saw/framed_stone_pressure_plate')
|
||||
//#endregion
|
||||
|
||||
//#region Framed Gold Pressure Plate
|
||||
event.shaped('framedblocks:framed_gold_pressure_plate', [
|
||||
'AA',
|
||||
|
|
@ -100,7 +126,7 @@ const registerFramedBlocksRecipes = (event) => {
|
|||
}
|
||||
}
|
||||
],
|
||||
material: 1536,
|
||||
material: 6144,
|
||||
result: {
|
||||
item: "framedblocks:framed_gold_pressure_plate"
|
||||
}
|
||||
|
|
@ -112,7 +138,7 @@ const registerFramedBlocksRecipes = (event) => {
|
|||
'AA',
|
||||
'BB'
|
||||
], {
|
||||
A: '#forge:plates/wrought_iron',
|
||||
A: '#forge:plates/iron',
|
||||
B: 'framedblocks:framed_cube'
|
||||
}).id('framedblocks:framed_iron_pressure_plate')
|
||||
|
||||
|
|
@ -126,7 +152,7 @@ const registerFramedBlocksRecipes = (event) => {
|
|||
}
|
||||
}
|
||||
],
|
||||
material: 1536,
|
||||
material: 6144,
|
||||
result: {
|
||||
item: "framedblocks:framed_iron_pressure_plate"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue