Insecticide Badge, (Renewal)
Insecticide Badge (INSECTICIDE_BADGE) – карта.

If the user's base level is lower than 175, increases EXP gained from killing insect race monsters by 15%.
If the user's base level is 175 or higher, increases EXP gained from killing insect race monsters by 7%.
[Bonus by grade of enchanted headgear]
[Grade D] Increases EXP gained from killing insect race monsters by additional 1%.
[Grade C] Increases EXP gained from killing insect race monsters by additional 3%.
[Grade B] Increases EXP gained from killing insect race monsters by additional 5%.
Базовые свойства предмета
- ID: 18930
 - Код: INSECTICIDE_BADGE
 - Тип: карта
 - Подтип:
 
- Вес: 1
 
Скрипт
.@g = getenchantgrade();
if (BaseLevel<175) {
   bonus2 bExpAddRace,RC_Insect,15;
}
if (BaseLevel>=175) {
   bonus2 bExpAddRace,RC_Insect,7;
}
if (.@g>=ENCHANTGRADE_D) {
   bonus2 bExpAddRace,RC_Insect,1;
   if (.@g>=ENCHANTGRADE_C) {
      bonus2 bExpAddRace,RC_Insect,3;
      if (.@g>=ENCHANTGRADE_B) {
         bonus2 bExpAddRace,RC_Insect,5;
      }
   }
}