mushroom blocks now drop way less mushroom
This commit is contained in:
parent
2d5ac8f982
commit
553c3a9702
4 changed files with 23 additions and 2 deletions
|
|
@ -10,6 +10,7 @@
|
|||
- Changed pineapple yarn recipe from assembler to wiremill & coiling machine, like the other strings (#1162) @Pyritie
|
||||
- Lowered durability of wooden tongs @Pyritie
|
||||
- Streamlined the Metallurgy Age quest chapter a bit @Pyritie
|
||||
- Mushroom blocks now drop way less mushroom @Pyritie
|
||||
|
||||
## [0.9.11] - 13.06.2025
|
||||
### New features
|
||||
|
|
|
|||
|
|
@ -7,12 +7,16 @@
|
|||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "minecraft:brown_mushroom_block"
|
||||
"name": "minecraft:brown_mushroom"
|
||||
}
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
},
|
||||
{
|
||||
"condition": "minecraft:random_chance",
|
||||
"chance": 0.25
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,12 +7,16 @@
|
|||
"entries": [
|
||||
{
|
||||
"type": "minecraft:item",
|
||||
"name": "minecraft:red_mushroom_block"
|
||||
"name": "minecraft:red_mushroom"
|
||||
}
|
||||
],
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:survives_explosion"
|
||||
},
|
||||
{
|
||||
"condition": "minecraft:random_chance",
|
||||
"chance": 0.25
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -997,6 +997,18 @@ const registerMinecraftRecipes = (event) => {
|
|||
event.shapeless('4x minecraft:brown_mushroom', ['minecraft:brown_mushroom_block', '#forge:tools/knives'])
|
||||
.id('tfg:shapeless/cut_brown_mushroom_block')
|
||||
|
||||
event.recipes.gtceu.compressor('tfg:red_mushroom')
|
||||
.itemInputs('4x minecraft:red_mushroom')
|
||||
.itemOutputs('minecraft:red_mushroom_block')
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.compressor('tfg:brown_mushroom')
|
||||
.itemInputs('4x minecraft:brown_mushroom')
|
||||
.itemOutputs('minecraft:brown_mushroom_block')
|
||||
.duration(20)
|
||||
.EUt(GTValues.VA[GTValues.ULV])
|
||||
|
||||
event.recipes.gtceu.chemical_bath('tfg:red_mushroom_to_shroomlight')
|
||||
.itemInputs('minecraft:red_mushroom_block')
|
||||
.inputFluids(Fluid.of('gtceu:glowstone', 144))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue