trials for loot tables of chests

This commit is contained in:
Jottyfan 2023-12-25 22:57:22 +01:00
parent a12beb0d3d
commit 8dd50f73aa
4 changed files with 84 additions and 39 deletions

View File

@ -9,7 +9,7 @@
loader_version=0.15.1
# Mod Properties
mod_version = 1.20.4.4
mod_version = 1.20.4.5
maven_group = de.jottyfan.minecraft
archives_base_name = quickiefabric

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -1,38 +0,0 @@
{
"type": "minecraft:chest",
"pools": [
{
"rolls": 2,
"entries": [
{
"type": "minecraft:item",
"name": "quickiefabric:quickiepowder"
},
{
"type": "minecraft:item",
"name": "quickiefabric:speedpowder"
},
{
"type": "minecraft:item",
"name": "quickiefabric:sulphor"
},
{
"type": "minecraft:item",
"name": "quickiefabric:salpeter"
},
{
"type": "minecraft:item",
"name": "quickiefabric:rotten_flesh_stripes"
},
{
"type": "minecraft:item",
"name": "quickiefabric:quickieingot"
},
{
"type": "minecraft:item",
"name": "quickiefabric:speedingot"
}
]
}
]
}

View File

@ -0,0 +1,83 @@
{
"type": "minecraft:chest",
"pools": [
{
"rolls": {
"min": 1,
"max": 7
},
"entries": [
{
"type": "minecraft:item",
"name": "quickiefabric:quickiepowder",
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.1
}
]
},
{
"type": "minecraft:item",
"name": "quickiefabric:speedpowder",
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.4
}
]
},
{
"type": "minecraft:item",
"name": "quickiefabric:sulphor",
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.6
}
]
},
{
"type": "minecraft:item",
"name": "quickiefabric:salpeter",
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.8
}
]
},
{
"type": "minecraft:item",
"name": "quickiefabric:rotten_flesh_stripes",
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.7
}
]
},
{
"type": "minecraft:item",
"name": "quickiefabric:quickieingot",
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.5
}
]
},
{
"type": "minecraft:item",
"name": "quickiefabric:speedingot",
"conditions": [
{
"condition": "minecraft:random_chance",
"chance": 0.5
}
]
}
]
}
]
}