Merge pull request #1565 from MarioSMB/mc1.16/dev

Various recipe fixes and adjustments to improve mod compatibility
This commit is contained in:
PepperCode1 2021-06-19 12:37:24 -07:00 committed by GitHub
commit 1459be7926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 806 additions and 31 deletions

View file

@ -14,7 +14,7 @@ public class PressingRecipeGen extends ProcessingRecipeGen {
SUGAR_CANE = create(() -> Items.SUGAR_CANE, b -> b.output(Items.PAPER)),
PATH = create("path", b -> b.require(Ingredient.fromItems(Items.GRASS_BLOCK, Items.DIRT, Items.PODZOL))
PATH = create("path", b -> b.require(Ingredient.fromItems(Items.GRASS_BLOCK, Items.DIRT))
.output(Items.GRASS_PATH)),
IRON = create("iron_ingot", b -> b.require(I.iron())

View file

@ -0,0 +1,23 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "alexsmobs"
}
],
"type": "create:emptying",
"ingredients": [
{
"item": "alexsmobs:lava_bottle"
}
],
"results": [
{
"item": "minecraft:glass_bottle"
},
{
"fluid": "minecraft:lava",
"amount": 250
}
]
}

View file

@ -0,0 +1,23 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "alexsmobs"
}
],
"type": "create:filling",
"ingredients": [
{
"item": "minecraft:glass_bottle"
},
{
"fluid": "minecraft:lava",
"amount": 250
}
],
"results": [
{
"item": "alexsmobs:lava_bottle"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "atmospheric"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "atmospheric:crustose"
}
]
],
"results": [
{
"item": "atmospheric:crustose_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:amber_moss"
}
]
],
"results": [
{
"item": "betterendforge:amber_moss_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:cave_moss"
}
]
],
"results": [
{
"item": "betterendforge:cave_moss_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:chorus_nylium"
}
]
],
"results": [
{
"item": "betterendforge:chorus_nylium_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:crystal_moss"
}
]
],
"results": [
{
"item": "betterendforge:crystal_moss_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:end_moss"
}
]
],
"results": [
{
"item": "betterendforge:end_moss_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:end_mycelium"
}
]
],
"results": [
{
"item": "betterendforge:end_mycelium_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:jungle_moss"
}
]
],
"results": [
{
"item": "betterendforge:jungle_moss_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:pink_moss"
}
]
],
"results": [
{
"item": "betterendforge:pink_moss_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "betterendforge"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "betterendforge:shadow_grass"
}
]
],
"results": [
{
"item": "betterendforge:shadow_grass_path"
}
]
}

View file

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzier_bees"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzier_bees:buttercup"
}
],
"results": [
{
"item": "minecraft:yellow_dye",
"count": 2
},
{
"item": "minecraft:lime_dye",
"count": 1,
"chance": 0.1
}
],
"processingTime": 50
}

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "buzzier_bees"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:pink_clover"
"item": "buzzier_bees:pink_clover"
}
],
"results": [

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "buzzier_bees"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:white_clover"
"item": "buzzier_bees:white_clover"
}
],
"results": [

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:end_corrock"
}
],
"results": [
{
"item": "endergetic:petrified_end_corrock"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:end_corrock_block"
}
],
"results": [
{
"item": "endergetic:petrified_end_corrock_block"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:end_corrock_crown"
}
],
"results": [
{
"item": "endergetic:petrified_end_corrock_crown"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:nether_corrock"
}
],
"results": [
{
"item": "endergetic:petrified_nether_corrock"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:nether_corrock_block"
}
],
"results": [
{
"item": "endergetic:petrified_nether_corrock_block"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:nether_corrock_crown"
}
],
"results": [
{
"item": "endergetic:petrified_nether_corrock_crown"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:overworld_corrock"
}
],
"results": [
{
"item": "endergetic:petrified_overworld_corrock"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:overworld_corrock_block"
}
],
"results": [
{
"item": "endergetic:petrified_overworld_corrock_block"
}
]
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "endergetic"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "endergetic:overworld_corrock_crown"
}
],
"results": [
{
"item": "endergetic:petrified_overworld_corrock_crown"
}
]
}

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:bird_of_paradise"
"item": "environmental:bird_of_paradise"
}
],
"results": [

View file

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "environmental:blue_delphinium"
}
],
"results": [
{
"item": "minecraft:blue_dye",
"count": 3
},
{
"item": "minecraft:blue_dye",
"count": 1,
"chance": 0.1
}
],
"processingTime": 50
}

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:bluebell"
"item": "environmental:bluebell"
}
],
"results": [

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:cartwheel"
"item": "environmental:cartwheel"
}
],
"results": [

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:jolyce"
"item": "environmental:dianthus"
}
],
"results": [

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:magenta_hibiscus"
"item": "environmental:magenta_hibiscus"
}
],
"results": [

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:orange_hibiscus"
"item": "environmental:orange_hibiscus"
}
],
"results": [

View file

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "environmental:pink_delphinium"
}
],
"results": [
{
"item": "minecraft:pink_dye",
"count": 3
},
{
"item": "minecraft:pink_dye",
"count": 1,
"chance": 0.1
}
],
"processingTime": 50
}

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:pink_hibiscus"
"item": "environmental:pink_hibiscus"
}
],
"results": [

View file

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "environmental:purple_delphinium"
}
],
"results": [
{
"item": "minecraft:purple_dye",
"count": 3
},
{
"item": "minecraft:purple_dye",
"count": 1,
"chance": 0.1
}
],
"processingTime": 50
}

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:purple_hibiscus"
"item": "environmental:purple_hibiscus"
}
],
"results": [

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:red_hibiscus"
"item": "environmental:red_hibiscus"
}
],
"results": [

View file

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "environmental:red_lotus_flower"
}
],
"results": [
{
"item": "minecraft:red_dye",
"count": 2
},
{
"item": "minecraft:red_dye",
"count": 1,
"chance": 0.1
}
],
"processingTime": 50
}

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:violet"
"item": "environmental:violet"
}
],
"results": [

View file

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "environmental:white_delphinium"
}
],
"results": [
{
"item": "minecraft:white_dye",
"count": 3
},
{
"item": "minecraft:white_dye",
"count": 1,
"chance": 0.1
}
],
"processingTime": 50
}

View file

@ -2,22 +2,22 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:columbine"
"item": "environmental:white_lotus_flower"
}
],
"results": [
{
"item": "minecraft:purple_dye",
"item": "minecraft:white_dye",
"count": 2
},
{
"item": "minecraft:white_dye",
"item": "minecraft:lime_dye",
"count": 1,
"chance": 0.1
}

View file

@ -2,13 +2,13 @@
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "buzzierbees"
"modid": "environmental"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "buzzierbees:daybloom"
"item": "environmental:yellow_hibiscus"
}
],
"results": [

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "minecraft:mycelium"
}
]
],
"results": [
{
"item": "environmental:mycelium_path"
}
]
}

View file

@ -0,0 +1,21 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "environmental"
}
],
"type": "create:pressing",
"ingredients": [
[
{
"item": "minecraft:podzol"
}
]
],
"results": [
{
"item": "environmental:podzol_path"
}
]
}

View file

@ -0,0 +1,26 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "neapolitan"
}
],
"type": "create:crushing",
"ingredients": [
{
"item": "minecraft:ice"
}
],
"results": [
{
"item": "neapolitan:ice_cubes",
"count": 3
},
{
"item": "neapolitan:ice_cubes",
"count": 3,
"chance": 0.25
}
],
"processingTime": 100
}

View file

@ -0,0 +1,23 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "neapolitan"
}
],
"type": "create:emptying",
"ingredients": [
{
"item": "neapolitan:milk_bottle"
}
],
"results": [
{
"item": "minecraft:glass_bottle"
},
{
"fluid": "create:milk",
"amount": 250
}
]
}

View file

@ -0,0 +1,23 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "neapolitan"
}
],
"type": "create:filling",
"ingredients": [
{
"item": "minecraft:glass_bottle"
},
{
"fluidTag": "forge:milk",
"amount": 250
}
],
"results": [
{
"item": "neapolitan:milk_bottle"
}
]
}

View file

@ -0,0 +1,29 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "supplementaries"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "supplementaries:flax"
}
],
"results": [
{
"item": "minecraft:string"
},
{
"item": "minecraft:string",
"count": 2,
"chance": 0.25
},
{
"item": "supplementaries:flax_seeds",
"chance": 0.25
}
],
"processingTime": 150
}

View file

@ -0,0 +1,19 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "supplementaries"
}
],
"type": "create:splashing",
"ingredients": [
{
"item": "supplementaries:blackboard"
}
],
"results": [
{
"item": "supplementaries:blackboard"
}
]
}

View file

@ -0,0 +1,30 @@
{
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "tconstruct"
}
],
"type": "create:milling",
"ingredients": [
{
"item": "tconstruct:necrotic_bone"
}
],
"results": [
{
"item": "minecraft:bone_meal",
"count": 3
},
{
"item": "minecraft:black_dye",
"chance": 0.25
},
{
"item": "minecraft:bone_meal",
"count": 3,
"chance": 0.25
}
],
"processingTime": 100
}