Paradise Genetic Sword, одноручный меч (Renewal)
Paradise Genetic Sword (3PARA_SWORD_GN) – оружие.

Can't be refined.
Atk + 5%, increases melee physical damage by 2% per each level of Sword Training user learned.
If the user's base level is 105 or higher, reduces global cooldown by 5%, increases Hell Plant and Cart Tornado damage by 25%.
If the user's base level is 110 or higher, reduces global cooldown by additional 10%, increases magical damage against all size enemies by 15%.
If the user's base level is 115 or higher, increases Hell Plant and Cart Tornado damage by additional 15%.
Базовые свойства предмета
- ID: 31176
 - Код: 3PARA_SWORD_GN
 - Тип: оружие
 - Подтип: одноручный меч
 - Уровень оружия: 4
 - Атака: 180
 - Требуемый уровень: 100
 - Профессии: alchemist
 
- Вес: 1
 
Скрипт
.@l = BaseLevel;
.@a = getskilllv("GN_TRAINING_SWORD");
bonus bShortAtkRate,2*.@a;
bonus bAtkRate,5;
if (.@l>=105) {
   bonus bDelayrate,-5;
   bonus2 bSkillAtk,"GN_HELLS_PLANT",25;
   bonus2 bSkillAtk,"GN_CART_TORNADO",25;
   if (.@l>=110) {
      bonus bDelayrate,-10;
      bonus2 bAddSize,Size_All,15;
      if (.@l>=115) {
         bonus2 bSkillAtk,"GN_HELLS_PLANT",15;
         bonus2 bSkillAtk,"GN_CART_TORNADO",15;
      }
   }
}