Celestial Jewel Crown
| Item ID | 400116 | Name | Celestial Jewel Crown |
|
A crown designed for specific subjects.
The blue jewel shines like a pupil and seems to see through the enemy. _______________________ For each 2 Refine Levels: ATK +20 _______________________ Refine Level +7: Increases Attack Speed (decreases After Attack Delay by 10%). _______________________ Refine Level +9: Increases Ranged Physical Damage by 15%. _______________________ Refine Level +11: Increases Physical Damage against enemies of every size by 10%. _______________________ When equipped with Sharp Star Bow: Increases Critical Damage by 20%. For each Refine Level of Sharp Star Bow: Increases damage of Sharp Shooting by 10%. _______________________ When equipped with Aiming Bow: Increases Ranged Physical Damage by 10%. For each Refine Level of Aiming Bow: Increases damage of Aimed Bolt by 10%. _______________________ When equipped with Falken Shooter: Decreases Arrow Storm skill cooldown by 1.8 seconds. For each Refine Level of Falken Shooter: Increases damage of Arrow Storm by 10%. _______________________ Type: Headgear Defense: 10 Position: Upper Weight: 10 Armor Level: 1 _______________________ Requirement: Base Level 170 Ranger |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | BioWeapon_Helm_RA | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Upper Headgear | ||
| Defense | 10 | Equippable Jobs | Hunter | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | Third, Third Upper, Third Baby | ||
| Weight | 10 | Min Equip Level | 170 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
.@r = getrefine();
bonus bBaseAtk,20*(.@r/2);
if (.@r>=7) {
bonus bAspdRate,10;
}
if (.@r>=9) {
bonus bLongAtkRate,15;
}
if (.@r>=11) {
bonus2 bAddSize,Size_All,10;
}
|
||||
| Set | Script | ||||||
|---|---|---|---|---|---|---|---|
|
.@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bCritAtkRate,20; bonus2 bSkillAtk,"SN_SHARPSHOOTING",10*.@r_weapon; |
||||||
|
.@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus bLongAtkRate,10; bonus2 bSkillAtk,"RA_AIMEDBOLT",10*.@r_weapon; |
||||||
|
.@r_weapon = getequiprefinerycnt(EQI_HAND_R); bonus2 bSkillCooldown,"RA_ARROWSTORM",-1800; bonus2 bSkillAtk,"RA_ARROWSTORM",10*.@r_weapon; |
||||||
|
.@sum = getequiprefinerycnt(EQI_HEAD_TOP) + getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_SHOES);
if (.@sum >= 33) {
autobonus3 "{ bonus2 bSkillAtk,\"RA_AIMEDBOLT\",250; }",1000,30000,"RA_UNLIMIT";
if (.@sum >= 35) {
bonus2 bIgnoreDefRaceRate,RC_All,40;
bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40;
bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40;
}
}
|
||||||
|
.@sum = getequiprefinerycnt(EQI_HEAD_TOP) + getequiprefinerycnt(EQI_HAND_R) + getequiprefinerycnt(EQI_SHOES);
if (.@sum >= 33) {
autobonus3 "{ bonus2 bSkillAtk,\"RA_AIMEDBOLT\",250; }",1000,30000,"RA_UNLIMIT";
if (.@sum >= 35) {
bonus2 bIgnoreDefRaceRate,RC_All,40;
bonus2 bIgnoreDefRaceRate,RC_Player_Doram,-40;
bonus2 bIgnoreDefRaceRate,RC_Player_Human,-40;
}
}
|