Item Details

Thief Shadow Earring ( S_Thief_earring )

ID 28391 Thief Shadow Earring
Thief Shadow Earring Цена покупки: zeny Цена продажи: 0 zeny Вес: 0 Слоты: Не указано
Тип: Предмет теневого снаряжения. Подтип: Не указано Пол: Оба Локации: Теневой аксессуар (правый) (Серьга)
Атака: Не указано Магическая атака: Не указано Диапазон: Не указано Защита: Не указано
Уровень оружия: Не указано Уровень брони: Не указано Мин. Уровень Снаряжения: 1 Макс. Уровень Снаряжения: Не указано
Поддается улучшению: 1 Оцениваемый: Не указано Элемент: Нейтральный Классы: Не указано

Brinco usado como complemento para os acessórios convencionais.
--------------------------
HP máx. +10 por refino.
--------------------------
Ao usar [Arremessar Pedra]:
20% de chance de ativar um [Efeito] por 5 segundos.
--------------------------
Efeito:
ATQ e Esquiva +30.
A cada refino:
ATQ e Esquiva +10.
--------------------------
Conjunto
Colar Sombrio de Gatuno
HP máx. +1%.
Dano físico contra todas as raças +1%.
Soma dos refinos do conjunto +10 ou mais:
HP máx. +2% adicional.
Dano físico contra todas as raças +2% adicional.
--------------------------
Tipo: Equip. Sombrio
Posição: Brinco
Peso: 0 Nv. mín.: 1
Classes: Todas

Sebuah Earring yang bisa meningkatkan kemampuan penggunanya.
Ketika menggunakan Throw Stone, terdapat 20% kemungkinan selama 5 Detik ATK & FLEE +30. Tambahan ATK & FLEE +10 setiap tingkat tempa.
Jika digunakan bersamaan dengan Thief Shadow Pendant, ATK +1%, MAXHP +1%.
Jika jumlah tingkat tempa mencapai 10 atau lebih, tambahan ATK +2%, MAXHP +2%.
Jenis : Shadow Equipment
Posisi : Earring Berat : 0
Lv Minimal : 1
Job : All Job

Attack: 0
Weight: 0
Weapon Level: 0

Account Bound.
Once upon a time, this pendant belonged to a legendary hero.
It helps to reveal the owner's hidden talents.
When using Stone Fling, with a 20% chance ATK, Flee +30 for 5 sec. ATK, Flee +10 per every refine level.

Set Bonus
Theif Shadow Pendant
Thief Shadow Earring
ATK+1%,
MaxHP +1%.
If total refine levels of entire set at least +10:
Weapon ATK Power +2%,
MaxHP +2%.
-------------
Class: Shadow Pendant
Defense: 0
Location: Right Shadow Accessory
Weight: 1
Required Level: 1
Job: All

Все

Не указано

Флаги
Можно добавить в скупочную лавку игрока? Нет
Призывает монстра? Нет
Является частью контейнера? Нет
Имеет уникальный стек? Нет
Привязывается при надевании? Нет
Объявляет выпадение? Нет
Расходуется при использовании? Да
Имеет эффект при падении? Нет
Стакирование
Не указано
Использование
Не указано
Торговля
Переопределить Не указано
Можно выбросить? Да
Можно обменять? Да
Можно обменять с партнером? Да
Можно продать NPC? Да
Можно поместить в тележку? Да
Можно поместить в хранилище? Да
Можно поместить в хранилище гильдии? Да
Можно отправить по почте? Да
Можно выставить на аукцион? Да
Задержка
Не указано
.@r = getrefine();
bonus bMaxHP,.@r*10;
autobonus3 "{ .@val = 30+(getrefine()*10); bonus bBaseAtk,.@val; bonus bFlee,.@val; }",200,5000,"TF_THROWSTONE","{ specialeffect2 EF_POTION_BERSERK; }";
Справка по Скрипту
getrefine Команда
getrefine
Сигнатура:
getrefine()
Описание:
function is called. This function is intended for use in item scripts.
bMaxHP Бонус Предмета
bMaxHP
Сигнатура:
bonus bMaxHP,n;
Описание:
MaxHP + n
autobonus3 Команда
autobonus3
Сигнатура:
autobonus3 <bonus script>,<rate>,<duration>,<skill id>,{<other script>};
autobonus3 <bonus script>,<rate>,<duration>,"<skill name>",{<other script>};
Описание:
These commands are meant to be used in item scripts only! See 'petautobonus' for pet usage. What these commands do is 'attach' a script to the player which will get executed on attack (or when attacked in the case of autobonus2). Rate is the trigger rate of the script (1000 = 100%). Duration is the time in milliseconds that the bonus will last for since the script has triggered. Skill ID/skill name the skill which will be used as trigger to start the bonus. (autobonus3) The optional argument 'flag' is used to classify the type of attack where the script can trigger (it shares the same flags as the bAutoSpell bonus script): Range criteria: Attack type criteria: Skill criteria: The difference between the optional argument 'other script' and the 'bonus script' is that, the former one triggers only when attacking(or attacked) and the latter one runs on status calculation as well, which makes sure, within the duration, the "bonus" that get lost on status calculation is restored. So, 'bonus script' is technically supposed to accept "bonus" command only. And we usually use 'other script' to show visual effects. In all cases, when the script triggers, the attached player will be the one who holds the bonus. There is currently no way of knowing within this script who was the other character (the attacker in autobonus2, or the target in autobonus and autobonus3). //Grants a 1% chance of starting the state "all stats +10" for 10 seconds when //using weapon or misc attacks (both melee and ranged skills) and shows a special //effect when the bonus is active.
Пример:
BF_SHORT:  Trigger on melee attack
BF_LONG:   Trigger on ranged attack
Default:   BF_SHORT+BF_LONG
BF_WEAPON: Trigger on weapon skills
BF_MAGIC:  Trigger on magic skills
BF_MISC:   Trigger on misc skills
Default:   BF_WEAPON
BF_NORMAL: Trigger on normal attacks
BF_SKILL:  Trigger on skills
default:   If the attack type is BF_WEAPON (only) BF_NORMAL is used,
otherwise BF_SKILL+BF_NORMAL is used.
autobonus "{ bonus bAllStats,10; }",10,10000,BF_WEAPON|BF_MISC,"{ specialeffect2 EF_FIRESPLASHHIT; }";
bBaseAtk Бонус Предмета
bBaseAtk
Сигнатура:
bonus bBaseAtk,n;
Описание:
Basic attack power + n
bFlee Бонус Предмета
bFlee
Сигнатура:
bonus bFlee,n;
Описание:
Flee + n
specialeffect2 Команда
specialeffect2
Сигнатура:
specialeffect2 <effect number>{,<send_target>{,"<Player Name>"}};
Описание:
This command behaves identically to 'specialeffect', but the effect will be centered on the invoking character's sprite. <Player name> parameter will display <effect number> on another Player than the one currently attached to the script. Like with specialeffect, when specifying a player, <send_target> must be supplied, specifying AREA will retain the default behavior of the command.
Не указано
Справка по Скрипту

Для этого скрипта не найдено документированных справок.

Не указано
Справка по Скрипту

Для этого скрипта не найдено документированных справок.

Не указано

Не указано

Группа Предметов Подгруппа Группа случайных опций Детали
CLASS_SHADOW_BOX_EARRING 1 Class Shadow Box Earring Детали

Не указано

Не указано

Не указано

Не указано