From 53942011c4d4c674f0c252dbe0fb035c9c9feeb8 Mon Sep 17 00:00:00 2001 From: Sollace Date: Mon, 11 Sep 2023 21:15:23 +0100 Subject: [PATCH] Added tree types for the cherry and mango trees --- src/main/resources/data/unicopia/tree_types/cherry.json | 8 ++++++++ src/main/resources/data/unicopia/tree_types/mango.json | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 src/main/resources/data/unicopia/tree_types/cherry.json create mode 100644 src/main/resources/data/unicopia/tree_types/mango.json diff --git a/src/main/resources/data/unicopia/tree_types/cherry.json b/src/main/resources/data/unicopia/tree_types/cherry.json new file mode 100644 index 00000000..cb0c9512 --- /dev/null +++ b/src/main/resources/data/unicopia/tree_types/cherry.json @@ -0,0 +1,8 @@ +{ + "logs": [ "minecraft:cherry_log", "minecraft:cherry_wood" ], + "leaves": [ "minecraft:cherry_leaves" ], + "rarity": 7, + "drops": [ + { "weight": 1, "item": "minecraft:pink_petals" } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/unicopia/tree_types/mango.json b/src/main/resources/data/unicopia/tree_types/mango.json new file mode 100644 index 00000000..51af653f --- /dev/null +++ b/src/main/resources/data/unicopia/tree_types/mango.json @@ -0,0 +1,6 @@ +{ + "logs": [ "minecraft:jungle_log", "minecraft:jungle_wood" ], + "leaves": [ "unicopia:mango_leaves" ], + "wideTrunk": false, + "drops": [] +} \ No newline at end of file