Ring of Venus

Item ID 490068 Name Ring of Venus
A ring imbued with the power of a great star. It is said to give power to those who possess it.
_______________________
When equipped as Accessory Right:
For each 10 base DEX:
Increases Ranged Physical Damage by 1%.
Increases resistance to Stun status by 3%.

Base DEX at least 125:
Decreases Fixed Casting Time by 70%.
Decreases damage taken from Fire, Water, Wind and Earth elemental attacks by 5%.
_______________________
When equipped as Accessory Left:
For each 10 base AGI:
Increases Damage by 1%.

Base AGI at least 125:
Increases Movement Speed.
Decreases After Skill Delay by 25%.
_______________________
Type: Accessory
Defense: 2
Weight: 50
Armor Level: 1
_______________________
Requirement:
Base Level 100
Weapon Level 0 Identifier RingofVenus
Attack 0 Type Armor
MATK 0 Equip Locations Accessory Left/Right
Defense 2 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 50 Min Equip Level 100
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable No
Credit Price None Trade restriction None
Item Script
.@p = getitempos();
.@a = readparam(bAgi);
.@d = readparam(bDex);
if (.@p == EQP_ACC_L) {
   bonus2 bAddRace,RC_All,.@a / 10;
   bonus2 bMagicAddRace,RC_All,.@a/10;
   if (.@a>=125) {
      bonus bSpeedRate,25;
      bonus bDelayrate,-25;
   }
}
if (.@p == EQP_ACC_R) {
   bonus bLongAtkRate,.@d / 10;
   bonus2 bResEff,Eff_Stun,3*(.@d/10);
   if (.@d>=125) {
      bonus bFixedCastrate,-70;
      bonus2 bSubEle,Ele_Earth,5;
      bonus2 bSubEle,Ele_Water,5;
      bonus2 bSubEle,Ele_Wind,5;
      bonus2 bSubEle,Ele_Fire,5;
   }
}