Hades
0 of 0

File information

Last updated

Original upload

Created by

AlexKage

Uploaded by

alexkage

Virus scan

Safe to use

Tags for this mod

About this mod

This mod allows to drop random stuff from any enemies. Mod Request by GotchaGru.

Permissions and credits
Mod to drop stuff from enemies and boss. Mod request by GotchaGru from Hades Modding Discord

You can change the settings to specific enemies or general enemies and boss using Config.lua
    OlympusEnemyData.BaseVulnerableEnemy.DropRate = {
        DropChance = 0.1,
        DropReward = {
            WeaponUpgradeDrop = 0.01,
            MetaDropRange = 0.29,
            GemDrop = 0.25,
            StackUpgradeDrop = 0.10,
            LockKeyDrop = 0.15,
            GiftDrop = 0.15,
            --StackUpgradeDropRare = 0.02,
            --HermesUpgradeDrop = 0.02,
        }
    }

    OlympusEnemyData.BaseBossEnemy.DropRate = {
        DropChance = 1.0,
        DropReward = {
            WeaponUpgradeDrop = 0.01,
            MetaPointSmall = 0.29,
            GemDrop = 0.25,
            StackUpgradeDrop = 0.15,
            LockKeyDrop = 0.15,
            GiftDrop = 0.15,
            --StackUpgradeDropRare = 0.02,
            --HermesUpgradeDrop = 0.02,
        }
    }

    OlympusEnemyData.Hades.DropRate = nil

OlympusEnemyData.[Name of enemie].DropRate: See EnemyData.lua for full list of enemies
DropChance: % of chance to drop something.
DropReward: Add the name of data from Consumables.lua and % is divided by 100% what chance to drop that specific item.

Have fun.
AlexKage