Issue information

Issue ID
#519
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Nov 30, 2007 20:03
Last Post
Hercules Elf Bot
Nov 30, 2007 20:03
Confirmation
N/A

Hercules Elf Bot - Nov 30, 2007 20:03

Originally posted by [b][Leon][/b]
http://www.eathena.ws/board/index.php?autocom=bugtracker&showbug=519

http://rojournal.doddlercon.com/index.php?cat=2
QUOTE
(...) for now this thing is useful for lowering def on demon/undead MVPs such as bapho. And it works quite nicely at that.
(...)
Signum crusis level 5 boosts my damage on him by a good 20%, which is a substantial increase. While I'm not cursed (which isn't very often to be honest), I can deal in excess of 8000 damage per pierce. Even his healing can't keep up with my massive offensive.

I was reading Doddler's journal and it caught my attention that Signum Crucis works on bosses.

And it doesn't on eAthena:
CODE
    //Check for BOSS resistances
    if(status->mode&MD_BOSS && !(flag&1)) {
         if (type>=SC_COMMON_MIN && type <= SC_COMMON_MAX)
             return 0;
         switch (type) {
            case SC_BLESSING:
              if (!undead_flag && status->race != RC_DEMON)
                  break;
            case SC_QUAGMIRE:
            case SC_DECREASEAGI:
            case SC_SIGNUMCRUCIS:
            case SC_PROVOKE:
            case SC_ROKISWEIL:
            case SC_COMA:
            case SC_GRAVITATION:
            case SC_SUITON:
            case SC_STRIPWEAPON:
            case SC_STRIPSHIELD:
            case SC_STRIPARMOR:
            case SC_STRIPHELM:
                return 0;
        }
    }