Issue information

Issue ID
#6342
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Jul 26, 2012 14:09
Last Post
Mysterious
Jan 27, 2013 17:19
Confirmation
N/A

Hercules Elf Bot - Jul 26, 2012 14:09

Originally posted by [b]Angezerus[/b]
Angelus increases only vit part of statusdef by (5*Skilllevel)%
Def provided by agi is not increased.

Hercules Elf Bot - Jul 27, 2012 0:00

Originally posted by [b]Igniz[/b]
Uhm, could you explain this more and post your source? (because i searched and i can't find info about def by agi) thanks

Hercules Elf Bot - Jul 27, 2012 7:16

Originally posted by [b]Angezerus[/b]
http://irowiki.org/wiki/Stats
[quote]Every 5 AGI: Status defense +1[/quote] (this is not status like curse or the others)

Hercules Elf Bot - Jul 27, 2012 7:28

Originally posted by [b]malufett[/b]
[quote]Def provided by agi is not increased.[/quote]
I don't get it..:)
anyway I'll test it in kro/iro

Hercules Elf Bot - Jul 27, 2012 7:36

Originally posted by [b]Angezerus[/b]
Uhm:

Every 5 AGI: Status defense +1 (Not affected by angelus)
Every 2 VIT: Status DEF +1 (Affected by angelus)


Did I misunderstand something? O.o
Anyways, heres the change notice:

http://forums.irowiki.org/showthread.php?p=455324
[quote]
[Angelus][list]
[*]Angelus skill now increases the status defense granted by your VIT stat.
[/list]
[/quote]

Hercules Elf Bot - Jul 27, 2012 7:38

Originally posted by [b]malufett[/b]
ow..now I get it..thanks for the clarification.. :)

now I remember that is why I didn't see any changes before when angelus was buff on me... /kis2

This post has been edited by malufett on Jul 27, 2012 7:42

Hercules Elf Bot - Jul 28, 2012 9:45

Originally posted by [b]malufett[/b]
Confirmed just tested with Acolyte in iRO....

Hercules Elf Bot - Jul 28, 2012 10:11

Originally posted by [b]clydelion[/b]
here's quick fix
[CODE]
Index: status.c
===================================================================
--- status.c (revision 16496)
+++ status.c (working copy)
@@ -4830,6 +4830,8 @@
#ifdef RENEWAL
if(sc->data[SC_ASSUMPTIO])
mdef2 *= 2;
+ if(sc->data[SC_ANGELUS])
+ mdef2 += status_get_base_status(bl)->agi / 5; //every 5 agi increases MDEF2(renewal)
#endif
if(sc->data[SC_MINDBREAKER])
mdef2 -= mdef2 * sc->data[SC_MINDBREAKER]->val3/100;
[/CODE]

Hercules Elf Bot - Jul 28, 2012 13:21

Originally posted by [b]malufett[/b]
Fixed @ [rev='16520']