Jump to content

  •  

Bug Tracker Migration

June 3rd
Good news everyone! The staff has decided that it is time to slowly kill off this Bug Tracker. We will begin the process of slowly migrating from this Bug Tracker over to our Github Issues which can be found here: https://github.com/HerculesWS/Hercules/issues

Over the next couple of days, I will be closing off any opportunity to create new reports. However, I still will keep the opportunity to reply to existing Bug Reports. Doing this will allow us to slowly fix any bug reports we have listed here so that we can easily migrate over to our Issue Tracker.

Update - June 7th 2015: Creating new bug posts has been disabled. Please use our https://github.com/HerculesWS/Hercules/issues tracker to post bugs. Users are still able to reply to existing bug posts.

- Administration

Issue Information

Issue Confirmations

  • Yes (1)No (1)
Photo

Tao Gunka effect on renewal

Posted by Hercules Bot on 30 May 2012 - 12:03 AM

Originally posted by Flaid
Hey,

if I am not mistaken the Tao Gunka Card effect got changed with renewal. Instead of -50 def and -50 mdef it's -50% def and -50% mdef now. The script didn't get changed yet though.

Originally posted by Kenpachi
Seems that I did a mistake in that other report.

preRE bonus:
item Tao_Gunka_Card
event OnStartEquip:
  AddExtParam User VAR_MAXHPPERCENT 100
  SubExtParam User VAR_MDEFPOWER 50
  SubExtParam User VAR_ITEMDEFPOWER 50
return
event OnFinishEquip:
  SubExtParam User VAR_MAXHPPERCENT 100
  AddExtParam User VAR_MDEFPOWER 50
  AddExtParam User VAR_ITEMDEFPOWER 50
return

RE bonus:
event OnStartEquip:
  AddExtParam User VAR_MAXHPPERCENT 100
  ModifyDEF_Fraction 1 2
  ModifyMDEF_Fraction 1 2
return
event OnFinishEquip:
  SubExtParam User VAR_MAXHPPERCENT 100
  ModifyDEF_Fraction 2 1
  ModifyMDEF_Fraction 2 1
return

In RE it's 50% not 50...

Originally posted by Kenpachi
Fixed in [rev=16247].