EpicLoot Stellarwhims LootTables
Updated loot tables that focus enchanting materials and encourage progression.
By Stellarwhims
Date uploaded | 2 years ago |
Version | 1.3.2 |
Download link | Stellarwhims-EpicLoot_Stellarwhims_LootTables-1.3.2.zip |
Downloads | 497 |
Dependency string | Stellarwhims-EpicLoot_Stellarwhims_LootTables-1.3.2 |
This mod requires the following mods to function
ASharpPen-This_Goes_Here
Small mod for mod authors to run file operations in bepinex folders.
Preferred version: 2.1.1denikson-BepInExPack_Valheim
BepInEx pack for Valheim. Preconfigured and includes unstripped Unity DLLs.
Preferred version: 5.4.1901RandyKnapp-EpicLoot
Adds loot drops, magic items, and enchanting to Valheim.
Preferred version: 0.9.2WackyMole-WackysDatabase
WackysDatabase allows you to control all items/recipes/pieces via JSON files with ServerSync and so much more.
Preferred version: 1.4.2MythikWolf-QuestItems
Quest Items to add to your game! Intended for use with Marketplace and NPCs Revisited.
Preferred version: 1.0.3blacks7ar-MagicPlugin
Adds 6 new early game magic weapons, 6 armors with set effect for magic users and 5 eitr foods that is centered on the useless yellow mushroom.
Preferred version: 1.2.3README
Epic Loot loot tables changes
This mod contains heavily modified loot tables for EpicLoot mod, so, mostly enchanting materials will get dropped.
Installation
- Automated: just install as long as using TMM or R2Modman.
- Manual: you need to know what you are doing ;)
Take care, this mod will overwrite the EpicLoot files:
- loottables.json
Can only be used if no other mods overwriting the same files!
Changelog
1.3.2:
- moved frostner to only drop from moder
- moved fenrir claw to only drop from fenrir cultists
- moved fenrir armor and helm to only drop from fenrir cultists
- moved root armor to only drop from abomination
- moved troll armor to only drop from trolls
Previous changes:
1.3.1:
- fixed json errors
1.3.0:
- Mistlands compatability
- final tuning candidate 4
- removed iteminfo.json from this mod as it no longer needs changes
1.2.7:
- final tuning candidate 3
- added fenring cultst and ulv to epicloot loot tables
1.2.6:
- forgot to update some readme file text.
- updated dll process filter.
1.2.5:
- added Growth and Abomination to the loot tables.
- added crystal battleaxe, silver knife, bone tower shield, and iron buckler to the loot tables
- updated this goes here copy operation
1.2.3 - 1.2.4:
- re-arranged mob tiers to correspond to general biomes encountered.
- brought item drops back for high difficulty mobs.
- updated this goes here mod operation.
- removed stagbreaker from the regular mob loot tables (can still be crafted & enchanted)
1.2.2:
- i learned markdown stuffs! =D
1.2.1:
- formatted readme code example for read-ability.
1.2.0:
- added an empty dll as a version check for connecting clients to help ensure loottables are synced.
1.1.9:
- final tuning candidate 2
1.1.8:
- final tuning candidate 2
1.1.7:
- edited manifest json. it incorrectly suggested there were manual steps required.
1.1.6:
- final tuning candidate 1
1.1.5:
- difficulty testing. Kill skeletons with larger groups for higher tier weapons. This will go away.
1.1.3: -> 1.1.4
- difficulty testing. Kill skeletons with larger groups for higher tier weapons. This will go away.
1.1.2:
- intial upload ... and learning how the upload package works. first time using thunderstore.
dll code example
using BepInEx;
using Debug = UnityEngine.Debug;
namespace EpicLoot_Stellarwhims_Loottables_versionverify
{
[BepInPlugin("stellarwhims.SwhimsELVerify", "Stellarwhims EpicLoot Loottables", "1.2.0")]
[BepInProcess("valheim.exe")]
public class SwhimsELVerify : BaseUnityPlugin
{
void Awake()
{
Debug.Log("Stellarwhims EpicLoot Loottables installed!");
}
}
}