Permalink
1 comment
on commit
Please
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
* Added AEGIS 'CLASS_' enum
- Removed RC_BOSS, RC_NONBOSS, RC_NONDEMIHUMAN. - Added CLASS_NORMAL, CLASS_BOSS, CLASS_GUARDIAN enum. - Added CLASS_ALL, RC_ALL, ELE_ALL, SZ_ALL. - Item bonuses 'bAddDefClass' and 'bAddMdefClass' replaced by 'bAddDefMonster' and 'bAddMdefMonster'. - Item bonuses 'bIgnoreMdefRate' and 'bIgnoreDefRate' replaced by 'bIgnoreMdefRaceRate' and 'bIgnoreDefRaceRate'. - Added new item bonuses: bIgnoreDefClass, bIgnoreMdefRaceRate, bDefRatioAtkClass, bAddClass, bSubClass, bMagicAddClass, bWeaponComaClass, bHpDrainValueClass, bSpDrainValueClass, bIgnoreMdefClassRate. - Updated doc/item_bonus.txt - Updated db/re/level_penalty.txt & 'pc_level_penalty_mod' function. - Updated 'battle_calc_cardfix' function. - 'md->class_' replaced by 'md->mob_id'
- Loading branch information
Showing
with
1,082 additions
and 964 deletions.
- +23 −7 db/const.txt
- +21 −21 db/pre-re/item_combo_db.txt
- +98 −98 db/pre-re/item_db.txt
- +37 −38 db/re/item_combo_db.txt
- +200 −200 db/re/item_db.txt
- +44 −40 db/re/level_penalty.txt
- +48 −53 doc/item_bonus.txt
- +6 −6 src/map/atcommand.c
- +149 −140 src/map/battle.c
- +1 −1 src/map/battle.h
- +6 −6 src/map/elemental.c
- +1 −1 src/map/log.c
- +23 −10 src/map/map.h
- +2 −2 src/map/mercenary.c
- +149 −142 src/map/mob.c
- +16 −14 src/map/mob.h
- +1 −1 src/map/npc.c
- +1 −1 src/map/party.c
- +167 −116 src/map/pc.c
- +33 −23 src/map/pc.h
- +3 −3 src/map/pet.c
- +2 −2 src/map/script.c
- +21 −22 src/map/skill.c
- +25 −14 src/map/status.c
- +3 −1 src/map/status.h
- +2 −2 src/map/unit.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -521,8 +521,8 @@ bGetZenyNum 1041 | ||
| bAddGetZenyNum 1042 | ||
| bAddDamageClass 1043 | ||
| bAddMagicDamageClass 1044 | ||
| bAddDefMonster 1045 | ||
| bAddMdefMonster 1046 | ||
| bAddMonsterDropItem 1047 | ||
This comment has been minimized. |
||
| bDefRatioAtkEle 1048 | ||
| bDefRatioAtkRace 1049 | ||
| @@ -561,8 +561,8 @@ bWeaponAtkRate 1082 | ||
| bDelayrate 1083 | ||
| bHPDrainRateRace 1084 | ||
| bSPDrainRateRace 1085 | ||
| bIgnoreMdefRaceRate 1086 | ||
| bIgnoreDefRaceRate 1087 | ||
| bSkillHeal2 1088 | ||
| bAddEffOnSkill 1089 | ||
| bHealPower 1090 | ||
| @@ -634,6 +634,17 @@ bSetDefRace 2059 | ||
| bSetMDefRace 2060 | ||
| bHPVanishRate 2061 | ||
|
|
||
| bIgnoreDefClass 2062 | ||
| bIgnoreMdefRaceRate 2063 | ||
This comment has been minimized.
cydh
Contributor
|
||
| bDefRatioAtkClass 2064 | ||
| bAddClass 2065 | ||
| bSubClass 2066 | ||
| bMagicAddClass 2067 | ||
| bWeaponComaClass 2068 | ||
| bHpDrainValueClass 2069 | ||
| bSpDrainValueClass 2070 | ||
| bIgnoreMdefClassRate 2071 | ||
|
|
||
| EQI_HEAD_TOP 1 | ||
| EQI_ARMOR 2 | ||
| EQI_HAND_L 3 | ||
| @@ -694,6 +705,7 @@ Ele_Holy 6 | ||
| Ele_Dark 7 | ||
| Ele_Ghost 8 | ||
| Ele_Undead 9 | ||
| Ele_All 10 | ||
|
|
||
| RC_Formless 0 | ||
| RC_Undead 1 | ||
| @@ -705,9 +717,12 @@ RC_Demon 6 | ||
| RC_DemiHuman 7 | ||
| RC_Angel 8 | ||
| RC_Dragon 9 | ||
| RC_All 10 | ||
|
|
||
| Class_Normal 0 | ||
| Class_Boss 1 | ||
| Class_Guardian 2 | ||
| Class_All 3 | ||
|
|
||
| RC2_None 0 | ||
| RC2_Goblin 1 | ||
| @@ -720,6 +735,7 @@ RC2_Ninja 6 | ||
| Size_Small 0 | ||
| Size_Medium 1 | ||
| Size_Large 2 | ||
| Size_All 3 | ||
|
|
||
| BF_WEAPON 0x0001 | ||
| BF_MAGIC 0x0002 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
1 comment
on commit dae8122
There was a problem hiding this comment.
seems like you need make a post on forum about this and also (re)tell everyone about the new and modified item bonuses work.
I think u forgot them on doc/item_bonus.txt?