diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-01-17 20:30:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-01-17 20:30:51 -0300 |
commit | 99d499c81ccfd42902a084f33cf4d01395cfae9d (patch) | |
tree | f965f517a2ceea64b79506caaff36fc2caa57b47 /conf/map | |
parent | 49032a75a4563b2c2512d341eedf7a328d431862 (diff) | |
download | serverdata-99d499c81ccfd42902a084f33cf4d01395cfae9d.tar.gz serverdata-99d499c81ccfd42902a084f33cf4d01395cfae9d.tar.bz2 serverdata-99d499c81ccfd42902a084f33cf4d01395cfae9d.tar.xz serverdata-99d499c81ccfd42902a084f33cf4d01395cfae9d.zip |
Server code introduced new config values.
Diffstat (limited to 'conf/map')
-rw-r--r-- | conf/map/battle/drops.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/conf/map/battle/drops.conf b/conf/map/battle/drops.conf index 28ca89fab..cd2894c0d 100644 --- a/conf/map/battle/drops.conf +++ b/conf/map/battle/drops.conf @@ -101,11 +101,18 @@ item_rate_adddrop: 100 item_drop_add_min: 1 item_drop_add_max: 10000 +// Rate adjustment for item chains +item_drop_add_chain_min: 1 +item_drop_add_chain_max: 10000 + // Rate adjustment for Treasure Box drops (these override all other modifiers) item_rate_treasure: 100 item_drop_treasure_min: 1 item_drop_treasure_max: 10000 +// Does not allow drop rate to exceed 95% through bonuses +item_drop_bonus_max_threshold: 9500 + // Use logarithmic drops? (Note 1) // Logarithmic drops scale drop rates in a non-linear fashion using the equation // Droprate(x,y) = x * (5 - log(x)) ^ (ln(y) / ln(5)) |