0 of 0

File information

Last updated

Original upload

Created by

AlexKage

Uploaded by

alexkage

Virus scan

Safe to use

Tags for this mod

Mod articles

  • How to edit Config.lua

    In Config.lua, you'll find all the EnemyData that you want to be added DropRate.

    Code example explainedOlympusEnemyData.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: static information about the Library you want to edit.
    BaseVulnerableEnemy: enemy name or enemy type you want to edit.
    DropRate: static variable to add drop rate to speci...