Gambler's Seal, броня (Renewal)
Gambler's Seal (GAMBLER_SEAL) – броня.

A Seal once owned by a legendary gambler. Only those who know what true luck is, will be able to get the seal.
Crit + 3
Increases critical damage on targets by 3%.
Reduces damage taken from Arrow Storm and Gates of Hell by 10%.
Reduces critical damage on targets by an additional 2% for every 10 base Dex.
Additional Crit + 1, Atk and Matk + 2 for every 10 base Luk.
Additional Crit + 5 and increases critical damage on targets by an additional 10%, if the users base Luk is 108 or higher.
Additional Crit + 10, increases critical damage on targets by an additional 17% and reduces damage taken from Arrow Storm and Gates of Hell by an additional 30%, if the users base Luk is 120 or higher.
Set Bonus
Gambler's Seal
Heart Card in Mouth
Aspd + 1
Additional Aspd + 1, if the users base Luk is 108 or higher.
Additional Aspd + 2, if the users base Luk is 120 or higher.
Increases critical damage on targets by 2%.
Increases critical damage on targets by an additional 2%, if the users base Luk is 108 or higher.
Increases critical damage on targets by an additional 4%, if the users base Luk is 120 or higher.
Increases critical damage on targets by an additional 2% for every 10 base Dex.
Reduces damage taken from Demi-Human race enemies by 2%.
Reduces damage taken from Demi-Human race enemies by an additional 2%, if the users base Luk is 108 or higher.
Reduces damage taken from Demi-Human race enemies by an additional 4%, if the users base Luk is 120 or higher.
Reduces damage taken from Critical Slash by 100%.
Enables Splash Attacks, if the users base Luk is 120 or higher.
Базовые свойства предмета
- ID: 23227
- Код: GAMBLER_SEAL
- Тип: броня
- Уровень брони: 1
- Требуемый уровень: 70
- Вес: 50
Скрипт
.@dex = readparam(bDex); .@luk = readparam(bLuk); .@critical = 3 + (.@luk / 10); .@critical_dmg = 3 - (.@dex/10) * 2; .@sub_arrowstorm = 10; .@sub_gateofhell = 10; bonus bBaseAtk,(.@luk/10)*2; bonus bMatk,(.@luk / 10) * 2; if (.@luk > 107) { .@critical += 5; .@critical_dmg += 10; } if (.@luk > 119) { .@critical += 10; .@critical_dmg += 17; .@sub_arrowstorm += 30; .@sub_gateofhell += 30; } bonus bCritical,.@critical; bonus bCritAtkRate,.@critical_dmg; bonus2 bSubSkill,"RA_ARROWSTORM",.@sub_arrowstorm; bonus2 bSubSkill,"SR_GATEOFHELL",.@sub_gateofhell;