
RENEWAL / ITEMS
Burning Night Card
#300441Card
Burning_Knight_Card
TypeCard
Card placementWeapon
Weight1
Buy price0 z
Sell price0 z
Card illustration
Description
ATK + 5%.
------------------------
When compounded on One-handed Axe or Two-handed Axe, gain the following effects:
------------------------
Increase long-range physical damage by 10%.
For every 3 refine level of Weapon, increase long-range physical damage by additional 2%.
When Base level is 200 or higher, for every 3 refine level of Weapon, increase long-range physical damage by additional 3%.
------------------------
Type : Card
Compound on : Weapon
Weight : 1
English Renewal client description · iRO. Numeric server data above takes precedence when the client text differs.
Item details
- Card placement
- Weapon
- Trade
Item effect script
.@r = getrefine();
bonus bAtkRate,5;
.@view = getiteminfo(getequipid(EQI_HAND_R), ITEMINFO_VIEW);
if (.@view == W_1HAXE || .@view == W_2HAXE) {
bonus bLongAtkRate,2*(.@r/3)+10;
if (BaseLevel>=200) {
bonus bLongAtkRate,3*(.@r/3);
}
}