diff options
author | Jesusaves <cpntb1@ymail.com> | 2025-07-04 20:45:04 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2025-07-04 20:47:56 -0300 |
commit | fb403c8503f7a1ea3dc06d310fd2adf860ad7721 (patch) | |
tree | ae063bd5ad65c4bf451377b49bafd53bfecfbd99 | |
parent | c1855b0e13ca4c61fcfaf442efbb0ffefd0957d8 (diff) | |
download | serverdata-fb403c8503f7a1ea3dc06d310fd2adf860ad7721.tar.gz serverdata-fb403c8503f7a1ea3dc06d310fd2adf860ad7721.tar.bz2 serverdata-fb403c8503f7a1ea3dc06d310fd2adf860ad7721.tar.xz serverdata-fb403c8503f7a1ea3dc06d310fd2adf860ad7721.zip |
Fix invalid syntax in mod_db.re This change is NOT backwards-compatible
-rw-r--r-- | db/re/mob_db.conf | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 2dfd65329..b71abf857 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -13008,7 +13008,7 @@ mob_db: ( // Strong Resistance to 1H Swords, Vulnerable to Staff WeaponAttacks: { Daggers: 1500 - 1HSwords: 1500 + Swords1H: 1500 Katars: 1400 Staves: 12000 } @@ -13058,8 +13058,8 @@ mob_db: ( } // Strong Resistance to 2H Swords, Vulnerable to Shotgun WeaponAttacks: { - 2HMaces: 1500 - 2HSpears: 1500 + Maces2H: 1500 + Spears2H: 1500 Knuckles: 1500 Shotguns: 12000 } @@ -13110,8 +13110,8 @@ mob_db: ( // Strong Resistance to Staff, Vulnerable to 2H and Rifle WeaponAttacks: { Staves: 1500 - 2HMaces: 11500 - 2HSpears: 11500 + Maces2H: 11500 + Spears2H: 11500 Knuckles: 11500 Rifles: 12000 } @@ -13213,7 +13213,7 @@ mob_db: ( // Strong Resistance to 1H Swords, Vulnerable to Rifle WeaponAttacks: { Daggers: 1500 - 1HSwords: 1500 + Swords1H: 1500 Rifles: 12000 GatlingGuns: 11000 } @@ -13264,7 +13264,7 @@ mob_db: ( // Strong Resistance to Lightsaber, vulnerable to bows & rifles WeaponAttacks: { Katars: 1400 - 1HSwords: 9000 + Swords1H: 9000 Bows: 12000 Rifles: 15000 } |