From a5bf4532dd3cbbf28e505ada688bdb1ae52f62da Mon Sep 17 00:00:00 2001 From: Snogard Date: Sun, 9 Feb 2025 16:29:49 +0100 Subject: [PATCH] config: botanical machinery --- config/botanicalmachinery/client.json5 | 17 ++++++++ config/botanicalmachinery/server.json5 | 55 ++++++++++++++++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 config/botanicalmachinery/client.json5 create mode 100644 config/botanicalmachinery/server.json5 diff --git a/config/botanicalmachinery/client.json5 b/config/botanicalmachinery/client.json5 new file mode 100644 index 0000000..c0292e0 --- /dev/null +++ b/config/botanicalmachinery/client.json5 @@ -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 + } +} diff --git a/config/botanicalmachinery/server.json5 b/config/botanicalmachinery/server.json5 new file mode 100644 index 0000000..9af2915 --- /dev/null +++ b/config/botanicalmachinery/server.json5 @@ -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 + } +}