balance changes now disabled by default

This commit is contained in:
alterNERDtive 2023-07-26 10:57:31 +02:00
parent 98a587518e
commit 30ae345c6a
Signed by: alterNERDtive
GPG key ID: 547787A4FE6533F1
2 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
# devel # devel
* Balance changes are now disabled by default, bug fixes enabled. Will not affect exsting worlds/configs.
# 3.11.1.0 (2023-07-25) # 3.11.1.0 (2023-07-25)

View file

@ -73,7 +73,7 @@ public class Configuration {
builder.push("Fortune"); builder.push("Fortune");
FORTUNE_ENABLED = builder FORTUNE_ENABLED = builder
.comment("Replace the maximum Fortune level for the Vault Enchanter and remove the Fortunate Expertise") .comment("Replace the maximum Fortune level for the Vault Enchanter and remove the Fortunate Expertise")
.define("enableOverride", true); .define("enableOverride", false);
FORTUNE_LEVEL = builder FORTUNE_LEVEL = builder
.comment("Maximum Fortune level") .comment("Maximum Fortune level")
.defineInRange("maxLevel", 5, 3, 5); .defineInRange("maxLevel", 5, 3, 5);
@ -83,14 +83,14 @@ public class Configuration {
builder.push("VaultEnchanter"); builder.push("VaultEnchanter");
ENCHANTS_FORFREE = builder ENCHANTS_FORFREE = builder
.comment("Remove the Emerald cost from the Vault Enchanter") .comment("Remove the Emerald cost from the Vault Enchanter")
.define("removeEmeraldCost", true); .define("removeEmeraldCost", false);
builder.pop(); builder.pop();
// Jeweler // Jeweler
builder.push("Jeweler"); builder.push("Jeweler");
JEWELER_ENABLED = builder JEWELER_ENABLED = builder
.comment("Remove the Jeweler Expertise and change the default cutting chance accordingly") .comment("Remove the Jeweler Expertise and change the default cutting chance accordingly")
.define("disableJeweler", true); .define("disableJeweler", false);
JEWELER_CHANCE = builder JEWELER_CHANCE = builder
.comment("Chance to break the jewel / remove a modifier") .comment("Chance to break the jewel / remove a modifier")
.defineInRange("breakChance", 0.25d, 0d, 0.5d); .defineInRange("breakChance", 0.25d, 0d, 0.5d);
@ -100,7 +100,7 @@ public class Configuration {
builder.push("BuddingCrystal"); builder.push("BuddingCrystal");
BUDDING_ENABLED = builder BUDDING_ENABLED = builder
.comment("Change the Budding Crystal growth times (Sky Vaults only)") .comment("Change the Budding Crystal growth times (Sky Vaults only)")
.define("enableOverride", true); .define("enableOverride", false);
BUDDING_MAX = builder BUDDING_MAX = builder
.comment("Maximum time between growth stages (pack default: 400)") .comment("Maximum time between growth stages (pack default: 400)")
.defineInRange("maxTime", 300, 300, 500); .defineInRange("maxTime", 300, 300, 500);
@ -113,7 +113,7 @@ public class Configuration {
builder.push("Jewels"); builder.push("Jewels");
JEWELS_ENABLED = builder JEWELS_ENABLED = builder
.comment("Change the max size for jewels and the size range for jewel cutting") .comment("Change the max size for jewels and the size range for jewel cutting")
.define("enableOverride", true); .define("enableOverride", false);
JEWELS_SIZE = builder JEWELS_SIZE = builder
.comment("Maximum Jewel size (pack default: 90) (CURRENTLY NON-FUNCTIONAL)") .comment("Maximum Jewel size (pack default: 90) (CURRENTLY NON-FUNCTIONAL)")
.defineInRange("maxSize", 40, 10, 100); .defineInRange("maxSize", 40, 10, 100);
@ -129,7 +129,7 @@ public class Configuration {
builder.push("VaultAltar"); builder.push("VaultAltar");
VAULTAR_ENABLED = builder VAULTAR_ENABLED = builder
.comment("Enable Vaultar config overrides") .comment("Enable Vaultar config overrides")
.define("enableOverride", true); .define("enableOverride", false);
VAULTAR_INFUSION_TIME = builder VAULTAR_INFUSION_TIME = builder
.comment("The time it takes to infuse a crystal after giving a redstone signal (pack default: 5)") .comment("The time it takes to infuse a crystal after giving a redstone signal (pack default: 5)")
.defineInRange("infusionTime", 1, 1, 10); .defineInRange("infusionTime", 1, 1, 10);
@ -139,7 +139,7 @@ public class Configuration {
builder.push("JunkManagement"); builder.push("JunkManagement");
JUNKMGMT_ENABLED = builder JUNKMGMT_ENABLED = builder
.comment("Override Junk Charm multipliers for the Junk Management slots (pack defaults: 3/18/114/228)") .comment("Override Junk Charm multipliers for the Junk Management slots (pack defaults: 3/18/114/228)")
.define("enableOverride", true); .define("enableOverride", false);
builder.comment("These values will be multiplied by the default junk list size (9)"); builder.comment("These values will be multiplied by the default junk list size (9)");
JUNKMGMT_T1 = builder.define("tier1Multiplier", 28); JUNKMGMT_T1 = builder.define("tier1Multiplier", 28);
JUNKMGMT_T2 = builder.define("tier2Multiplier", 57); JUNKMGMT_T2 = builder.define("tier2Multiplier", 57);
@ -151,7 +151,7 @@ public class Configuration {
builder.push("VaultPortal"); builder.push("VaultPortal");
PORTAL_TEMPLATE_ENABLED = builder PORTAL_TEMPLATE_ENABLED = builder
.comment("Allow Template Frame Blocks extruded by Modular Routers Extruder Mk2 module as Vault Portal Frame blocks") .comment("Allow Template Frame Blocks extruded by Modular Routers Extruder Mk2 module as Vault Portal Frame blocks")
.define("allowTemplateFrames", true); .define("allowTemplateFrames", false);
builder.pop(); builder.pop();
// Bug fixes // Bug fixes