You are viewing a potentially older version of this package. View all versions.
Thordomr-Thordomr_Backpacks-1.0.1 icon

Thordomr Backpacks

Adds custom backpacks for the Backpacks mod by Smoothbrain.

Date uploaded 2 weeks ago
Version 1.0.1
Download link Thordomr-Thordomr_Backpacks-1.0.1.zip
Downloads 946
Dependency string Thordomr-Thordomr_Backpacks-1.0.1

This mod requires the following mods to function

denikson-BepInExPack_Valheim-5.4.2333 icon
denikson-BepInExPack_Valheim

BepInEx pack for Valheim. Preconfigured with the correct entry point for mods and preferred defaults for the community.

Preferred version: 5.4.2333
Smoothbrain-Backpacks-1.3.6 icon
Smoothbrain-Backpacks

Adds a very nice backpack and Build Your Own Backpackâ„¢!

Preferred version: 1.3.6

README

This is just a yml for smoothbrains backpack mod based off Rilichimes Fantasy backpacks. I've removed the requirement for Epic loot and standaredized the backpack upgrade path. Each succsesive backpack is reqired in making the next one. The backpack will keep it's look though out each upgrade buy add a visual component to the backpack to show it's progress. The only extra backpack that is not part of that progress is the coin pouch. It is a single pack that can only hold coins.

Backpacks

Adds a backpack that can be equipped, without having to decide between wearing your cloak or utility item and your backpack. Can be upgraded to increase the size of the backpack.

Assets provided by CookieMilk. Thanks a lot!

Can be installed on a server, to enforce the configuration.

Build your own backpack!

You can create a Backpacks.yml file in your config folder and use it to create your very own backpack, unique to you!

On a server, creating the file in the config folder of the server is enough, the clients don't need the file.

Make sure to toggle the "use external YAML file" option to on in your cfg file or it won't work.

Example configuration for your own backpack:

Blaxxunpack: # Give your backpack an amazing name! Quote the name, if you want to use special characters. "Blaxxun's Pack":
  description: "A huge backpack, just for dandelions!" # And a descriptive description!
  size: 6x3 # This means 6 columns and 3 rows, so 18 slots in your backpack. Keep it small! Don't go higher than 8 here. Valheim doesn't like that at all.
  unique: global # This sets how many backpacks you can have in your inventory. See below for more info.
  effect: SE_Warm # Name of a status effect to apply to the player, if the backpack is equipped.
  appearance: # Now make it really unique and personalized, it's just your backpack after all!
    Sleepbag: hidden # Hide the sleepbag at the top of the backpack.
    BackpackStrapTop: hidden # Hide the straps that were holding the sleepbag as well.
    BackpackFlap: ff00fe # Color the flap at the top pink.
  crafting: # Make your backpack craftable.
    station: Workbench # The crafting station where you can craft your backpack.
    level: 3 # The required crafting station level to craft your backpack.
    costs: # The cost for crafting your backpack.
      Wood: 3 # Needs 3 wood.
      Stone: 5 # And 5 stone.
  valid items: # Define what items can go into your backpack.
    - Dandelion # Use the prefab name! One item per line! Like making a shopping list.
  upgrade: # Can your backpack be upgraded? Define as many upgrades as you want!
    1: # Config for the first upgrade.
      Wood: 5 # Need 5 wood
      Stone: 10 # And 10 stone.
      size: 6x4 # The new size after upgrading the backpack for the first time. 6 columns and 4 rows, so one row more than the base!

# You can also use weight factor to make items in your backpack lighter!
# weight factor: 0.8
# Would mean that items in your backpack only weigh 80% of their original weight!
# You can use teleport to allow every content in your backpack to be taken through a portal, even if it wouldn't work otherwise!
# teleport: true
# Would mean that you can put your ore into the backpack and take it through a portal!

# If you want no item restriction for your backpack, simply remove the "valid items" section of the config.

# Unique flags:
# global: Exclusive with any other backpack.
# restricted: Exclusive with backpacks that have no item restrictions.
# type: Exclusive with backpacks with the same type.
# bypass: Not exclusive, bypass all restrictions. Supersedes any other flag.
# none: Same as bypass, but doesn't overrule all other flags.

# Backpack parts can either be 'visible' or 'hidden'. To color them, use the hex code of the color you want to use.
# Valid backpack parts are: ToolstrapBottom, Pickaxe, RingBottomLeft, BackpackBody, MetalclipLeft, ToolstrapTop, PouchFront, PouchLeft, Knifesheath, Knife, MetalclipFrontRight, Pot, Sleepbag, BackpackStrapTop, BackpackStrapBottom, MetalclipFrontLeft, BackpackFlap, Teapot.
# Predefined item groups you can use for the valid items are:
# ore, metal, food, potions, woods, trophy, boss trophy, valuable, seed, crop, stackable.
# pants, chest, helmet, cape, armor.
# axes, clubs, knives, pickaxes, polearms, spears, swords, bows, crossbows, weapon, arrows, bolts, ammo.
# round shield, tower shield, shield.
# special (fishing rod and megingjord), tool, equipment.

# You can also define your very own item groups!
# groups:
#   content of my backpack:
#     - Stone
#     - Wood
#   content of my other backpack:
#     - Silver
#     - Iron
# This would create the groups "content of my backpack" and "content of my other backpack" and allows you to use these groups as valid items for your backpack.

Something that vaguely resembles a change log

V1.0.1

Updated the readme file. Removed the tackle box. included an editied Smoothbrain Backpacks config to the mod with changes that disabled the default explorer's backpack as it is not compatable with the added backpacks. Created a git hub for the mod

V1.0.0

Initial release