-
Notifications
You must be signed in to change notification settings - Fork 20
Unification Config
Relentless edited this page Apr 18, 2023
·
9 revisions
The unify config can be used to configure the the way recipes are unified.
Location: config/almostunified/unify.json
If you don't find the config, make sure you already loaded a world once.
| Key | Description | Example |
|---|---|---|
| modPriorities | List of mods defining the priority order for dominant items. higher = more priority |
["minecraft", "kubejs", "crafttweaker", "create"] |
| stoneStrata | List of stone types used to filter different variants in recipe results. | ["nether", "deepslate", "granite", "diorite", "andesite"] |
| tags | List of tags used for unification. Using {material} inside a tag will work as a placeholder for all materials from the materials list below. |
["forge:nuggets/{material}", "forge:ingots/{material}", "silicon"] |
| materials | List of the materials the {material} placeholder from above is replaced with. | ["iron", "gold", "emerald", "bronze"] |
| priorityOverrides | Override the priority mod for a specific tag. | {"forge:ingots/tin": "mekanism"} |
| ignoredTags | List of tags to ignore for unification. Placeholders like {material} can't be used here. |
["forge:nuggets/copper"] |
| ignoredItems | List of item IDs to ignore for unification. supports regex |
["minecraft:iron_ingot"] |
| ignoredRecipeTypes | List of recipe types to ignore for unification. supports regex |
["minecraft:smelting"] |
| ignoredRecipes | List of recipe IDs to ignore for unification. supports regex |
["minecraft:iron_ingot_from_blasting"] |
| hideJeiRei | Whether items that are no longer in use are automatically hidden from JEI or REI | true or false |
todo
{
"modPriorities": [
"minecraft",
"kubejs",
"crafttweaker",
"create",
"thermal",
"immersiveengineering",
"mekanism"
],
"stoneStrata": [
"stone",
"nether",
"deepslate",
"granite",
"diorite",
"andesite"
],
"tags": [
"forge:nuggets/{material}",
"forge:dusts/{material}",
"forge:gears/{material}",
"forge:gems/{material}",
"forge:ingots/{material}",
"forge:raw_materials/{material}",
"forge:ores/{material}",
"forge:plates/{material}",
"forge:rods/{material}",
"forge:wires/{material}",
"forge:storage_blocks/{material}",
"forge:storage_blocks/raw_{material}"
],
"materials": [
"aeternium",
"aluminum",
"amber",
"apatite",
"bitumen",
"brass",
"bronze",
"charcoal",
"chrome",
"cinnabar",
"coal",
"coal_coke",
"cobalt",
"constantan",
"copper",
"diamond",
"electrum",
"elementium",
"emerald",
"enderium",
"fluorite",
"gold",
"graphite",
"invar",
"iridium",
"iron",
"lapis",
"lead",
"lumium",
"mithril",
"netherite",
"nickel",
"obsidian",
"osmium",
"peridot",
"platinum",
"potassium_nitrate",
"ruby",
"sapphire",
"signalum",
"silver",
"steel",
"sulfur",
"tin",
"tungsten",
"uranium",
"zinc"
],
"priorityOverrides": {},
"ignoredTags": [],
"ignoredItems": [],
"ignoredRecipeTypes": [
"cucumber:shaped_tag"
],
"ignoredRecipes": [],
"itemsHidingJeiRei": true
}{
"modPriorities": [
"minecraft",
"kubejs",
"crafttweaker",
"create",
"thermal",
"immersiveengineering",
"mekanism"
],
"stoneStrata": [
"stone",
"nether",
"deepslate",
"granite",
"diorite",
"andesite"
],
"tags": [
"c:nuggets/{material}",
"c:dusts/{material}",
"c:gears/{material}",
"c:gems/{material}",
"c:ingots/{material}",
"c:raw_materials/{material}",
"c:ores/{material}",
"c:plates/{material}",
"c:rods/{material}",
"c:wires/{material}",
"c:storage_blocks/{material}",
"c:storage_blocks/raw_{material}",
"c:{material}_nuggets",
"c:{material}_dusts",
"c:{material}_gears",
"c:{material}_gems",
"c:{material}_ingots",
"c:{material}_raw_materials",
"c:{material}_ores",
"c:{material}_plates",
"c:{material}_rods",
"c:{material}_wires",
"c:{material}_storage_blocks",
"c:raw_{material}_storage_blocks"
],
"materials": [
"aeternium",
"aluminum",
"amber",
"apatite",
"bitumen",
"brass",
"bronze",
"charcoal",
"chrome",
"cinnabar",
"coal",
"coal_coke",
"cobalt",
"constantan",
"copper",
"diamond",
"electrum",
"elementium",
"emerald",
"enderium",
"fluorite",
"gold",
"graphite",
"invar",
"iridium",
"iron",
"lapis",
"lead",
"lumium",
"mithril",
"netherite",
"nickel",
"obsidian",
"osmium",
"peridot",
"platinum",
"potassium_nitrate",
"ruby",
"sapphire",
"signalum",
"silver",
"steel",
"sulfur",
"tin",
"tungsten",
"uranium",
"zinc"
],
"priorityOverrides": {},
"ignoredTags": [],
"ignoredItems": [],
"ignoredRecipeTypes": [],
"ignoredRecipes": [],
"itemsHidingJeiRei": true
}