Item Details

Shadow Staff [2] ( Shadow_Staff )

ID 1682 Shadow Staff [2]
Shadow Staff [2] Precio de compra: zeny Precio de venta: 0 zeny Peso: 60 Ranuras: 2
Tipo: Objeto de arma. Subtipo: Báculo Género: Ambos Ubicaciones: Arma
Ataque: No especificado Ataque mágico: 130 Alcance: 1 Defensa: No especificado
Nivel de arma: 4 Nivel de armadura: No especificado Nivel de Equipamiento (Mín.): 90 Nivel de Equipamiento (Máx.): No especificado
Refinable: 1 Graduable: No especificado Elemento: Neutral Clases: Cuarta clases., Todo Tercero

O grande poder escondido nesse cajado faz dele um artefato ideal para lançar poderosos (e perigosos) feitiços.
--------------------------
Indestrutível em batalha.
--------------------------
Ao aprender [Chamas de Hela] nv. 5:
Dano de [Chamas de Hela] +100%.
--------------------------
Refino +1 ou mais:
Ao usar [Chamas de Hela], 4% de chance de ativar um [efeito] por 5 segundos.
--------------------------
A cada refino:
Chance de ativar o [efeito] +4%.
Dano de [Chamas de Hela] +10%.
--------------------------
A cada refino até o +10:
Ignora 5% da DEFM de personagens, monstros normais e chefes.
--------------------------
Efeito:
Conjuração variável de [Chamas de Hela] -30%.
--------------------------
Tipo: Cajado
ATQ: 0 ATQM: 130
Peso: 60
Nível da arma: 4
Nível necessário: 90
Classes: Arcano

Ketika kamu mempelajari Hell Inferno sampai Lv5,
Kekuatan serang dari skill Hell Inferno +100%,
Setiap tingkat tempa, kekuatan serang dari skill Hell Inferno akan bertambah 10%,
Ketika menyerang dengan magic attack, akan mengabaikan magic defense dari musuh sebesar 5%.
Ketika menggunakan skill Hell Inferno, mempunyai kemungkinan mengurangi casting dari skill Hell Inferno's sebesar 30% selama 5 detik.
kemungkinan akan bertambah berdasarkan pada tingkat level tempa.
MATK + 130
Jenis : one-handed staff Serangan : 0
Berat : 60
Senjata level : 4
Lv Minimum : 90
Profesi : Warlock Class

No especificado

Banderas
¿Puede agregarse a una tienda de compra de jugador? No
¿Invoca un monstruo? No
¿Forma parte de un contenedor? No
¿Tiene pila única? No
¿Se vincula al equipar? No
¿Anuncia el drop? No
¿Se consume al usarlo?
¿Tiene efecto al caer? No
Apilamiento
No especificado
Uso
No especificado
Comercio
Sobrescribir No especificado
¿Puede soltarse?
¿Puede comerciarse?
¿Puede comerciarse con la pareja?
¿Puede venderse a NPC?
¿Puede colocarse en el carrito?
¿Puede colocarse en el almacén?
¿Puede colocarse en el almacén de guild?
¿Puede enviarse por correo?
¿Puede ponerse en subasta?
Retraso
No especificado
.@r = getrefine();
bonus2 bSkillAtk,"WL_HELLINFERNO",(getskilllv("WL_HELLINFERNO") >= 5 ? 100 : 0) + (.@r*10);
bonus2 bIgnoreMdefRaceRate,RC_All,min(10,.@r)*5;
autobonus3 "{ bonus2 bVariableCastrate,\"WL_HELLINFERNO\",-30; }",.@r*40,5000,"WL_HELLINFERNO";
Referencias del Script
getrefine Comando
getrefine
Firma:
getrefine()
Descripción:
function is called. This function is intended for use in item scripts.
bSkillAtk Bono de Ítem
bSkillAtk
Firma:
bonus2 bSkillAtk,sk,n;
Descripción:
Increases damage of skill sk by n%
getskilllv Comando
getskilllv
Firma:
getskilllv(<skill id>)
getskilllv("<skill name>")
Descripción:
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:
Ejemplo:
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;
bIgnoreMdefRaceRate Bono de Ítem
bIgnoreMdefRaceRate
Firma:
bonus2 bIgnoreMdefRaceRate,r,n;
Descripción:
Disregard n% of the target's MDEF if the target belongs to race r
autobonus3 Comando
autobonus3
Firma:
autobonus3 <bonus script>,<rate>,<duration>,<skill id>,{<other script>};
autobonus3 <bonus script>,<rate>,<duration>,"<skill name>",{<other script>};
Descripción:
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.
Ejemplo:
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; }";
bVariableCastrate Bono de Ítem
bVariableCastrate
Firma:
bonus2 bVariableCastrate,sk,n;
Descripción:
Increases variable cast time of skill sk by n% (If RENEWAL_CAST is NOT defined, this bonus is equal to bCastrate)
No especificado
Referencias del Script

No se detectaron referencias documentadas en este script.

No especificado
Referencias del Script

No se detectaron referencias documentadas en este script.

No especificado

No especificado

No especificado

No especificado

No especificado

No especificado

Refinado Grupo Nivel del objeto Refinable Nivel de arma Nivel de armadura Detalles
Refinado Arma 4 4 No especificado Detalles

No especificado