diff options
author | shennetsind <ind@henn.et> | 2013-04-02 22:22:23 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-02 22:22:23 -0300 |
commit | e702cc0ab6dccfd0a10b5a1881841452c326affc (patch) | |
tree | 5060b0e6187773b7e8e5f7ba900188850e475e8e /db/re/map_zone_db.conf | |
parent | 57dff2db23556d01beedd8af95a41e4f03f66681 (diff) | |
download | hercules-e702cc0ab6dccfd0a10b5a1881841452c326affc.tar.gz hercules-e702cc0ab6dccfd0a10b5a1881841452c326affc.tar.bz2 hercules-e702cc0ab6dccfd0a10b5a1881841452c326affc.tar.xz hercules-e702cc0ab6dccfd0a10b5a1881841452c326affc.zip |
Introducing 5 new/official mapflags.
They're:
- weapon_damage_rate
- magic_damage_rate
- misc_damage_rate
- long_damage_rate
- short_damage_rate
Dropped 15 battle settings that became pointless with this upgrade.
Updated battleground zone damage reductions, skill damage from -30% to -20% and weapon damage from -40% to -30%.
Special Thanks to Muad_Dib.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'db/re/map_zone_db.conf')
-rw-r--r-- | db/re/map_zone_db.conf | 58 |
1 files changed, 55 insertions, 3 deletions
diff --git a/db/re/map_zone_db.conf b/db/re/map_zone_db.conf index 5ee8ba0b1..4ea5eebb4 100644 --- a/db/re/map_zone_db.conf +++ b/db/re/map_zone_db.conf @@ -52,6 +52,32 @@ zones: ( } }, { + /* PK Mode zone is only used when server is on pk_mode (battle.conf), + it applies to all pvp maps that don't have their own zone */ + name: "PK Mode" /* changing this name requires MAP_ZONE_PK_NAME to also be changed in src/map/map.h file */ + + disabled_skills: { + + } + + disabled_items: { + + } + + /* PK Mode Damage Reductions */ + /* - weapon_damage_rate -40% */ + /* - magic_damage_rate -40% */ + /* - misc_damage_rate -40% */ + /* - long_damage_rate -30% */ + /* - short_damage_rate -20% */ + mapflags: ( + "weapon_damage_rate 60", + "magic_damage_rate 60", + "misc_damage_rate 60", + "long_damage_rate 70", + "short_damage_rate 80" ) +}, +{ /* GvG zone is applied to all maps with a pvp mapflag */ name: "GvG" /* changing this name requires MAP_ZONE_GVG_NAME to also be changed in src/map/map.h file */ @@ -82,7 +108,20 @@ zones: ( } /* 5 second duration increase on GvG */ /* knockback disabled */ - mapflags: ( "invincible_time_inc 5000", "noknockback" ) + /* GvG Mode Damage Reductions */ + /* - weapon_damage_rate -40% */ + /* - magic_damage_rate -40% */ + /* - misc_damage_rate -40% */ + /* - long_damage_rate -20% */ + /* - short_damage_rate -20% */ + mapflags: ( "invincible_time_inc 5000", + "noknockback", + "weapon_damage_rate 60", + "magic_damage_rate 60", + "misc_damage_rate 60", + "long_damage_rate 80", + "short_damage_rate 80" ) + }, { /* Battlegrounds zone is applied to all maps with a battlegrounds mapflag */ @@ -126,9 +165,22 @@ zones: ( disabled_items: { Assumptio_5_Scroll: true Pty_Assumptio_Scroll: true - } + } + /* knockback disabled */ - mapflags: ( "noknockback" ) + /* Battlegrounds Damage Reductions */ + /* - weapon_damage_rate -30% */ + /* - magic_damage_rate -30% */ + /* - misc_damage_rate -30% */ + /* - long_damage_rate -25% */ + /* - short_damage_rate -25% */ + mapflags: ( "noknockback", + "weapon_damage_rate 70", + "magic_damage_rate 70", + "misc_damage_rate 70", + "long_damage_rate 75", + "short_damage_rate 75" ) + }, { name: "Aldebaran Turbo Track" |