bunch of new mods
This commit is contained in:
parent
176e73c84f
commit
1ace97a60d
52 changed files with 626 additions and 5 deletions
7
config/almostunified/debug.json
Normal file
7
config/almostunified/debug.json
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"dumpTagMap": false,
|
||||||
|
"dumpDuplicates": false,
|
||||||
|
"dumpUnification": false,
|
||||||
|
"dumpOverview": false,
|
||||||
|
"dumpRecipes": false
|
||||||
|
}
|
||||||
31
config/almostunified/duplicates.json
Normal file
31
config/almostunified/duplicates.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"ignoredRecipeTypes": [
|
||||||
|
"cucumber:shaped_tag"
|
||||||
|
],
|
||||||
|
"ignoredRecipes": [],
|
||||||
|
"defaultDuplicateRules": {
|
||||||
|
"ignoredFields": [
|
||||||
|
"conditions",
|
||||||
|
"group"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"cookingtime": "HigherRule",
|
||||||
|
"energy": "HigherRule",
|
||||||
|
"experience": "HigherRule"
|
||||||
|
},
|
||||||
|
"shouldSanitize": false
|
||||||
|
},
|
||||||
|
"overrideDuplicateRules": {
|
||||||
|
"minecraft:crafting_shaped": {
|
||||||
|
"ignoredFields": [
|
||||||
|
"pattern",
|
||||||
|
"conditions",
|
||||||
|
"key",
|
||||||
|
"group"
|
||||||
|
],
|
||||||
|
"rules": {},
|
||||||
|
"shouldSanitize": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"strictMode": false
|
||||||
|
}
|
||||||
3
config/almostunified/startup.json
Normal file
3
config/almostunified/startup.json
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"serverOnly": false
|
||||||
|
}
|
||||||
99
config/almostunified/unify.json
Normal file
99
config/almostunified/unify.json
Normal file
|
|
@ -0,0 +1,99 @@
|
||||||
|
{
|
||||||
|
"modPriorities": [
|
||||||
|
"gtceu",
|
||||||
|
"tfc",
|
||||||
|
"minecraft",
|
||||||
|
"kubejs",
|
||||||
|
"create"
|
||||||
|
],
|
||||||
|
"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}",
|
||||||
|
"forge:double_ingots/{material}",
|
||||||
|
"forge:double_sheets/{material}",
|
||||||
|
"forge:sheets/{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": {},
|
||||||
|
"customTags": {},
|
||||||
|
"tagOwnerships": {},
|
||||||
|
"itemTagInheritanceMode": "ALLOW",
|
||||||
|
"itemTagInheritance": {},
|
||||||
|
"blockTagInheritanceMode": "ALLOW",
|
||||||
|
"blockTagInheritance": {},
|
||||||
|
"ignoredTags": [],
|
||||||
|
"ignoredItems": [],
|
||||||
|
"ignoredRecipeTypes": [
|
||||||
|
"cucumber:shaped_tag",
|
||||||
|
"tfc:collapse",
|
||||||
|
"tfc:landslide"
|
||||||
|
],
|
||||||
|
"ignoredRecipes": [],
|
||||||
|
"itemsHidingJeiRei": true
|
||||||
|
}
|
||||||
24
config/betteradvancements-client.toml
Normal file
24
config/betteradvancements-client.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
defaultUncompletedIconColor = "#FFFFFF"
|
||||||
|
defaultUncompletedTitleColor = "#0489C1"
|
||||||
|
defaultCompletedIconColor = "#DBA213"
|
||||||
|
defaultCompletedTitleColor = "#DBA213"
|
||||||
|
doAdvancementsBackgroundFade = true
|
||||||
|
showDebugCoordinates = false
|
||||||
|
orderTabsAlphabetically = false
|
||||||
|
#Values below 50% might give odd results, use on own risk ;)
|
||||||
|
#Range: 1 ~ 100
|
||||||
|
uiScaling = 100
|
||||||
|
#Lists the criteria for partially completed advancements, e.g. the biomes required for 'Adventuring Time'
|
||||||
|
# Off: Vanilla default
|
||||||
|
# Default: List which criteria you have already obtained
|
||||||
|
# Spoiler: Only reveal unobtained criteria
|
||||||
|
# All: Show both obtained and unobtained criteria
|
||||||
|
criteriaDetail = "Default"
|
||||||
|
criteriaDetailRequiresShift = false
|
||||||
|
addInventoryButton = false
|
||||||
|
defaultDrawDirectLines = false
|
||||||
|
defaultHideLines = false
|
||||||
|
defaultCompletedLineColor = "#FFFFFF"
|
||||||
|
defaultUncompletedLineColor = "#FFFFFF"
|
||||||
|
onlyUseAboveAdvancementTabs = false
|
||||||
|
|
||||||
28
config/cosmeticarmorreworked-client.toml
Normal file
28
config/cosmeticarmorreworked-client.toml
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
|
||||||
|
#These settings only affects client
|
||||||
|
[Client]
|
||||||
|
#Whether or not to hide the button for opening CosmeticArmorInventory
|
||||||
|
CosArmorGuiButton_Hidden = false
|
||||||
|
#The horizontal pixel distance from the origin point of player inventory gui
|
||||||
|
#Range: > -2147483648
|
||||||
|
CosArmorGuiButton_Left = 65
|
||||||
|
#The vertical pixel distance from the origin point of player inventoy gui
|
||||||
|
#Range: > -2147483648
|
||||||
|
CosArmorGuiButton_Top = 67
|
||||||
|
#Whether or not to hide the button for toggling the mod temporarily on client side
|
||||||
|
CosArmorToggleButton_Hidden = false
|
||||||
|
#The horizontal pixel distance from the origin point of player inventory gui
|
||||||
|
#Range: > -2147483648
|
||||||
|
CosArmorToggleButton_Left = 59
|
||||||
|
#The vertical pixel distance from the origin point of player inventory gui
|
||||||
|
#Range: > -2147483648
|
||||||
|
CosArmorToggleButton_Top = 72
|
||||||
|
#Whether or not to hide the button for opening CosmeticArmorInventory in CreativeInventory
|
||||||
|
CosArmorCreativeGuiButton_Hidden = false
|
||||||
|
#The horizontal pixel distance from the origin point of creative inventory gui
|
||||||
|
#Range: > -2147483648
|
||||||
|
CosArmorCreativeGuiButton_Left = 95
|
||||||
|
#The vertical pixel distance from the origin point of creative inventoy gui
|
||||||
|
#Range: > -2147483648
|
||||||
|
CosArmorCreativeGuiButton_Top = 38
|
||||||
|
|
||||||
10
config/cosmeticarmorreworked-common.toml
Normal file
10
config/cosmeticarmorreworked-common.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
|
||||||
|
#These settings affects both server and client
|
||||||
|
[Common]
|
||||||
|
#Whether or not to keep items in cosmetic armor slots in the event of player death
|
||||||
|
CosArmorKeepThroughDeath = false
|
||||||
|
#Whether or not to disable the RecipeBook in the CosmeticArmorInventory
|
||||||
|
CosArmorDisableRecipeBook = false
|
||||||
|
#Whether or not to disable the coshat command
|
||||||
|
CosArmorDisableCosHatCommand = false
|
||||||
|
|
||||||
8
config/cucumber-client.toml
Normal file
8
config/cucumber-client.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
#General configuration options.
|
||||||
|
[General]
|
||||||
|
#Enable tag list tooltips for blocks/items?
|
||||||
|
tagTooltips = true
|
||||||
|
#Enable NBT tooltips for items?
|
||||||
|
nbtTooltips = false
|
||||||
|
|
||||||
8
config/cucumber-common.toml
Normal file
8
config/cucumber-common.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
#General configuration options.
|
||||||
|
[General]
|
||||||
|
#Mod ids (in order) to prioritize using items for when generating the cucumber-tags.json file.
|
||||||
|
modTagPriorities = ["thermal", "mekanism", "tconstruct", "immersiveengineering", "appliedenergistics2"]
|
||||||
|
#If enabled, any tags in the cucumber-tags.json file set to items that don't exist will be refreshed if possible.
|
||||||
|
autoRefreshTagOptions = true
|
||||||
|
|
||||||
3
config/cucumber-tags.json
Normal file
3
config/cucumber-tags.json
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"__comment": "Instructions: https://blakesmods.com/docs/cucumber/tags-config"
|
||||||
|
}
|
||||||
21
config/curios-client.toml
Normal file
21
config/curios-client.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
|
||||||
|
#Client only settings, mostly things related to rendering
|
||||||
|
[client]
|
||||||
|
#Set to true to enable rendering curios
|
||||||
|
renderCurios = true
|
||||||
|
#The X-Offset for the Curios GUI button
|
||||||
|
#Range: -100 ~ 100
|
||||||
|
buttonXOffset = 0
|
||||||
|
#The Y-Offset for the Curios GUI button
|
||||||
|
#Range: -100 ~ 100
|
||||||
|
buttonYOffset = 0
|
||||||
|
#The X-Offset for the Creative Curios GUI button
|
||||||
|
#Range: -100 ~ 100
|
||||||
|
creativeButtonXOffset = 0
|
||||||
|
#The Y-Offset for the Creative Curios GUI button
|
||||||
|
#Range: -100 ~ 100
|
||||||
|
creativeButtonYOffset = 0
|
||||||
|
#The corner for the Curios GUI button
|
||||||
|
#Allowed Values: TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT
|
||||||
|
buttonCorner = "TOP_LEFT"
|
||||||
|
|
||||||
6
config/extendedcrafting-client.toml
Normal file
6
config/extendedcrafting-client.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
#Client settings.
|
||||||
|
[General]
|
||||||
|
#Should the Quantum Compressor render the result item above it?
|
||||||
|
enableCompressorRenderer = true
|
||||||
|
|
||||||
110
config/extendedcrafting-common.toml
Normal file
110
config/extendedcrafting-common.toml
Normal file
|
|
@ -0,0 +1,110 @@
|
||||||
|
|
||||||
|
#Settings for Singularities.
|
||||||
|
[Singularities]
|
||||||
|
#Should the default recipe for the Ultimate Singularity be generated?
|
||||||
|
ultimateSingularityRecipe = true
|
||||||
|
#The default amount of items required to create a Singularity.
|
||||||
|
#Range: > 1
|
||||||
|
defaultMaterialsRequired = 10000
|
||||||
|
#Should default recipes be generated for Singularities?
|
||||||
|
defaultRecipes = true
|
||||||
|
#The default amount of FE required to create a Singularity.
|
||||||
|
#Range: > 0
|
||||||
|
defaultPowerRequired = 5000000
|
||||||
|
#Should the Singularities be enabled?
|
||||||
|
enabled = true
|
||||||
|
#The item to use as the Catalyst in default Singularity recipes.
|
||||||
|
defaultCatalyst = "extendedcrafting:ultimate_catalyst"
|
||||||
|
|
||||||
|
#Settings for the Crafting Core.
|
||||||
|
["Combination Crafting"]
|
||||||
|
#How much FE the Crafting Core should hold.
|
||||||
|
#Range: > 0
|
||||||
|
powerCapacity = 5000000
|
||||||
|
#How much FE/t the Crafting Core should use when crafting by default.
|
||||||
|
#Range: > 0
|
||||||
|
powerRate = 500
|
||||||
|
#Should the Crafting Core be enabled?
|
||||||
|
enabled = true
|
||||||
|
|
||||||
|
#Settings for general things.
|
||||||
|
[General]
|
||||||
|
#Should the Handheld Crafting Table be enabled?
|
||||||
|
handheldWorkbench = true
|
||||||
|
|
||||||
|
#Settings for the Extended Crafting Tables.
|
||||||
|
["Table Crafting"]
|
||||||
|
#How much FE the Auto Crafting Tables should hold. Higher tiers use double the previous tier.
|
||||||
|
#Range: > 0
|
||||||
|
autoTablePowerCapacity = 500000
|
||||||
|
#How much FE the Auto Crafting Tables should use when auto inserting items.
|
||||||
|
#Range: > 0
|
||||||
|
autoTableInsertPowerRate = 100
|
||||||
|
#Should the Basic Crafting Table inherit vanilla crafting recipes?
|
||||||
|
useVanillaRecipes = true
|
||||||
|
#Should the Extended Crafting Tables be enabled?
|
||||||
|
enabled = true
|
||||||
|
#Should the Auto Crafting Tables be enabled?
|
||||||
|
autoTablesEnabled = true
|
||||||
|
#How much FE the Auto Crafting Tables should use when crafting.
|
||||||
|
#Range: > 0
|
||||||
|
autoTablePowerRate = 500
|
||||||
|
|
||||||
|
#Settings for the Quantum Compressor.
|
||||||
|
["Quantum Compression"]
|
||||||
|
#How much FE the Quantum Compressor should hold.
|
||||||
|
#Range: > 0
|
||||||
|
powerCapacity = 10000000
|
||||||
|
#How much FE/t the Quantum Compressor should use when crafting by default.
|
||||||
|
#Range: > 0
|
||||||
|
powerRate = 5000
|
||||||
|
#Should the Quantum Compressor be enabled?
|
||||||
|
enabled = true
|
||||||
|
|
||||||
|
#Settings for the Recipe Maker.
|
||||||
|
["Recipe Maker"]
|
||||||
|
#Should the recipe maker add NBT tags when possible?
|
||||||
|
useNBT = true
|
||||||
|
#Should the recipe maker try to use tags when possible?
|
||||||
|
useTags = false
|
||||||
|
#Should the Recipe Maker be enabled?
|
||||||
|
enabled = true
|
||||||
|
|
||||||
|
#Settings for the Flux Crafter.
|
||||||
|
["Flux Crafting"]
|
||||||
|
#How much FE/t the Flux Crafter should pull from each Flux Alternator when crafting by default.
|
||||||
|
#Range: > 0
|
||||||
|
defaultPowerRate = 400
|
||||||
|
#How much FE the Flux Alternator should hold.
|
||||||
|
#Range: > 0
|
||||||
|
powerCapacity = 80000
|
||||||
|
#How much FE the Auto Flux Crafter should hold.
|
||||||
|
#Range: > 0
|
||||||
|
autoCrafterPowerCapacity = 500000
|
||||||
|
#How much FE the Auto Flux Crafter should use when auto inserting items.
|
||||||
|
#Range: > 0
|
||||||
|
autoCrafterInsertPowerRate = 100
|
||||||
|
#Should the Flux Crafter be enabled?
|
||||||
|
enabled = true
|
||||||
|
#Should the Auto Flux Crafter be enabled?
|
||||||
|
autoCrafterEnabled = true
|
||||||
|
|
||||||
|
#Settings for the Ender Crafter.
|
||||||
|
["Ender Crafting"]
|
||||||
|
#How long a single Ender Crafter crafting operation should take (in seconds) by default.
|
||||||
|
#Range: > 1
|
||||||
|
defaultTimeRequired = 60
|
||||||
|
#How much FE the Auto Ender Crafter should hold.
|
||||||
|
#Range: > 0
|
||||||
|
autoCrafterPowerCapacity = 500000
|
||||||
|
#How much FE the Auto Ender Crafter should use when auto inserting items.
|
||||||
|
#Range: > 0
|
||||||
|
autoCrafterInsertPowerRate = 100
|
||||||
|
#How much a single Ender Alternator should speed up a craft. This is a percentage of the time required.
|
||||||
|
#Range: 0.0 ~ 1.0
|
||||||
|
alternatorEffectiveness = 0.01
|
||||||
|
#Should the Ender Crafter be enabled?
|
||||||
|
enabled = true
|
||||||
|
#Should the Auto Ender Crafter be enabled?
|
||||||
|
autoCrafterEnabled = true
|
||||||
|
|
||||||
10
config/extendedcrafting/singularities/aluminum.json
Normal file
10
config/extendedcrafting/singularities/aluminum.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.aluminum",
|
||||||
|
"colors": [
|
||||||
|
"caccda",
|
||||||
|
"9a9ca6"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/aluminum"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/bronze.json
Normal file
10
config/extendedcrafting/singularities/bronze.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.bronze",
|
||||||
|
"colors": [
|
||||||
|
"d99f43",
|
||||||
|
"bb6b3b"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/bronze"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/coal.json
Normal file
10
config/extendedcrafting/singularities/coal.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.coal",
|
||||||
|
"colors": [
|
||||||
|
"363739",
|
||||||
|
"261e24"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:coal"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/copper.json
Normal file
10
config/extendedcrafting/singularities/copper.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.copper",
|
||||||
|
"colors": [
|
||||||
|
"fa977c",
|
||||||
|
"bc5430"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:copper_ingot"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/diamond.json
Normal file
10
config/extendedcrafting/singularities/diamond.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.diamond",
|
||||||
|
"colors": [
|
||||||
|
"a6fce9",
|
||||||
|
"1aaca8"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:diamond"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/electrum.json
Normal file
10
config/extendedcrafting/singularities/electrum.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.electrum",
|
||||||
|
"colors": [
|
||||||
|
"f5f18e",
|
||||||
|
"9e8d3e"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/electrum"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/emerald.json
Normal file
10
config/extendedcrafting/singularities/emerald.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.emerald",
|
||||||
|
"colors": [
|
||||||
|
"7df8ac",
|
||||||
|
"8e1a"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:emerald"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/glowstone.json
Normal file
10
config/extendedcrafting/singularities/glowstone.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.glowstone",
|
||||||
|
"colors": [
|
||||||
|
"ffd38f",
|
||||||
|
"a06135"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:glowstone_dust"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/gold.json
Normal file
10
config/extendedcrafting/singularities/gold.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.gold",
|
||||||
|
"colors": [
|
||||||
|
"fdf55f",
|
||||||
|
"d98e04"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:gold_ingot"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/invar.json
Normal file
10
config/extendedcrafting/singularities/invar.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.invar",
|
||||||
|
"colors": [
|
||||||
|
"bcc5bb",
|
||||||
|
"5d7877"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/invar"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/iron.json
Normal file
10
config/extendedcrafting/singularities/iron.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.iron",
|
||||||
|
"colors": [
|
||||||
|
"e1e1e1",
|
||||||
|
"6c6c6c"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:iron_ingot"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/lapis_lazuli.json
Normal file
10
config/extendedcrafting/singularities/lapis_lazuli.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.lapis_lazuli",
|
||||||
|
"colors": [
|
||||||
|
"678dea",
|
||||||
|
"1b53a7"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:lapis_lazuli"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/lead.json
Normal file
10
config/extendedcrafting/singularities/lead.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.lead",
|
||||||
|
"colors": [
|
||||||
|
"6c7d92",
|
||||||
|
"323562"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/lead"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/nickel.json
Normal file
10
config/extendedcrafting/singularities/nickel.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.nickel",
|
||||||
|
"colors": [
|
||||||
|
"e1d798",
|
||||||
|
"b1976c"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/nickel"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/platinum.json
Normal file
10
config/extendedcrafting/singularities/platinum.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.platinum",
|
||||||
|
"colors": [
|
||||||
|
"6feaef",
|
||||||
|
"57b8bc"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/platinum"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/redstone.json
Normal file
10
config/extendedcrafting/singularities/redstone.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.redstone",
|
||||||
|
"colors": [
|
||||||
|
"ff0000",
|
||||||
|
"8a0901"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"item": "minecraft:redstone"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/silver.json
Normal file
10
config/extendedcrafting/singularities/silver.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.silver",
|
||||||
|
"colors": [
|
||||||
|
"c0cdd2",
|
||||||
|
"5f6e7c"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/silver"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/steel.json
Normal file
10
config/extendedcrafting/singularities/steel.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.steel",
|
||||||
|
"colors": [
|
||||||
|
"565656",
|
||||||
|
"232323"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/steel"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
config/extendedcrafting/singularities/tin.json
Normal file
10
config/extendedcrafting/singularities/tin.json
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "singularity.extendedcrafting.tin",
|
||||||
|
"colors": [
|
||||||
|
"a0bebd",
|
||||||
|
"527889"
|
||||||
|
],
|
||||||
|
"ingredient": {
|
||||||
|
"tag": "forge:ingots/tin"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,4 +1,19 @@
|
||||||
{
|
{
|
||||||
|
"extendedcrafting": {
|
||||||
|
"elite_auto_table": true,
|
||||||
|
"ender_crafter": true,
|
||||||
|
"basic_auto_table": true,
|
||||||
|
"flux_crafter": true,
|
||||||
|
"advanced_table": true,
|
||||||
|
"auto_ender_crafter": true,
|
||||||
|
"ultimate_table": true,
|
||||||
|
"ultimate_auto_table": true,
|
||||||
|
"elite_table": true,
|
||||||
|
"basic_table": true,
|
||||||
|
"crafting_core": true,
|
||||||
|
"advanced_auto_table": true,
|
||||||
|
"compressor": true
|
||||||
|
},
|
||||||
"minecraft": {
|
"minecraft": {
|
||||||
"item_storage.show_name_amount": 5,
|
"item_storage.show_name_amount": 5,
|
||||||
"furnace": true,
|
"furnace": true,
|
||||||
|
|
|
||||||
|
|
@ -87,10 +87,19 @@
|
||||||
"tfc:ocelot": null,
|
"tfc:ocelot": null,
|
||||||
"tfc:rabbit": null,
|
"tfc:rabbit": null,
|
||||||
"tfc:fishing_hook": null,
|
"tfc:fishing_hook": null,
|
||||||
"gtceu:electric_container_provider": null,
|
"extendedcrafting:crafting_core": null,
|
||||||
"gtceu:workable_provider": null,
|
"extendedcrafting:basic_table": null,
|
||||||
"gtceu:controllable_provider": null,
|
"extendedcrafting:advanced_table": null,
|
||||||
"gtceu:recipe_logic_provider": null,
|
"extendedcrafting:elite_table": null,
|
||||||
|
"extendedcrafting:ultimate_table": null,
|
||||||
|
"extendedcrafting:basic_auto_table": null,
|
||||||
|
"extendedcrafting:advanced_auto_table": null,
|
||||||
|
"extendedcrafting:elite_auto_table": null,
|
||||||
|
"extendedcrafting:ultimate_auto_table": null,
|
||||||
|
"extendedcrafting:ender_crafter": null,
|
||||||
|
"extendedcrafting:auto_ender_crafter": null,
|
||||||
|
"extendedcrafting:flux_crafter": null,
|
||||||
|
"extendedcrafting:compressor": null,
|
||||||
"minecraft:brewing_stand": null,
|
"minecraft:brewing_stand": null,
|
||||||
"minecraft:beehive": null,
|
"minecraft:beehive": null,
|
||||||
"minecraft:command_block": null,
|
"minecraft:command_block": null,
|
||||||
|
|
@ -135,6 +144,23 @@
|
||||||
"jade:mod_name": null,
|
"jade:mod_name": null,
|
||||||
"jade:distance": null,
|
"jade:distance": null,
|
||||||
"jade:block_face": null,
|
"jade:block_face": null,
|
||||||
|
"extendedcrafting:crafting_core": null,
|
||||||
|
"extendedcrafting:basic_table": null,
|
||||||
|
"extendedcrafting:advanced_table": null,
|
||||||
|
"extendedcrafting:elite_table": null,
|
||||||
|
"extendedcrafting:ultimate_table": null,
|
||||||
|
"extendedcrafting:basic_auto_table": null,
|
||||||
|
"extendedcrafting:advanced_auto_table": null,
|
||||||
|
"extendedcrafting:elite_auto_table": null,
|
||||||
|
"extendedcrafting:ultimate_auto_table": null,
|
||||||
|
"extendedcrafting:ender_crafter": null,
|
||||||
|
"extendedcrafting:auto_ender_crafter": null,
|
||||||
|
"extendedcrafting:flux_crafter": null,
|
||||||
|
"extendedcrafting:compressor": null,
|
||||||
|
"gtceu:electric_container_provider": null,
|
||||||
|
"gtceu:workable_provider": null,
|
||||||
|
"gtceu:controllable_provider": null,
|
||||||
|
"gtceu:recipe_logic_provider": null,
|
||||||
"tfc:barrel": null,
|
"tfc:barrel": null,
|
||||||
"tfc:bellows": null,
|
"tfc:bellows": null,
|
||||||
"tfc:sapling": null,
|
"tfc:sapling": null,
|
||||||
|
|
|
||||||
|
|
@ -2,3 +2,6 @@ Minecraft
|
||||||
Create
|
Create
|
||||||
GregTech
|
GregTech
|
||||||
TerraFirmaCraft
|
TerraFirmaCraft
|
||||||
|
Extended Crafting
|
||||||
|
Sophisticated Backpacks
|
||||||
|
Sophisticated Core
|
||||||
|
|
|
||||||
|
|
@ -113,3 +113,11 @@ tfc:sealed_barrel
|
||||||
tfc:simple_pot
|
tfc:simple_pot
|
||||||
tfc:soup_pot
|
tfc:soup_pot
|
||||||
tfc:welding
|
tfc:welding
|
||||||
|
extendedcrafting:advanced_crafting
|
||||||
|
extendedcrafting:basic_crafting
|
||||||
|
extendedcrafting:combination
|
||||||
|
extendedcrafting:compressor
|
||||||
|
extendedcrafting:elite_crafting
|
||||||
|
extendedcrafting:ender_crafting
|
||||||
|
extendedcrafting:flux_crafting
|
||||||
|
extendedcrafting:ultimate_crafting
|
||||||
|
|
|
||||||
6
config/sophisticatedbackpacks-common.toml
Normal file
6
config/sophisticatedbackpacks-common.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
#Common Settings
|
||||||
|
[common]
|
||||||
|
#Turns on/off loot added to various vanilla chest loot tables
|
||||||
|
chestLootEnabled = true
|
||||||
|
|
||||||
9
config/sophisticatedcore-client.toml
Normal file
9
config/sophisticatedcore-client.toml
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
#Client Settings
|
||||||
|
[client]
|
||||||
|
#Positions where sort buttons can display to help with conflicts with controls from other mods
|
||||||
|
#Allowed Values: TITLE_LINE_RIGHT, BELOW_UPGRADES, BELOW_UPGRADE_TABS, HIDDEN
|
||||||
|
sortButtonsPosition = "TITLE_LINE_RIGHT"
|
||||||
|
#Whether click sound should play when custom buttons are clicked in gui
|
||||||
|
playButtonSound = true
|
||||||
|
|
||||||
6
config/sophisticatedcore-common.toml
Normal file
6
config/sophisticatedcore-common.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
#Common Settings
|
||||||
|
[common]
|
||||||
|
#Disable / enable any items here (disables their recipes)
|
||||||
|
enabledItems = ["sophisticatedbackpacks:compacting_upgrade|true", "sophisticatedbackpacks:advanced_restock_upgrade|true", "sophisticatedbackpacks:diamond_backpack|true", "sophisticatedbackpacks:tank_upgrade|true", "sophisticatedbackpacks:auto_smoking_upgrade|true", "sophisticatedbackpacks:filter_upgrade|true", "sophisticatedbackpacks:advanced_compacting_upgrade|true", "sophisticatedbackpacks:feeding_upgrade|true", "sophisticatedbackpacks:advanced_pickup_upgrade|true", "sophisticatedbackpacks:smoking_upgrade|true", "sophisticatedbackpacks:everlasting_upgrade|true", "sophisticatedbackpacks:advanced_feeding_upgrade|true", "sophisticatedbackpacks:crafting_upgrade|true", "sophisticatedbackpacks:stack_upgrade_tier_4|true", "sophisticatedbackpacks:stack_upgrade_tier_2|true", "sophisticatedbackpacks:stack_upgrade_tier_3|true", "sophisticatedbackpacks:stack_upgrade_tier_1|true", "sophisticatedbackpacks:advanced_pump_upgrade|true", "sophisticatedbackpacks:refill_upgrade|true", "sophisticatedbackpacks:auto_blasting_upgrade|true", "sophisticatedbackpacks:void_upgrade|true", "sophisticatedbackpacks:advanced_refill_upgrade|true", "sophisticatedbackpacks:advanced_tool_swapper_upgrade|true", "sophisticatedbackpacks:smelting_upgrade|true", "sophisticatedbackpacks:battery_upgrade|true", "sophisticatedbackpacks:magnet_upgrade|true", "sophisticatedbackpacks:advanced_magnet_upgrade|true", "sophisticatedbackpacks:blasting_upgrade|true", "sophisticatedbackpacks:deposit_upgrade|true", "sophisticatedbackpacks:iron_backpack|true", "sophisticatedbackpacks:stonecutter_upgrade|true", "sophisticatedbackpacks:backpack|true", "sophisticatedbackpacks:tool_swapper_upgrade|true", "sophisticatedbackpacks:jukebox_upgrade|true", "sophisticatedbackpacks:advanced_filter_upgrade|true", "sophisticatedbackpacks:inception_upgrade|true", "sophisticatedbackpacks:xp_pump_upgrade|true", "sophisticatedbackpacks:auto_smelting_upgrade|true", "sophisticatedbackpacks:pickup_upgrade|true", "sophisticatedbackpacks:upgrade_base|true", "sophisticatedbackpacks:gold_backpack|true", "sophisticatedbackpacks:advanced_deposit_upgrade|true", "sophisticatedbackpacks:advanced_void_upgrade|true", "sophisticatedbackpacks:restock_upgrade|true", "sophisticatedbackpacks:pump_upgrade|true", "sophisticatedbackpacks:netherite_backpack|true"]
|
||||||
|
|
||||||
|
|
@ -22,8 +22,8 @@
|
||||||
"startFadingAt": 0.0,
|
"startFadingAt": 0.0,
|
||||||
"renderOverMinimapFrame": 1.0,
|
"renderOverMinimapFrame": 1.0,
|
||||||
"icons": 1.0,
|
"icons": 1.0,
|
||||||
"heightLimit": 20.0,
|
|
||||||
"names": 0.0,
|
"names": 0.0,
|
||||||
|
"heightLimit": 20.0,
|
||||||
"iconScale": 1.0
|
"iconScale": 1.0
|
||||||
},
|
},
|
||||||
"subCategories": [
|
"subCategories": [
|
||||||
|
|
|
||||||
BIN
mods/BetterAdvancements-1.20.1-0.3.2.161.jar
Normal file
BIN
mods/BetterAdvancements-1.20.1-0.3.2.161.jar
Normal file
Binary file not shown.
BIN
mods/Cucumber-1.20.1-7.0.3.jar
Normal file
BIN
mods/Cucumber-1.20.1-7.0.3.jar
Normal file
Binary file not shown.
BIN
mods/ExtendedCrafting-1.20.1-6.0.3.jar
Normal file
BIN
mods/ExtendedCrafting-1.20.1-6.0.3.jar
Normal file
Binary file not shown.
BIN
mods/almostunified-forge-1.20.1-0.7.0.jar
Normal file
BIN
mods/almostunified-forge-1.20.1-0.7.0.jar
Normal file
Binary file not shown.
Binary file not shown.
BIN
mods/configuration-forge-1.20.1-2.2.1.jar
Normal file
BIN
mods/configuration-forge-1.20.1-2.2.1.jar
Normal file
Binary file not shown.
BIN
mods/cosmeticarmorreworked-1.20.1-v1a.jar
Normal file
BIN
mods/cosmeticarmorreworked-1.20.1-v1a.jar
Normal file
Binary file not shown.
BIN
mods/curios-forge-5.3.5+1.20.1.jar
Normal file
BIN
mods/curios-forge-5.3.5+1.20.1.jar
Normal file
Binary file not shown.
BIN
mods/sophisticatedbackpacks-1.20.1-3.18.65.935.jar
Normal file
BIN
mods/sophisticatedbackpacks-1.20.1-3.18.65.935.jar
Normal file
Binary file not shown.
BIN
mods/sophisticatedcore-1.20.1-0.5.100.457.jar
Normal file
BIN
mods/sophisticatedcore-1.20.1-0.5.100.457.jar
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue