yay! tofu works maybe
This commit is contained in:
parent
dcd5a9437a
commit
7e6c9c3e42
11 changed files with 239 additions and 1 deletions
35
config/almostunified/duplicates.json
Normal file
35
config/almostunified/duplicates.json
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"ignored_recipe_types": [
|
||||
"cucumber:shaped_tag"
|
||||
],
|
||||
"ignored_recipe_ids": [],
|
||||
"default_duplicate_rules": {
|
||||
"ignored_fields": [
|
||||
"neoforge:conditions",
|
||||
"show_notification",
|
||||
"category",
|
||||
"group"
|
||||
],
|
||||
"rules": {
|
||||
"cookingtime": "HigherRule",
|
||||
"energy": "HigherRule",
|
||||
"experience": "HigherRule"
|
||||
},
|
||||
"handle_implicit_counts": false
|
||||
},
|
||||
"override_duplicate_rules": {
|
||||
"minecraft:crafting_shaped": {
|
||||
"ignored_fields": [
|
||||
"neoforge:conditions",
|
||||
"pattern",
|
||||
"show_notification",
|
||||
"category",
|
||||
"key",
|
||||
"group"
|
||||
],
|
||||
"rules": {},
|
||||
"handle_implicit_counts": false
|
||||
}
|
||||
},
|
||||
"compare_all": false
|
||||
}
|
49
config/almostunified/placeholders.json
Normal file
49
config/almostunified/placeholders.json
Normal file
|
@ -0,0 +1,49 @@
|
|||
{
|
||||
"material": [
|
||||
"aeternium",
|
||||
"aluminum",
|
||||
"amber",
|
||||
"apatite",
|
||||
"bitumen",
|
||||
"brass",
|
||||
"bronze",
|
||||
"chrome",
|
||||
"cinnabar",
|
||||
"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",
|
||||
"salt",
|
||||
"sapphire",
|
||||
"signalum",
|
||||
"silver",
|
||||
"steel",
|
||||
"sulfur",
|
||||
"tin",
|
||||
"tungsten",
|
||||
"uranium",
|
||||
"zinc"
|
||||
]
|
||||
}
|
18
config/almostunified/tags.json
Normal file
18
config/almostunified/tags.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"custom_tags": {
|
||||
"c:butter": ["farmersexpanse:butter"],
|
||||
"c:butter_compat": ["farmersexpanse:butter"],
|
||||
"c:frosting_ingredients": ["farmersexpanse:butter"],
|
||||
|
||||
"c:salt": ["farmersexpanse:salt", "expandeddelight:salt"],
|
||||
"c:salt_compat": ["vegandelight:salt", "farmersexpanse:salt", "expandeddelight:salt"],
|
||||
"c:dusts": ["farmersexpanse:salt", "createfood:salt", "vegandelight:salt"],
|
||||
"c:dusts/salt": ["farmersexpanse:salt", "createfood:salt", "vegandelight:salt"]
|
||||
},
|
||||
"tag_substitutions": {},
|
||||
"item_tag_inheritance_mode": "ALLOW",
|
||||
"item_tag_inheritance": {},
|
||||
"block_tag_inheritance_mode": "ALLOW",
|
||||
"block_tag_inheritance": {},
|
||||
"emi_strict_hiding": true
|
||||
}
|
40
config/almostunified/unification/materials.json
Normal file
40
config/almostunified/unification/materials.json
Normal file
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"mod_priorities": [
|
||||
"minecraft",
|
||||
"create"
|
||||
],
|
||||
"priority_overrides": {},
|
||||
"stone_variants": [
|
||||
"stone",
|
||||
"andesite",
|
||||
"deepslate",
|
||||
"diorite",
|
||||
"granite",
|
||||
"netherrack",
|
||||
"end_stone"
|
||||
],
|
||||
"tags": [
|
||||
"butter",
|
||||
"c:dusts/{material}",
|
||||
"c:gears/{material}",
|
||||
"c:gems/{material}",
|
||||
"c:ingots/{material}",
|
||||
"c:nuggets/{material}",
|
||||
"c:ores/{material}",
|
||||
"c:plates/{material}",
|
||||
"c:raw_materials/{material}",
|
||||
"c:rods/{material}",
|
||||
"c:storage_blocks/raw_{material}",
|
||||
"c:storage_blocks/{material}",
|
||||
"c:wires/{material}"
|
||||
],
|
||||
"ignored_tags": [],
|
||||
"ignored_items": [],
|
||||
"ignored_recipe_types": [
|
||||
"cucumber:shaped_tag"
|
||||
],
|
||||
"ignored_recipe_ids": [],
|
||||
"recipe_viewer_hiding": true,
|
||||
"loot_unification": false,
|
||||
"ignored_loot_tables": []
|
||||
}
|
4
config/kubejs/server_scripts/replace_tagless_items.js
Normal file
4
config/kubejs/server_scripts/replace_tagless_items.js
Normal file
|
@ -0,0 +1,4 @@
|
|||
ServerEvents.recipes((event) => {
|
||||
event.replaceInput({}, "farmersexpanse:butter", "#c:butter")
|
||||
event.replaceInput({}, "vegandelight:salt", "#c:dusts/salt")
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue