diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-21 17:08:08 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-21 17:08:08 +0000 |
commit | be72ecd0560eb5dcdcc15805491e48e2d63f4e0e (patch) | |
tree | f92f63c46e001c557993e1d6b605163c561bfddc /db | |
parent | 2f3160392cbb364d08ae40d61d2e11f587a6dc8a (diff) | |
download | hercules-be72ecd0560eb5dcdcc15805491e48e2d63f4e0e.tar.gz hercules-be72ecd0560eb5dcdcc15805491e48e2d63f4e0e.tar.bz2 hercules-be72ecd0560eb5dcdcc15805491e48e2d63f4e0e.tar.xz hercules-be72ecd0560eb5dcdcc15805491e48e2d63f4e0e.zip |
- Removed the +25% mdef, -50% def effect from Freeze status
- Changed autocast skills, they now only work with normal attacks
- Fixed a few spots where the attack_type flag was getting truncated
- Hopefully fixed the cygwin + size_t problem (using stddef.h as source)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10298 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'db')
-rw-r--r-- | db/Changelog.txt | 1 | ||||
-rw-r--r-- | db/const.txt | 2 | ||||
-rw-r--r-- | db/item_db.txt | 4 |
3 files changed, 5 insertions, 2 deletions
diff --git a/db/Changelog.txt b/db/Changelog.txt index 15e9a9804..9e8225520 100644 --- a/db/Changelog.txt +++ b/db/Changelog.txt @@ -20,6 +20,7 @@ ======================== 04/21 + * Added entries to const.txt, updated the new autocast cards * Reorganized some entries in packet_db.txt [ultramage] 04/20 * Fixed Aegis onspawn bug [Playtester] diff --git a/db/const.txt b/db/const.txt index 7a7ad1d22..b439e75d5 100644 --- a/db/const.txt +++ b/db/const.txt @@ -446,6 +446,8 @@ BF_MAGIC 0x0002 BF_MISC 0x0004 BF_SHORT 0x0010 BF_LONG 0x0040 +BF_SKILL 0x0100 +BF_NORMAL 0x0200 IG_BlueBox 1 IG_VioletBox 2 diff --git a/db/item_db.txt b/db/item_db.txt index e1a24dced..57585c217 100644 --- a/db/item_db.txt +++ b/db/item_db.txt @@ -1549,8 +1549,8 @@ 4360,Eremes_Card,Eremes Guile Card,6,,10,10,,,,,,,,2,,,,,{ bonus2 bCriticalAddRace,RC_DemiHuman,10; },{},{} 4361,Whitesmith_Card,Whitesmith Card,6,,10,10,,,,,,,,2,,,,,{ bonus bBreakWeaponRate,1000; bonus bBreakArmorRate,700; },{},{} 4362,Harword_Card,Howard Alt-Eisen Card,6,,10,10,,,,,,,,2,,,,,{ bonus bAspdRate,-5; bonus bHit,30; },{},{} -4363,High_Priest_Card,High Priest Card,6,,10,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,361,1,10,BF_WEAPON|BF_MAGIC|BF_LONG|BF_SHORT,0; },{},{} -4364,Magaleta_Card,Margaretha Solin Card,6,,10,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus5 bAutoSpellWhenHit,76,5,150,BF_MAGIC|BF_LONG|BF_SHORT,1; },{},{} +4363,High_Priest_Card,High Priest Card,6,,10,10,,,,,,,,16,,,,,{ bonus5 bAutoSpellWhenHit,361,1,10,BF_WEAPON|BF_MAGIC|BF_SHORT|BF_LONG|BF_SKILL|BF_NORMAL,0; },{},{} +4364,Magaleta_Card,Margaretha Solin Card,6,,10,10,,,,,,,,769,,,,,{ bonus bInt,1; bonus5 bAutoSpellWhenHit,76,5,150,BF_MAGIC|BF_LONG|BF_SHORT|BF_SKILL|BF_NORMAL,1; },{},{} 4365,High_Wizard_Card,High Wizard Card,6,,10,10,,,,,,,,769,,,,,{ bonus bIgnoreMDefRace,RC_NonBoss; bonus bCastrate,100; bonus bSPrecovRate,-100; },{},{ heal 0,-2000; } 4366,Katrinn_Card,Kathryne Keyron Card,6,,10,10,,,,,,,,769,,,,,{ bonus bCastrate,getrefine()*-1; if(getrefine()>=9) { bonus bMatkRate,2; } },{},{} 4367,Sniper_Card,Sniper Card,6,,10,10,,,,,,,,2,,,,,{ bonus bNoRegen,1; bonus2 bHpDrainRate,50,20; },{},{} |