Full Force
| Item ID | 21053 | Name | Full Force |
|
It is said that he will unleash all the power of what he has acquired and surpass his limits.
_______________________ Increases Attack Speed (decreases After Attack Delay by 10%). _______________________ For each Refine Level: ATK +1 _______________________ When equipped with Doppelganger Card: Enables the use of Level 1 Lex Aeterna. Base Level is 99 or less: For each Refine Level: ASPD +2% Increases Physical Damage by 4%. Base Level at least 100: For each Refine Level: ASPD +5% Increases Physical Damage by 10%. _______________________ When equipped with Sealed Doppelganger Card: Base Level is 99 or less: For each Refine Level: ASPD +1% Increases Physical Damage by 2%. Base Level at least 100: For each Refine Level: ASPD +2% Increases Physical Damage by 4%. _______________________ Type: Two-Handed Sword Attack: 300 Weight: 220 Weapon Level: 4 _______________________ Requirement: Base Level 99 Swordsman classes |
|---|---|---|---|---|---|
| Weapon Level | 4 | Identifier | FullForce | ||
| Attack | 300 | Type | Weapon - Two-Handed Sword | ||
| MATK | 0 | Equip Locations | Two-Handed | ||
| Defense | 0 | Equippable Jobs | Swordman, Knight, Crusader | ||
| Range | 1 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 220 | Min Equip Level | 99 | ||
| NPC Buy | 0 | Max Equip Level | None | ||
| NPC Sell | 0 | Refineable | Yes | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
bonus bUnbreakableWeapon; bonus bAspdRate,10; bonus bBaseAtk,pow(getrefine(),2)*4; |
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_HAND_R);
skill "PR_LEXAETERNA",1;
if (BaseLevel >= 100) {
bonus bAspdRate,5*.@r;
bonus2 bAddRace,RC_All,10*.@r;
}
else {
bonus bAspdRate,2*.@r;
bonus2 bAddRace,RC_All,4*.@r;
}
|
||||
|
.@r = getequiprefinerycnt(EQI_HAND_R);
if (BaseLevel >= 100) {
bonus bAspdRate,5*.@r;
bonus2 bAddRace,RC_All,10*.@r;
}
else {
bonus bAspdRate,2*.@r;
bonus2 bAddRace,RC_All,4*.@r;
}
|