Fotia Shield [1], броня (Renewal)
Fotia Shield [1] (FOTIA_SHIELD) – броня.
![Fotia Shield [1], броня (Renewal) Fotia Shield [1], броня (Renewal)](/images/db/items/picture/28955.png)
A shield with the power of fire. There are various effects depending on the user's stats.
Mdef + 10
This item is indestructible in battle.
Reduces damage taken from Fire property attacks by 10%.
Increases physical and magical damage on Fire property targets by 5%.
If Fotia Shield [1] upgrade level is +6 or higher,
Reduces damage taken from Fire property attacks by an additional 15%.
Increases physical and magical damage on Fire property targets by an additional 10%.
If upgrade level is +8 or higher,
If the user's base Str is 90 or higher, Atk + 50.
If the user's base Agi is 90 or higher, Aspd + 5%.
If the user's base Vit is 90 or higher, increases the recovery rate of recovery skills and recovery items by 10%.
If the user's base Int is 90 or higher, Matk + 30.
If the user's base Dex is 90 or higher, reduces the variable casting time of skills by 5%.
If the user's base Luk is 90 or higher, increases critical damage on targets by 5%.
Базовые свойства предмета
- ID: 28085
 - Код: FOTIA_SHIELD
 - Тип: броня
 - Уровень брони: 1
 - Защита: 120
 - Требуемый уровень: 90
 
- Цена покупки: 20 з
 - Цена продажи: 10 з
 - Вес: 100
 
Скрипт
.@r = getrefine();
bonus bUnbreakableShield;
bonus bMdef,5;
bonus2 bSubEle,Ele_Fire,10;
bonus2 bAddEle,Ele_Fire,5;
bonus2 bMagicAddEle,Ele_Fire,5;
if (.@r>=6) {
   bonus2 bSubEle,Ele_Fire,15;
   bonus2 bAddEle,Ele_Fire,10;
   bonus2 bMagicAddEle,Ele_Fire,10;
}
if (.@r>=8) {
   if (readparam(bStr)>=90)
      bonus bBaseAtk,50;
   if (readparam(bAgi)>=90)
      bonus bAspdRate,5;
   if (readparam(bInt)>=90)
      bonus bMatk,30;
   if (readparam(bVit)>=90)
      bonus bAddItemHealRate,10;
   if (readparam(bDex)>=90)
      bonus bVariableCastrate,-5;
   if (readparam(bLuk)>=90)
      bonus bCritAtkRate,5;
}