Item Details

Tiara da Valquíria Mágica [1] ( Magical_Feather )

ID 5930 Tiara da Valquíria Mágica [1]
Tiara da Valquíria Mágica [1] Preço de Compra: zeny Preço de Venda: 0 zeny Peso: 30 Slots: 1
Tipo: Equipamento Subtipo: Não especificado Gênero: Ambos Localizações: Equipamento de Cabeça Superior
Ataque: Não especificado Ataque Mágico: Não especificado Alcance: Não especificado Defesa: 5
Nível da Arma: Não especificado Nível da Armadura: 1 Nível Mín. de Equipamento: 10 Nível Máx. de Equipamento: Não especificado
Refinável: 1 Graduável: Não especificado Elemento: Neutro Classes: Não especificado

Uma tiara dada à Lucya, uma das três Guerreiras Mágicas de Rune-Midgard. As lendas dizem que Lucya utilizou esta tiara para salvar a princesa Esmeralda, sequestrada por seu próprio Sumo-Sacerdote, Zagarto. Esta tiara foi encantada pela Valquíria Lexus, e possui o poder da transformação.
Exibe efeito gráfico que não pode ser escondido por visuais, mas pode ser desligado com /effect.
Dano mágico contra as propriedades Veneno, Sagrado, Sombrio, Fantasma e Maldito +5%.
Ao realizar ataques físicos:
5% de chance de autoconjurar [Luz Divina] nv. 1.
A cada nível aprendido de [Impositio Manus]:
Dano de [Luz Divina] +80%.
Custo de SP de [Luz Divina] +15.
A cada nível aprendido de [Flagelo do Mal]:
Chance de autoconjurar [Luz Divina] +0,5%.
A cada refino a partir do +6 até o +10:
Dano mágico contra as propriedades Veneno, Sagrado, Sombrio, Fantasma e Maldito +5%.
Desabilitado temporariamente:
Ao usar [Primeiros Socorros]: Se transforma em Nasarin por 10 segundos.
Tipo: Equip. para Cabeça
Equipa em: Topo
DEF: 5 DEFM: 0
Peso: 3
Nível necessário: 10
Classes: Todas

C_Magical_Feather

Todos

Não especificado

Flags
Pode entrar em loja de player? Não
Invoca monstro? Não
Faz parte de um contêiner? Não
Tem pilha única? Não
Vincula ao equipar? Não
Anuncia o drop? Não
É consumido ao usar? Sim
Tem efeito ao cair no chão? Não
Empilhamento
Não especificado
Uso
Não especificado
Comércio
Substituir Não especificado
Pode ser descartado? Sim
Pode ser trocado? Sim
Pode ser trocado com o parceiro? Sim
Pode ser vendido para NPC? Sim
Pode ser colocado no carrinho? Sim
Pode ser colocado no armazém? Sim
Pode ser colocado no armazém da guilda? Sim
Pode ser enviado por correio? Sim
Pode ser leiloado? Sim
Atraso
Não especificado
.@r = ((getrefine()-5)*5);
bonus2 bMagicAddEle,Ele_Dark,5+.@r;
bonus2 bMagicAddEle,Ele_Ghost,5+.@r;
bonus2 bMagicAddEle,Ele_Holy,5+.@r;
bonus2 bMagicAddEle,Ele_Poison,5+.@r;
bonus2 bMagicAddEle,Ele_Undead,5+.@r;
bonus3 bAutoSpell,"AL_HOLYLIGHT",1,50+(getskilllv("AL_DEMONBANE")*10);
bonus2 bSkillAtk,"AL_HOLYLIGHT",80*getskilllv("PR_IMPOSITIO");
bonus2 bSkillUseSP,"AL_HOLYLIGHT",-15*getskilllv("PR_IMPOSITIO");
autobonus3 "{ }",1000,10000,"NV_FIRSTAID","{ active_transform 2449,10000; }";
hateffect HAT_EF_MAGICAL_FEATHER,true;
Referências do Script
getrefine Comando
getrefine
Assinatura:
getrefine()
Descrição:
function is called. This function is intended for use in item scripts.
bMagicAddEle Bônus de Item
bMagicAddEle
Assinatura:
bonus2 bMagicAddEle,e,x;
Descrição:
+x% magical damage against element e
bAutoSpell Bônus de Item
bAutoSpell
Assinatura:
bonus5 bAutoSpell,sk,y,n,bf,i;
Descrição:
Adds a n/10% chance to cast skill sk of level y when attacking with trigger criteria bf
getskilllv Comando
getskilllv
Assinatura:
getskilllv(<skill id>)
getskilllv("<skill name>")
Descrição:
character has. If they don't have the skill, 0 will be returned. The full list of character skills is available in ''. There are two main uses for this function, it can check whether the character has a skill or not, and it can tell you if the level is high enough. Example 1: Example 2:
Exemplo:
if (getskilllv(152))
mes "You have got the skill Throw Stone";
else
mes "You don't have Throw Stone";
close;
if (getskilllv(28) >= 5)
mes "Your heal lvl is 5 or more";
else if (getskilllv(28) == 10)
mes "Your heal lvl has been maxed";
else
mes "You heal skill is below lvl 5";
close;
bSkillAtk Bônus de Item
bSkillAtk
Assinatura:
bonus2 bSkillAtk,sk,n;
Descrição:
Increases damage of skill sk by n%
bSkillUseSP Bônus de Item
bSkillUseSP
Assinatura:
bonus2 bSkillUseSP,sk,n;
Descrição:
Decreases SP consumption of skill sk by n
autobonus3 Comando
autobonus3
Assinatura:
autobonus3 <bonus script>,<rate>,<duration>,<skill id>,{<other script>};
autobonus3 <bonus script>,<rate>,<duration>,"<skill name>",{<other script>};
Descrição:
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.
Exemplo:
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; }";
active_transform Comando
active_transform
Assinatura:
active_transform <monster ID>,<duration>{,<sc type>,<val1>,<val2>,<val3>,<val4>};
active_transform "<monster name>",<duration>{,<sc type>,<val1>,<val2>,<val3>,<val4>};
Descrição:
a SC attribute effect while transformed. Note that players cannot be transformed during War of Emperium or if already disguised. Can only be removed when you die or the duration ends. 'transform' and 'active_transform' can stack on each other but using 'transform' or 'active_transform' twice will not stack (it will cancel the previous bonus for the new). 'active_transform' will take priority over transform for its duration. \\ 4,3 Marriage-related commands \\
hateffect Comando
hateffect
Assinatura:
hateffect(<hat effect id>,<state>{,<target id>});
Descrição:
Sets a Hat Effect onto the unit specified by <target id>. If no ID is specified, the attached unit will be used. <state> can be true to enable or false to disable. The Hat Effect constants can be found in '' starting with HAT_EF_*. Examples: Requires client 2015-05-13aRagEXE or newer.
Exemplo:
hateffect HAT_EF_FLUTTER_BUTTERFLY, true; // Enables the hat effect on attached player
hateffect HAT_EF_FLUTTER_BUTTERFLY, true, getcharid(3); // Enables the hat effect on attached player
hateffect HAT_EF_FLUTTER_BUTTERFLY, true, getnpcid(0); // Enables the hat effect on invoking NPC
monster "prontera",50,50,"--en--",1002,1;
hateffect HAT_EF_FLUTTER_BUTTERFLY, true, $@mobid; // Enables the hat effect on a spawned mob
Não especificado
Referências do Script

Nenhuma referência documentada foi detectada neste script.

hateffect HAT_EF_MAGICAL_FEATHER,false;
Referências do Script
hateffect Comando
hateffect
Assinatura:
hateffect(<hat effect id>,<state>{,<target id>});
Descrição:
Sets a Hat Effect onto the unit specified by <target id>. If no ID is specified, the attached unit will be used. <state> can be true to enable or false to disable. The Hat Effect constants can be found in '' starting with HAT_EF_*. Examples: Requires client 2015-05-13aRagEXE or newer.
Exemplo:
hateffect HAT_EF_FLUTTER_BUTTERFLY, true; // Enables the hat effect on attached player
hateffect HAT_EF_FLUTTER_BUTTERFLY, true, getcharid(3); // Enables the hat effect on attached player
hateffect HAT_EF_FLUTTER_BUTTERFLY, true, getnpcid(0); // Enables the hat effect on invoking NPC
monster "prontera",50,50,"--en--",1002,1;
hateffect HAT_EF_FLUTTER_BUTTERFLY, true, $@mobid; // Enables the hat effect on a spawned mob

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Refino Grupo Nível do Item Refinável Nível da Arma Nível da Armadura Detalhes
Refino Armadura 1 Sim Não especificado 1 Detalhes

Não especificado