Fix Buzzier Bees compatibility and move the old flowers to Environmental compatibility

This commit is contained in:
Mario 2021-05-07 18:20:53 +10:00
parent 25f9095b25
commit 64baf8216c
20 changed files with 186 additions and 30 deletions

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": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "buzzier_bees"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:pink_clover" "item": "buzzier_bees:pink_clover"
} }
], ],
"results": [ "results": [

View file

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

View file

@ -2,13 +2,13 @@
"conditions": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:bird_of_paradise" "item": "environmental:bird_of_paradise"
} }
], ],
"results": [ "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": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:bluebell" "item": "environmental:bluebell"
} }
], ],
"results": [ "results": [

View file

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

View file

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

View file

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

View file

@ -2,13 +2,13 @@
"conditions": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:orange_hibiscus" "item": "environmental:orange_hibiscus"
} }
], ],
"results": [ "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": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:pink_hibiscus" "item": "environmental:pink_hibiscus"
} }
], ],
"results": [ "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": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:purple_hibiscus" "item": "environmental:purple_hibiscus"
} }
], ],
"results": [ "results": [

View file

@ -2,13 +2,13 @@
"conditions": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:red_hibiscus" "item": "environmental:red_hibiscus"
} }
], ],
"results": [ "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": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:violet" "item": "environmental:violet"
} }
], ],
"results": [ "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": [ "conditions": [
{ {
"type": "forge:mod_loaded", "type": "forge:mod_loaded",
"modid": "buzzierbees" "modid": "environmental"
} }
], ],
"type": "create:milling", "type": "create:milling",
"ingredients": [ "ingredients": [
{ {
"item": "buzzierbees:columbine" "item": "environmental:white_lotus_flower"
} }
], ],
"results": [ "results": [
{ {
"item": "minecraft:purple_dye", "item": "minecraft:white_dye",
"count": 2 "count": 2
}, },
{ {
"item": "minecraft:white_dye", "item": "minecraft:lime_dye",
"count": 1, "count": 1,
"chance": 0.1 "chance": 0.1
} }

View file

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