Add Ice Compacting Recipe and runData

This commit is contained in:
attack8 2024-03-18 16:16:08 -04:00
parent f551107e6d
commit 612f9f5efa
4 changed files with 47 additions and 3 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
@ -5012,7 +5013,7 @@ e6aa8895186358e9d069f5a99909132be49f3bf1 data/create/recipes/diorite_from_stone_
a90268d38f976327ff5e1b87ff1d72ca2d1ebad6 data/create/recipes/dripstone_block_from_stone_types_dripstone_stonecutting.json
27d9bf05a610447e90314e658dbbcd191f378fc9 data/create/recipes/dripstone_pillar_from_stone_types_dripstone_stonecutting.json
d81ceba2946286d374801e698a4ca2116395cbad data/create/recipes/emptying/builders_tea.json
318ab703224ff1d6f7200675e1e0a4c138b28456 data/create/recipes/emptying/compat/alexsmobs/lava_bottle.json
d62f4682fe6cc61df5a1c0231a2004a4ee78a329 data/create/recipes/emptying/compat/alexsmobs/lava_bottle.json
c26d003e921720308c05ad7b9f3cb57de94a10a8 data/create/recipes/emptying/compat/farmersdelight/milk_bottle.json
60c0edfb5b759e4f13427b631861f503f8552923 data/create/recipes/emptying/compat/neapolitan/milk_bottle.json
20b7c7c62fa2e33199e08188dd8836844a6d9cfd data/create/recipes/emptying/honey_bottle.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

@ -16,7 +16,7 @@
],
"conditions": [
{
"modid": "atmospheric",
"modid": "alexsmobs",
"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))
;