This commit is contained in:
Jacob Vinding
2025-12-27 00:06:47 +01:00
commit 1c991e905d
1095 changed files with 172738 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{
"defaults": {
"__comment": "You can disable defaults by setting these to false. Do *NOT* try to add additional entries here. You can add additional entries in the custom section.",
"minecraft:cobblestone": true,
"minecraft:gravel": true,
"minecraft:sand": true
},
"custom": {
"__comment": "By default, the chicken stick is limited as to what it can hammer. You can define additional blocks here. Use * as a wildcard for metadata.",
"entries": [
{
"name": "",
"metadata": "*"
}
],
"example": {
"__comment": "This example would allow smooth Stone to be hammered with the Chicken Stick.",
"name": "minecraft:stone",
"metadata": "0"
}
}
}

View File

@@ -0,0 +1,43 @@
{
"defaults": {
"__comment": "You can disable defaults by setting these to false. Do *NOT* try to add additional entries here. You can add additional entries in the custom section.",
"excompressum:compressed_cobblestone": false,
"excompressum:compressed_gravel": false,
"excompressum:compressed_sand": false,
"excompressum:compressed_netherrack": true,
"excompressum:compressed_end_stone": true
},
"custom": {
"__comment": "You can define additional blocks to be hammered by Compressed Hammers here. Use * as a wildcard for metadata. Use prefix ore: in name to query the Ore Dictionary.",
"entries": [
{
"name": "",
"metadata": "*",
"rewards": [
{
"name": "",
"count": 1,
"metadata": "0",
"chance": 1.0,
"luck": 0.0
}
]
}
],
"example": {
"__comment": "This example would allow Obsidian to be hammered into nine diamonds using a Compressed Hammer.",
"name": "minecraft:obsidian",
"metadata": "0",
"rewards": [
{
"__comment": "Chance is a floating point value (1.0 equals 100%). Luck is the multiplier that scales the hammers fortune level, applied to the base chance.",
"name": "minecraft:diamond",
"count": 9,
"metadata": 0,
"chance": 1.0,
"luck": 0.0
}
]
}
}
}

View File

@@ -0,0 +1,69 @@
{
"options": {
"__comment": "These options will affect the auto-generation of sieve rewards for compressed blocks. You can turn the auto-generation off individually in the defaults section.",
"loss for default generated rewards (out of 9)": 2
},
"defaults": {
"__comment": "You can disable defaults by setting these to false. Do *NOT* try to add additional entries here. You can add additional entries in the custom section.",
"excompressum:compressed_gravel": true,
"excompressum:compressed_sand": true,
"excompressum:compressed_dirt": true,
"excompressum:compressed_soul_sand": true,
"excompressum:compressed_dust": true,
"excompressum:compressed_nether_gravel": true,
"excompressum:compressed_ender_gravel": true
},
"custom": {
"__comment": "You can define additional blocks to sift in the Heavy Sieve here. Use * as a wildcard for metadata. Ure ore: prefix in name to query the Ore Dictionary. Mesh Level is only used for Adscensio.",
"entries": [
{
"name": "",
"metadata": "*",
"type": "list",
"rewards": [
{
"name": "",
"metadata": 0,
"count": 1,
"rolls": 1,
"chance": 1.0,
"meshLevel": 1
}
]
},
{
"name": "",
"metadata": "*",
"type": "generate",
"source": "",
"sourceMetadata": "*",
"sourceCount": 9
}
],
"example_generate": {
"__comment": "This example would allow Double Compressed Gravel to be sifted in a Heavy Sieve into 64x the rewards of normal gravel.",
"name": "ExUtils2:CompressedGravel",
"metadata": "1",
"type": "generate",
"source": "minecraft:gravel",
"sourceMetadata": "*",
"sourceCount": 64
},
"example_list": {
"__comment": "This example would allow clay to be sifted in a Heavy Sieve into 6 diamonds.",
"name": "ExUtils2:CompressedGravel",
"metadata": "1",
"type": "list",
"rewards": [
{
"name": "minecraft:diamond",
"metadata": 0,
"count": 6,
"rolls": 2,
"chance": 1.0,
"meshLevel": 1
}
]
}
}
}

View File

@@ -0,0 +1,30 @@
{
"defaults": {
"__comment": "You can disable defaults by setting these to false. Do *NOT* try to add additional entries here. You can add additional entries in the custom section.",
"minecraft:apple": true,
"ore:treeSapling": true,
"ore:treeLeaves": true,
"minecraft:cactus": true,
"minecraft:yellow_flower": true,
"minecraft:red_flower": true,
"ore:listAllfruit": true
},
"custom": {
"__comment": "You can define additional items to melt in the Wooden Crucible here. Use * as a wildcard for metadata. Use ore: prefix in name to query the Ore Dictionary. Metadata is ignored for Ore Dictionary entries.",
"entries": [
{
"name": "",
"metadata": "*",
"fluid": "water",
"amount": 0
}
]
},
"example": {
"__comment": "This example would allow fish to be melted into 100mb of water.",
"name": "minecraft:fish",
"metadata": "0",
"fluid": "water",
"amount": 100
}
}