This commit is contained in:
attackeight 2024-04-16 01:10:47 +00:00 committed by GitHub
commit 1625bb169a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 46 additions and 2 deletions

View file

@ -3897,6 +3897,7 @@ f7879d404d7a848d818278b4e788f285a9087e63 data/create/recipes/compacting/blaze_ca
ac91109efa5a253f54257904190b80a400ec6d0c data/create/recipes/compacting/diorite_from_flint.json
7657603e95ccf83dd0d4b104635db66e531d092a data/create/recipes/compacting/granite_from_flint.json
739a1d004c4be50cda2d706a64b797f66c3ca9c8 data/create/recipes/compacting/honey.json
6648194b29d4067d51e54e5d5313d71a07990509 data/create/recipes/compacting/ice.json
583cab26b4f5685f036fa146f3b1257815d6d0f1 data/create/recipes/copper_bars_from_ingots_copper_stonecutting.json
8d88353f315f471ae5270b46a2e905c743f8686e data/create/recipes/copper_ladder_from_ingots_copper_stonecutting.json
83d89857a0825a60b7e81499603f5f2bbca88cde data/create/recipes/copper_scaffolding_from_ingots_copper_stonecutting.json

View file

@ -0,0 +1,37 @@
{
"type": "create:compacting",
"ingredients": [
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
},
{
"item": "minecraft:snow_block"
}
],
"results": [
{
"item": "minecraft:ice"
}
]
}

View file

@ -20,4 +20,4 @@
"type": "forge:mod_loaded"
}
]
}
}

View file

@ -42,7 +42,13 @@ public class CompactingRecipeGen extends ProcessingRecipeGen {
.output(AllItems.BLAZE_CAKE_BASE.get(), 1)),
HONEY = create("honey", b -> b.require(AllFluidTags.HONEY.tag, 1000)
.output(Items.HONEY_BLOCK, 1))
.output(Items.HONEY_BLOCK, 1)),
ICE = create("ice", b -> b
.require(Blocks.SNOW_BLOCK).require(Blocks.SNOW_BLOCK).require(Blocks.SNOW_BLOCK)
.require(Blocks.SNOW_BLOCK).require(Blocks.SNOW_BLOCK).require(Blocks.SNOW_BLOCK)
.require(Blocks.SNOW_BLOCK).require(Blocks.SNOW_BLOCK).require(Blocks.SNOW_BLOCK)
.output(Blocks.ICE))
;