mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-12 16:14:24 +01:00
Added apples and apple seeds to loot tables in wooldland mansions and villages
This commit is contained in:
parent
bea8272873
commit
f468631423
4 changed files with 51 additions and 0 deletions
|
@ -19,6 +19,7 @@ public interface UTags {
|
||||||
TagKey<Item> SHADES = item("shades");
|
TagKey<Item> SHADES = item("shades");
|
||||||
|
|
||||||
TagKey<Item> POLEARMS = item("polearms");
|
TagKey<Item> POLEARMS = item("polearms");
|
||||||
|
TagKey<Item> APPLE_SEEDS = item("apple_seeds");
|
||||||
|
|
||||||
TagKey<Block> FRAGILE = block("fragile");
|
TagKey<Block> FRAGILE = block("fragile");
|
||||||
TagKey<Block> INTERESTING = block("interesting");
|
TagKey<Block> INTERESTING = block("interesting");
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"replace": false,
|
||||||
|
"values": [
|
||||||
|
"unicopia:green_apple_seeds",
|
||||||
|
"unicopia:sweet_apple_seeds",
|
||||||
|
"unicopia:sour_apple_seeds"
|
||||||
|
]
|
||||||
|
}
|
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -37,6 +37,22 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"name": "unicopia:golden_wing"
|
"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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue