From 99f268fdcf7364e3d13d4ed1382f7cc6785feac5 Mon Sep 17 00:00:00 2001 From: "valerie.exe" <46047188+ItsOnlyValerie@users.noreply.github.com> Date: Wed, 14 Jan 2026 07:57:32 +0000 Subject: [PATCH] Added Compatibility with Cobblemon Added all types of Apricorn trees. Added Saccharine tree. --- .../tree_drops/cobblemon/black_apricorn.json | 104 ++++++++++++++++++ .../tree_drops/cobblemon/blue_apricorn.json | 104 ++++++++++++++++++ .../tree_drops/cobblemon/green_apricorn.json | 104 ++++++++++++++++++ .../tree_drops/cobblemon/pink_apricorn.json | 104 ++++++++++++++++++ .../tree_drops/cobblemon/red_apricorn.json | 104 ++++++++++++++++++ .../tree_drops/cobblemon/saccharine.json | 104 ++++++++++++++++++ .../tree_drops/cobblemon/white_apricorn.json | 104 ++++++++++++++++++ .../tree_drops/cobblemon/yellow_apricorn.json | 104 ++++++++++++++++++ .../recipe/cobblemon/black_apricorn.json | 11 ++ .../recipe/cobblemon/blue_apricorn.json | 11 ++ .../recipe/cobblemon/green_apricorn.json | 11 ++ .../recipe/cobblemon/pink_apricorn.json | 11 ++ .../recipe/cobblemon/red_apricorn.json | 11 ++ .../recipe/cobblemon/saccharine.json | 11 ++ .../recipe/cobblemon/white_apricorn.json | 11 ++ .../recipe/cobblemon/yellow_apricorn.json | 11 ++ 16 files changed, 920 insertions(+) create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/black_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/blue_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/green_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/pink_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/red_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/saccharine.json create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/white_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/yellow_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/black_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/blue_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/green_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/pink_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/red_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/saccharine.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/white_apricorn.json create mode 100644 common/src/main/resources/data/botanytrees/recipe/cobblemon/yellow_apricorn.json diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/black_apricorn.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/black_apricorn.json new file mode 100644 index 0000000..6b73911 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/black_apricorn.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:apricorn_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/black_apricorn_seed" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/apricorn_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/black_apricorn" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon/apricorn_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/blue_apricorn.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/blue_apricorn.json new file mode 100644 index 0000000..1601b64 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/blue_apricorn.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:apricorn_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/blue_apricorn_seed" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/apricorn_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/blue_apricorn" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon/apricorn_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/green_apricorn.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/green_apricorn.json new file mode 100644 index 0000000..bffba46 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/green_apricorn.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:apricorn_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/green_apricorn_seed" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/apricorn_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/green_apricorn" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon/apricorn_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/pink_apricorn.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/pink_apricorn.json new file mode 100644 index 0000000..a097b88 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/pink_apricorn.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:apricorn_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/pink_apricorn_seed" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/apricorn_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/pink_apricorn" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon/apricorn_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/red_apricorn.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/red_apricorn.json new file mode 100644 index 0000000..be4a868 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/red_apricorn.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:apricorn_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/red_apricorn_seed" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/apricorn_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/red_apricorn" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon/apricorn_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/saccharine.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/saccharine.json new file mode 100644 index 0000000..8a6780f --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/saccharine.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:saccharine_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon:saccharine_sapling" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon:saccharine_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "minecraft:honeycomb" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon:saccharine_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/white_apricorn.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/white_apricorn.json new file mode 100644 index 0000000..b1946cf --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/white_apricorn.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:apricorn_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/white_apricorn_seed" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/apricorn_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/white_apricorn" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon/apricorn_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/yellow_apricorn.json b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/yellow_apricorn.json new file mode 100644 index 0000000..2a50258 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/loot_table/tree_drops/cobblemon/yellow_apricorn.json @@ -0,0 +1,104 @@ +{ + "type": "botanypots:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "cobblemon:apricorn_log", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4, + "min": 1 + }, + "function": "minecraft:set_count" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/yellow_apricorn_seed" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/apricorn_log" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.05 + } + ], + "name": "cobblemon/yellow_apricorn" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3, + "min": 1 + }, + "function": "minecraft:set_count" + } + ], + "name": "cobblemon/apricorn_leaves" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "botanytrees:minecraft/oak" +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/black_apricorn.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/black_apricorn.json new file mode 100644 index 0000000..5487779 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/black_apricorn.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:black_apricorn_seed", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/black_apricorn" + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/blue_apricorn.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/blue_apricorn.json new file mode 100644 index 0000000..54b574a --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/blue_apricorn.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:blue_apricorn_seed", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/blue_apricorn" + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/green_apricorn.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/green_apricorn.json new file mode 100644 index 0000000..55c1636 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/green_apricorn.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:green_apricorn_seed", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/green_apricorn" + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/pink_apricorn.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/pink_apricorn.json new file mode 100644 index 0000000..27fc816 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/pink_apricorn.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:pink_apricorn_seed", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/pink_apricorn" + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/red_apricorn.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/red_apricorn.json new file mode 100644 index 0000000..853152f --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/red_apricorn.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:red_apricorn_seed", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/red_apricorn" + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/saccharine.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/saccharine.json new file mode 100644 index 0000000..f7394e9 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/saccharine.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:saccharine_sapling", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/saccharine" + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/white_apricorn.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/white_apricorn.json new file mode 100644 index 0000000..50522c2 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/white_apricorn.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:white_apricorn_seed", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/white_apricorn" + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/botanytrees/recipe/cobblemon/yellow_apricorn.json b/common/src/main/resources/data/botanytrees/recipe/cobblemon/yellow_apricorn.json new file mode 100644 index 0000000..25bddf5 --- /dev/null +++ b/common/src/main/resources/data/botanytrees/recipe/cobblemon/yellow_apricorn.json @@ -0,0 +1,11 @@ +{ + "type": "botanypots:block_derived_crop", + "block": "cobblemon:yellow_apricorn_seed", + "grow_time": 2400, + "drops": [ + { + "type": "botanypots:loot_table", + "table_id": "botanytrees:tree_drops/cobblemon/yellow_apricorn" + } + ] +} \ No newline at end of file