mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-10 12:33:57 +01:00
Merge pull request #6281 from Attack8/mc1.18/snowtoice
Add Ice Compacting Recipe and runData
This commit is contained in:
commit
f6dfe7d688
@ -3901,6 +3901,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
|
||||
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
@ -20,4 +20,4 @@
|
||||
"type": "forge:mod_loaded"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -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))
|
||||
|
||||
;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user