Hercules icon indicating copy to clipboard operation
Hercules copied to clipboard

Metallic Sound & Deep Sleep / Sleep damage

Open Helheim90X opened this issue 8 years ago • 1 comments

http://valhabar.roserver.net/foro/index.php?topic=17.0 http://irowiki.org/wiki/Metallic_Sound

Damage is not being increased in Sleep Status nor deep sleep... According to skill description:
Targets affected by Sleep or Deep Sleep receive 1.5x the damage. The SP drain is not increased. Targets affected by Deep Sleep also receive the 1.5x damage that Deep Sleep causes on the next attack (total of 2.25x damage) Targets affected by Deep Sleep also receive the 1.5x damage that Deep Sleep causes on the next attack (total of 2.25x damage).

Please, check it, it's tested in PVP...

Helheim90X avatar Jul 23 '15 18:07 Helheim90X

if those are true... that means...

case WM_METALICSOUND:
	skillratio = 120 * skill_lv + 60 * ( sd? pc->checkskill(sd, WM_LESSON) : 10 );
	if (tsc) {
		if (tsc->data[SC_SLEEP])
			skillratio += 150;
		if (tsc->data[SC_DEEP_SLEEP)
			skillratio += 75;
	}
	RE_LVL_DMOD(100);
	break;

MrKeiKun avatar Apr 20 '21 01:04 MrKeiKun