Added apples and apple seeds to loot tables in wooldland mansions and villages

This commit is contained in:
Sollace 2022-09-26 13:42:26 +02:00
parent bea8272873
commit f468631423
4 changed files with 51 additions and 0 deletions

View file

@ -19,6 +19,7 @@ public interface UTags {
TagKey<Item> SHADES = item("shades");
TagKey<Item> POLEARMS = item("polearms");
TagKey<Item> APPLE_SEEDS = item("apple_seeds");
TagKey<Block> FRAGILE = block("fragile");
TagKey<Block> INTERESTING = block("interesting");

View file

@ -0,0 +1,8 @@
{
"replace": false,
"values": [
"unicopia:green_apple_seeds",
"unicopia:sweet_apple_seeds",
"unicopia:sour_apple_seeds"
]
}

View file

@ -0,0 +1,26 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:tag",
"name": "unicopia:fresh_apples",
"expand": true,
"weight": 1
},
{
"type": "minecraft:tag",
"name": "unicopia:apple_seeds",
"expand": true
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 3.0
}
}
]
}

View file

@ -37,6 +37,22 @@
}
],
"name": "unicopia:golden_wing"
},
{
"type": "minecraft:tag",
"weight": 1,
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 2.0,
"max": 5.0,
"type": "minecraft:uniform"
}
}
],
"expand": true,
"name": "unicopia:fresh_apples"
}
]
}