Item Details

Angelic Ring ( Angelic_Ring )

ID 2743 Angelic Ring
Angelic Ring Цена покупки: 20 zeny Цена продажи: 10 zeny Вес: 10 Слоты: Не указано
Тип: Броня/Одежда/Сапоги/Головной убор/Аксессуар. Подтип: Не указано Пол: Оба Локации: Правый_аксессуар + Левый_аксессуар
Атака: Не указано Магическая атака: Не указано Диапазон: Не указано Защита: Не указано
Уровень оружия: Не указано Уровень брони: 1 Мин. Уровень Снаряжения: 70 Макс. Уровень Снаряжения: Не указано
Поддается улучшению: Не указано Оцениваемый: Не указано Элемент: Нейтральный Классы: Transcendent классы (без Transcendent-Third классов)., Четвертые классы., Все Transcendent классы., Все Third классы.

Um anel que guarda o poder de um espírito sagrado que responde a certas habilidades e fortalece seu poder.
DEFM +2.
INT +2. DES +1.
Ao usar [Arremessar Poção] [Curar] ou [Santuário]:
Chance de ativar um [efeito] por 3 segundos.
Efeito:
Efetividade de cura +20%.
Tipo: Acessório
Defesa: 0
Peso: 10
Nível necessário: 70
Classes: Transclasses

Sebuah cincin yang mengandung kekuatan yang mampu merespon kemampuan tertentu dan memperkuat kemampuan yang dimiliki.
INT + 2, DEX + 1
jika kekuatan cincin aktif ketika menggunakan skill Heal, Potion Pitcher, Sanctuary, Pemulihan HP dari skill tersebut meningkat sebesar 20% selama 3 detik.
MDEF + 2
Jenis : Aksesoris
Defense : 0
Berat : 10
Level Persyaratan : 70
Profesi : 2nd Transcendent Class

A ring which bears holy powers that responds to certain abilities and strengthens their potency.
Class: Accessory
Weight: 10
Requires Level: 70
Usable By: Lord Knight Jobs, Master Smith Jobs, Assassin Cross Jobs, High Priest Jobs, High Wizard Jobs, Sniper Jobs, Paladin Jobs, Biochemist Jobs, Stalker Jobs, Champion Jobs, Scholar Jobs, Minstrel Jobs, Gypsy Jobs
Int + 2
Dex + 1
Mdef + 2
Adds a chance of buffing the user for 3 seconds when using recovery skills;
Increases the recovery rate of recovery skills by 20%.

Set Bonus
Rose of Eden [1]
Angelic Ring
Increases the recovery rate of recovery skills by an additional 10%.

A ring which bears holy powers that responds to certain abilities and strenthens their potency.
Int +2.
Dex +1.
Chanse to increase HP recovery of skills[Heal],[Potion Pitcher],[Sanctuary] by 20%.
Mdef + 2
Class: Accessory
Defense: 0
Weight: 10
Required Level: 70
Jobs: 2nd Transcendent Class

Cornus (0.01%)
Флаги
Можно добавить в скупочную лавку игрока? Нет
Призывает монстра? Нет
Является частью контейнера? Нет
Имеет уникальный стек? Нет
Привязывается при надевании? Нет
Объявляет выпадение? Нет
Расходуется при использовании? Да
Имеет эффект при падении? Нет
Стакирование
Не указано
Использование
Не указано
Торговля
Переопределить Не указано
Можно выбросить? Да
Можно обменять? Да
Можно обменять с партнером? Да
Можно продать NPC? Да
Можно поместить в тележку? Да
Можно поместить в хранилище? Да
Можно поместить в хранилище гильдии? Да
Можно отправить по почте? Да
Можно выставить на аукцион? Да
Задержка
Не указано
bonus bInt,2;
bonus bDex,1;
bonus bMdef,2;
autobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }";
autobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }";
autobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";
Справка по Скрипту
bInt Бонус Предмета
bInt
Сигнатура:
bonus bInt,n;
Описание:
INT + n
bDex Бонус Предмета
bDex
Сигнатура:
bonus bDex,n;
Описание:
DEX + n
bMdef Бонус Предмета
bMdef
Сигнатура:
bonus bMdef,n;
Описание:
Equipment MDEF + 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; }";
bHealPower Бонус Предмета
bHealPower
Сигнатура:
bonus bHealPower,n;
Описание:
Increases heal amount of all heal skills by 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.
Не указано
Справка по Скрипту

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

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

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

Не указано

Не указано

Не указано

Не указано

Не указано

Не указано

Улучшение Группа Уровень предмета Поддается улучшению Уровень оружия Уровень брони Детали
Улучшение Броня 1 Нет Не указано 1 Детали

Не указано