diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-07 17:01:29 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-07 17:01:29 +0000 |
commit | 6a2893723c01846d52cc2f333805c87469729f6c (patch) | |
tree | fc3e6e0c0abf7ab37d7b5578531bc699360553cb /src/map/pc.h | |
parent | bf5d35ffa62f9cc19f20f27fd5bd364f5fc13d7c (diff) | |
download | hercules-6a2893723c01846d52cc2f333805c87469729f6c.tar.gz hercules-6a2893723c01846d52cc2f333805c87469729f6c.tar.bz2 hercules-6a2893723c01846d52cc2f333805c87469729f6c.tar.xz hercules-6a2893723c01846d52cc2f333805c87469729f6c.zip |
Swapped the weapon type IDs of Shotgun and Gatling Gun weapons to match aegis.
Added Mace Mastery bonus to 2handed maces, and made them unbreakable.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12779 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index bd2baea96..0991d5150 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -378,7 +378,7 @@ enum weapon_type { W_1HAXE, //6 W_2HAXE, //7 W_MACE, //8 - W_2HMACE, //9, unused? + W_2HMACE, //9 (unused) W_STAFF, //10 W_BOW, //11 W_KNUCKLE, //12 @@ -388,8 +388,8 @@ enum weapon_type { W_KATAR, //16 W_REVOLVER, //17 W_RIFLE, //18 - W_SHOTGUN, //19 - W_GATLING, //20 + W_GATLING, //19 + W_SHOTGUN, //20 W_GRENADE, //21 W_HUUMA, //22 MAX_WEAPON_TYPE, |