Item Details

Carta Ceifador Ankou ( ReaperAnkou_Card )

ID 27327 Carta Ceifador Ankou
Carta Ceifador Ankou Preço de Compra: 20 zeny Preço de Venda: 10 zeny Peso: 1 Slots: Não especificado
Tipo: Carta Subtipo: Não especificado Gênero: Ambos Localizações: Equipamento de Cabeça Superior, Equipamento de Cabeça Médio, Equipamento de Cabeça Inferior
Ataque: Não especificado Ataque Mágico: Não especificado Alcance: Não especificado Defesa: Não especificado
Nível da Arma: Não especificado Nível da Armadura: Não especificado Nível Mín. de Equipamento: Não especificado Nível Máx. de Equipamento: Não especificado
Refinável: Não especificado Graduável: Não especificado Elemento: Neutro Classes: Não especificado

Ao receber danos físicos ou mágicos:
2% de chance de ativar um [efeito] por 10 segundos.
--------------------------
A cada refino:
Chance de ativação +0,3%.
--------------------------
Ao usar [Primeiros Socorros]:
Se transforma em Ceifador Ankou por 5 segundos.
--------------------------
Efeito:
ATQ da arma +25%.
Dano mágico +25%.
Ativa [Espírito dos Amaldiçoados] nv.3.
--------------------------
Tipo: Carta
Equipa em: Equip. para Cabeça
Peso: 1

Ketika menerima serangan fisik atau magic, terdapat kemungkinan untuk membuat musuh dalam status Curse dalam area 17x17 di sekitar pengguna, ATK +25%, MATK +25% selama 10 detik.
Kemungkinan akan bertambah sesuai dengan tingkat tempa.
Bisa berubah menjadi Grim Reaper Ankou selama 5 detik ketika menggunakan skill First Aid.
Jenis : Card
Digunakan di : Headgear
Berat : 1

When receiving physical or magical damage, has a chance to curse all enemies in 17x17 cells around the user, ATK + 25% and MATK + 25% for 10 seconds.
------------------------
Increase the chance depending on the refine level of the Headgear.
------------------------
Transforms into Grim Reaper Ankou for 5 seconds when using First Aid.
------------------------
Class : Card
Compound on : Headgear
Weight : 1

[When receiving physical or magical damage]
Has a chance to [Curse] all enemies in 17x17 cells around the user, ATK and MATK +25% for 10 sec.
The probability shall increase depend on refine rate.
Transforms into [The Death Ankou] for 5 seconds when using [First Aid].
Class: Card
Compound on: Headgear
Weight: 1

Todos

Ceifador Ankou (0.01%)
Flags
Pode entrar em loja de player? Sim
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? Sim
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();
bonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",3,(1+.@r);
autobonus2 "{ bonus bAtkRate,25; bonus bMatkRate,25; }",(1+.@r),10000,BF_WEAPON|BF_MAGIC;
autobonus3 "{ }",1000,5000,"NV_FIRSTAID","{ active_transform 3029,5000; }";
/* unknown rates */
Referências do Script
getrefine Comando
getrefine
Assinatura:
getrefine()
Descrição:
function is called. This function is intended for use in item scripts.
bAutoSpellWhenHit Bônus de Item
bAutoSpellWhenHit
Assinatura:
bonus5 bAutoSpellWhenHit,sk,y,n,bf,i;
Descrição:
Adds a n/10% chance to cast skill sk of level y when being hit by a direct attack with trigger criteria bf
bAtkRate Bônus de Item
bAtkRate
Assinatura:
bonus bAtkRate,n;
Descrição:
ATK + n% that won't interfere with Damage modifier and SC_EDP (renewal mode only)
bMatkRate Bônus de Item
bMatkRate
Assinatura:
bonus bMatkRate,n;
Descrição:
Magical attack power + 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 \\
Não especificado
Referências do Script

Nenhuma referência documentada foi detectada neste script.

Não especificado
Referências do Script

Nenhuma referência documentada foi detectada neste script.

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado

Não especificado