Immortal Dog Tag
| Item ID | 32204 | Name | Immortal Dog Tag |
|
An old rusty dog tag worn by Immortal Corps.
_______________________ ATK +50 MATK +50 _______________________ Decreases damage taken from Undead race by 4%. _______________________ When equipped with Juliette de Rachel: For each Refine Level of Juliette de Rachel: ATK +5% _______________________ When Refine Level of Juliette de Rachel is +9 or higher: Random chance to auto-cast Level 10 Oratio when using Rolling Cutter. _______________________ When equipped with Sunflower Boy: For each Refine Level of Sunflower Boy: INT +2 Increases damage of Crimson Rock by 1%. _______________________ When Refine Level of Sunflower Boy is +9 or higher: Random chance to increase Magical Damage with Fire element by 50% for 10 seconds when dealing magical damage. Restores 500 HP when defeating monster with magical attack. _______________________ When equipped with Lindy Hop: For each Refine Level of Lindy Hop: Increases Critical Damage by 3%. _______________________ When Refine Level of Lindy Hop is +9 or higher: Critical +50 Increases Physical Damage against enemies of Boss class by 25%. _______________________ Type: Accessory Weight: 10 Armor Level: 1 _______________________ Requirement: Base Level 100 |
|---|---|---|---|---|---|
| Weapon Level | 0 | Identifier | Immortal_Dog_Tag | ||
| Attack | 0 | Type | Armor | ||
| MATK | 0 | Equip Locations | Accessory Left/Right | ||
| Defense | 0 | Equippable Jobs | None | ||
| Range | 0 | Equip Gender | Both (Male and Female) | ||
| Slots | 1 | Equip Upper | None | ||
| Weight | 10 | Min Equip Level | 100 | ||
| NPC Buy | 20 | Max Equip Level | None | ||
| NPC Sell | 10 | Refineable | No | ||
| Credit Price | None | Trade restriction | None | ||
| Item Script |
bonus bBaseAtk,50; bonus bMatk,50; bonus2 bSubRace,RC_Undead,4; |
||||
| Set | Script | ||||
|---|---|---|---|---|---|
|
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus bInt,2*.@r;
bonus2 bSkillAtk,"WL_CRIMSONROCK",.@r;
if (.@r >= 9) {
bonus bMagicHPGainValue,500;
bonus bHPGainValue,500;
autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,50; }",10,10000,BF_MAGIC,"{ specialeffect2 255; }";
}
|
||||
|
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus bCritAtkRate,3*.@r;
if (.@r >= 9) {
bonus bCritical,50;
bonus2 bAddClass,Class_Boss,25;
}
|
||||
|
.@r = getequiprefinerycnt(EQI_HAND_R); bonus2 bAddClass,Class_All,5*.@r; if (.@r >= 9) bonus4 bAutoSpellOnSkill,"GC_ROLLINGCUTTER","AB_ORATIO",10,100; |
||||
|
.@r = getequiprefinerycnt(EQI_HAND_R);
bonus bInt,2*.@r;
bonus2 bSkillAtk,"WL_CRIMSONROCK",.@r;
if (.@r >= 9) {
bonus bMagicHPGainValue,500;
autobonus "{ bonus2 bMagicAtkEle,Ele_Fire,50; }",10,10000,BF_MAGIC,"{ specialeffect2 255; }";
}
|