taken directly from kro's data.grf file and converted with ragtxtpr, when you put it in google translate they all say "required lvl 1" (i also was able to equip them as a 1/1 high novice on kro sakray). "MATK + 5" is equipment matk, which should be "bonus bEquipmentMatk,5;" in rathena. bradium ring is not working as intended, it should give "bonus bBaseAtk,5;". and bradium brooch doesn't give 2% attack speed.
i know iro customized them for some reason (or maybe they just haven't updated them with renewal stats yet?), but i thought rathena was suppose to be based on kro and not iro =\
sorry i dont have screen shots anymore, next time i trans something on kro ill screen shot it along with the atk/matk/attack speed things <3
Hercules Elf Bot - Dec 19, 2011 2:25
Originally posted by [b]Ind[/b] no it shouldn't be bEquipmentMatk, in rAthena we use a different (and better) way to work with MATK in gears -- see item_db_re.txt comments at the first lines of the file.
This post has been edited by
Ind
on Dec 19, 2011 2:26
Hercules Elf Bot - Dec 24, 2011 0:37
Originally posted by [b]Muad_Dib[/b] [CODE]
// ID: 2787
item Waterdrop_Brooch
event OnStartEquip:
AddExtParam User VAR_MAXHPPERCENT 1
AddAttrTolerace PROPERTY_Water 5
return
event OnFinishEquip:
SubExtParam User VAR_MAXHPPERCENT 1
SubAttrTolerace PROPERTY_Water 5
return
// ID: 2788
item Bradium_Earing
event OnStartEquip:
AddExtParam User VAR_ATTMPOWER 5
return
event OnFinishEquip:
SubExtParam User VAR_ATTMPOWER 5
return
// ID: 2789
item Bradium_Ring
event OnStartEquip:
AddExtParam User VAR_ATTPOWER 5
return
event OnFinishEquip:
SubExtParam User VAR_ATTPOWER 5
return
// ID: 2790
item Bradium_Brooch
event OnStartEquip:
AddExtParam User VAR_AVOIDSUCCESSVALUE 4
if (get[VAR_STANDARD_AGI] == 120)
AddExtParam User VAR_CRITICALSUCCESSVALUE 40
endif
return
event OnFinishEquip:
SubExtParam User VAR_AVOIDSUCCESSVALUE 4
if (get[VAR_STANDARD_AGI] == 120)
SubExtParam User VAR_CRITICALSUCCESSVALUE 40
endif
return
[/CODE]