Magic Swordsman Thanatos's Sword

Item ID 480136 Name Magic Swordsman Thanatos's Sword
A magic sword said to have been used by a powerful magic swordsman in the past.
Part of that power still resides in it.
_______________________
Base Level at least 210:
P.ATK +3, S.MATK +3.
_______________________
Base Level at least 230:
P.ATK +2, S.MATK +2.
_______________________
For each 3 Refine Levels:
Increases Melee and Ranged Physical Damage by 2%.
Increases Magical Damage with every element by 2%.
_______________________
For each 5 Refine Levels:
Increases Damage against enemies of Medium and Large size by 5%.
_______________________
Refine Level +9:
Ignores physical and magical defense of monsters of Dragon and Angel race by 20%.
_______________________
Refine Level +11:
Ignores physical and magical defense of monsters of Dragon and Angel race by additional 10%.
_______________________
When equipped with Drooping Thanatos's Dolor:
Decreases Variable Casting Time by 10%.

Refine Level of Drooping Thanatos's Dolor is +7 or higher:
Increases Damage against enemies of Holy and Shadow element by 15%.

Refine Level of Drooping Thanatos's Dolor is +9 or higher:
Increases Damage against enemies of Dragon and Angel race by 15%.

Refine Level of Drooping Thanatos's Dolor is +11 or higher:
Increases Damage against enemies of Medium and Large size by additional 15%.
_______________________
When equipped with either Red Force Pendant or Blue Mental Pendant:
ATK +50, MATK +50.
Increases Damage against enemies of Medium and Large size by additional 15%.
_______________________
Type: Garment
Defense: 60
Weight: 50
Armor Level: 2
_______________________
Requirement:
Base Level 180
Weapon Level 0 Identifier Thanatos_Sword
Attack 0 Type Armor
MATK 0 Equip Locations Garment
Defense 60 Equippable Jobs None
Range 0 Equip Gender Both (Male and Female)
Slots 1 Equip Upper None
Weight 50 Min Equip Level 180
NPC Buy 0 Max Equip Level None
NPC Sell 0 Refineable Yes
Credit Price None Trade restriction None
Item Script
.@r = getrefine();
if (BaseLevel>=210) {
   bonus bPAtk,3;
   bonus bSMatk,3;
}
if (BaseLevel>=230) {
   bonus bPAtk,2;
   bonus bSMatk,2;
}
if (.@r>=9) {
   bonus2 bIgnoreDefRaceRate,RC_Angel,20;
   bonus2 bIgnoreMdefRaceRate,RC_Angel,20;
   bonus2 bIgnoreDefRaceRate,RC_Dragon,20;
   bonus2 bIgnoreMdefRaceRate,RC_Dragon,20;
   if (.@r>=11) {
      bonus2 bIgnoreDefRaceRate,RC_Angel,10;
      bonus2 bIgnoreMdefRaceRate,RC_Angel,10;
      bonus2 bIgnoreDefRaceRate,RC_Dragon,10;
      bonus2 bIgnoreMdefRaceRate,RC_Dragon,10;
   }
}
bonus2 bMagicAtkEle,Ele_All,2*(.@r/3);
bonus bShortAtkRate,2*(.@r/3);
bonus bLongAtkRate,2*(.@r/3);
bonus2 bAddSize,Size_Medium,5*(.@r/5);
bonus2 bMagicAddSize,Size_Medium,5*(.@r/5);
bonus2 bAddSize,Size_Large,5*(.@r/5);
bonus2 bMagicAddSize,Size_Large,5*(.@r/5);

Set Script
Magic Swordsman Thanatos's Sword
Drooping Thanatos's Dolor
.@r = getequiprefinerycnt(EQI_GARMENT);
bonus bVariableCastrate,-10;
if (@r >= 7) {
   bonus2 bAddEle,Ele_Holy,15;
   bonus2 bAddEle,Ele_Dark,15;
   bonus2 bMagicAddEle,Ele_Holy,15;
   bonus2 bMagicAddEle,Ele_Dark,15;
   if (@r >= 9) {
      bonus2 bAddRace,RC_Angel,15;
      bonus2 bAddRace,RC_Dragon,15;
      bonus2 bMagicAddRace,RC_Angel,15;
      bonus2 bMagicAddRace,RC_Dragon,15;
      if (@r >= 11) {
         bonus2 bAddSize,Size_Medium,15;
         bonus2 bAddSize,Size_Large,15;
         bonus2 bMagicAddSize,Size_Medium,15;
         bonus2 bMagicAddSize,Size_Large,15;
      }
   }
}
Magic Swordsman Thanatos's Sword
Red Force Pendant
bonus bBaseAtk,50;
bonus bMatk,50;
bonus2 bAddSize,Size_Medium,15;
bonus2 bAddSize,Size_Large,15;
bonus2 bMagicAddSize,Size_Medium,15;
bonus2 bMagicAddSize,Size_Large,15;
Magic Swordsman Thanatos's Sword
Blue Mental Pendant
bonus bBaseAtk,50;
bonus bMatk,50;
bonus2 bAddSize,Size_Medium,15;
bonus2 bAddSize,Size_Large,15;
bonus2 bMagicAddSize,Size_Medium,15;
bonus2 bMagicAddSize,Size_Large,15;