From cd5eecd539da317bb86ea4b784ac12ac4c748775 Mon Sep 17 00:00:00 2001 From: ursamina <143211829+ursamina@users.noreply.github.com> Date: Fri, 23 Feb 2024 21:56:44 +0000 Subject: [PATCH] backpack nerf (womp womp) backpacks now cannot interact with AE2 multiple backpacks in player inventory will now apply Slowness to the player mobs can no longer spawn with backpacks - no more tier skipping (but no more music :(( ) --- config/ftbquests/quests/chapters/steam_age.snbt | 4 ++++ .../sophisticatedbackpacks-server.toml | 17 ++++++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/config/ftbquests/quests/chapters/steam_age.snbt b/config/ftbquests/quests/chapters/steam_age.snbt index 622b03e..fee3b05 100644 --- a/config/ftbquests/quests/chapters/steam_age.snbt +++ b/config/ftbquests/quests/chapters/steam_age.snbt @@ -1490,6 +1490,10 @@ "Backpacks scale alongside &aPortable Cell&r tiering, with modular upgrades that can be inserted to provide new &dBackpack functionalities&r." "" "Before you reach &7LV&r, the upgrade options are &cquite limited&r. However, you should be able to upgrade the starter backpack &eonce&r before you make your first electric machine!" + "{@pagebreak}" + "Just so you know - backpacks have been configured and will &cnot&r interact with a connected &bStorage Bus&r. If you want the power of digital storage, you'll have to work for it!" + "" + "Oh, and holding one too many backpacks will &6slow you down&r." ] icon: "sophisticatedbackpacks:backpack" id: "5E89BDA8943534AF" diff --git a/defaultconfigs/sophisticatedbackpacks-server.toml b/defaultconfigs/sophisticatedbackpacks-server.toml index faa89af..cffc25f 100644 --- a/defaultconfigs/sophisticatedbackpacks-server.toml +++ b/defaultconfigs/sophisticatedbackpacks-server.toml @@ -8,7 +8,7 @@ #List of blocks that inventory interaction upgrades can't interact with - e.g. "minecraft:shulker_box" noInteractionBlocks = [] #List of blocks that are not allowed to connect to backpacks - e.g. "refinedstorage:external_storage" - noConnectionBlocks = [] + noConnectionBlocks = ["ae2:storage_bus"] #Turns on/off item fluid handler of backpack in its item form. There are some dupe bugs caused by default fluid handling implementation that manifest when backpack is drained / filled in its item form in another mod's tank and the only way to prevent them is disallowing drain/fill in item form altogether itemFluidHandlerEnabled = true #Determines whether player can right click on backpack that another player is wearing to open it. If off will turn off that capability for everyone and remove related settings from backpack. @@ -19,6 +19,8 @@ tickDedupeLogicDisabled = false #Determines if backpacks can be placed in container items (those that check for return value of canFitInsideContainerItems) canBePlacedInContainerItems = false + #Maximum number of upgrades of type per backpack in format of "UpgradeRegistryName[or UpgradeGroup]|MaxNumber" + maxUpgradesPerStorage = ["jukebox_upgrade|1", "stack_upgrades|3", "furnace_upgrades|1"] #Leather Backpack Settings [server.leatherBackpack] @@ -399,9 +401,9 @@ [server.entityBackpackAdditions] #Chance of an entity spawning with Backpack #Range: 0.0 ~ 1.0 - chance = 0.01 + chance = 0.0 #Turns on/off addition of loot into backpacks - addLoot = true + addLoot = false #Turns on/off buffing the entity that wears backpack with potion effects. These are scaled based on how much loot is added. buffWithPotionEffects = true #Turns on/off buffing the entity that wears backpack with additional health. Health is scaled based on backpack tier the mob wears. @@ -413,7 +415,7 @@ #List of music discs that are not supposed to be played by entities discBlockList = ["botania:record_gaia_1", "botania:record_gaia_2"] #Turns on/off a chance that the entity that wears backpack gets jukebox upgrade and plays a music disc. - playJukebox = true + playJukebox = false #Determines whether backpack drops to fake players if killed by them in addition to real ones that it always drops to dropToFakePlayers = false #Chance of mob dropping backpack when killed by player @@ -425,12 +427,13 @@ [server.nerfs] #Determines if too many backpacks in player's inventory cause slowness to the player - tooManyBackpacksSlowness = false + tooManyBackpacksSlowness = true #Maximum number of backpacks in player's inventory that will not cause slowness #Range: 1 ~ 27 - maxNumberOfBackpacks = 3 + maxNumberOfBackpacks = 2 #Ratio of slowness levels per every backpack above the maximum number allowed. (number of backpacks above the max gets multiplied by this number and ceiled) #Range: 0.1 ~ 5.0 slownessLevelsPerAdditionalBackpack = 1.0 #Determines if active upgrades will only work in the backpack that's worn by the player. Active upgrades are for example magnet, pickup, cooking, feeding upgrades. - onlyWornBackpackTriggersUpgrades = false \ No newline at end of file + onlyWornBackpackTriggersUpgrades = false +