config: botanical machinery

This commit is contained in:
Snogard 2025-02-09 16:29:49 +01:00
parent 7e738e0c34
commit a5bf4532dd
2 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{
// Should mana in GUIs be displayed with numbers?
"numericalMana": true,
// If you turn this off, the special rendering is disabled for all machines and ignores the other config options
"AdvancedRendering": {
"alfheimMarket": true,
"all": true,
"industrialAgglomerationFactory": true,
"mechanicalApothecary": true,
"mechanicalBrewery": true,
"mechanicalDaisy": true,
"mechanicalManaPool": true,
"mechanicalRunicAltar": true
}
}

View File

@ -0,0 +1,55 @@
{
// The amount of mana used in alfheim market to trade items [Default: 500]
"AlfheimMarket": {
// Minimum: 1
"recipeCost": 500
},
// The default amount of mana capacity in each machine.
"MaxManaCapacity": {
// Minimum: 1
"alfheimMarket": 100000,
// Minimum: 500000
"industrialAgglomerationFactory": 1000000,
// Minimum: 1
"manaBattery": 10000000,
// Minimum: 1
"mechanicalBrewery": 100000,
// Minimum: 1
"mechanicalManaPool": 100000,
// Minimum: 1
"mechanicalRunicAltar": 250000
},
// The default duration multiplied with this will be the used working duration.
"WorkingDurationMultiplier": {
// Range: 1 - 25
"alfheimMarket": 1,
// Range: 1 - 5000
"industrialAgglomerationFactory": 1,
// Minimum: 1
"mechanicalApothecary": 1,
// Range: 1 - 50
"mechanicalBrewery": 1,
// Minimum: 1
"mechanicalDaisy": 1,
// Minimum: 1
"mechanicalManaPool": 1,
// Range: 1 - 100
"mechanicalRunicAltar": 1
}
}