Item Details

Cesta das Maravilhas ( Wonder_Egg_Basket )

ID 410027 Cesta das Maravilhas
Cesta das Maravilhas Preço de Compra: zeny Preço de Venda: 0 zeny Peso: 0 Slots: Não especificado
Tipo: Equipamento Subtipo: Não especificado Gênero: Ambos Localizações: Equipamento de Cabeça Médio
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: 1 Nível Mín. de Equipamento: 100 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

Imagina carregar tantos ovos de bichinhos de estimação nos braços? É por isso que 9 entre 10 Kafras recomendam uma Cesta de palha para levar esses bichinhos fofinhos para onde quiser!
--------------------------
Dano físico contra todos os Tamanhos +10%.
--------------------------
Conjunto
Mascote [Freeoni] ou
Mascote [Kiel D-01] ou
Mascote [Orc Herói] ou
Mascote [Flor do Luar] ou
Mascote [Lady Branca] ou
Mascote [Quinding]
ATQ e ATQM +200.
Todos os atributos +10.
--------------------------
Conjunto
Mascote [Angeling] ou
Mascote [Ursinho Abominável] ou
Mascote [Esqueleão]
ATQ e ATQM +200.
Dano físico e mágico contra todos os Tamanhos +10%.
--------------------------
Conjunto
Mascote [Alliot] ou
Mascote [Aliza] ou
Mascote [Alicel] ou
Mascote [Gato de Nove Caudas] ou
Mascote [Metaller] ou
Mascote [Grand Orc] ou
Mascote [Mastering]
ATQ e ATQM +200.
DEF +150. DEFM +15.
--------------------------
Tipo: Equip. para Cabeça
Equipa em: Meio
DEF: 0 DEFM: 0
Peso: 0
Nível necessário: 100
Classes: Todas

A basket full of Cupet's eggs. Let's go outside with a great partner

Increase damage dealt to small, medium, and large monsters by 10% when physical or magical attack.

When equipped with Moonlight pet,
Additional 4% chance to drain HP by 4% of the damage dealt.

When equipped with Angeling,
additional ATK + 1 , MATK + 1 per 1 base Luk
Increase exp by 5% when all monsters are killed.

When equipped with Cat Oh Ninetail,
Increase damage dealt to devil type monsters by 30% when physical or magical attack.
Decrease incoming damage from devil type monsters by 5% when physical or magical attack.

When equipped with High Orc pet,
Increase damage dealt to brute type monsters by 30% when physical or magical attack.
Decrease incoming damage from brute type monsters by 5% when physical or magical attack.

When equipped with Master Ring pet,
Increase damage dealt to plant type monsters by 30% when physical or magical attack.
Decrease incoming damage from plant type monsters by 5% when physical or magical attack.

When equipped with Metaller pet,
Adds 15% chance to autocast Metalic Sound Lv5 when physical attack hits.
Type : Helm Defense : 0
Location : Middle Weight : 0
Required Level : 100
Class : All

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
bonus2 bAddSize,Size_All,10;
bonus2 bMagicAddSize,Size_All,10;
switch( getpetinfo(PETINFO_EGGID) ) {
case 9112:  // Moonlight_Egg
   bonus2 bHPVanishRate,40,4;
   break;
case 9088:  // Angeling_Egg
   bonus bBaseAtk,readparam(bLuk);
   bonus bMatk,readparam(bLuk);
   bonus2 bExpAddClass,Class_All,5;
   break;
case 9096:  // Cat_O_Nine_Tail_Egg
   bonus2 bAddRace,RC_Demon,30;
   bonus2 bMagicAddRace,RC_Demon,30;
   bonus2 bSubRace,RC_Demon,5;
   break;
case 9087:  // High_Orc_Egg
   bonus2 bAddRace,RC_Brute,30;
   bonus2 bMagicAddRace,RC_Brute,30;
   bonus2 bSubRace,RC_Brute,5;
   break;
case 9069:  // Mastering_Egg
   bonus2 bAddRace,RC_Plant,30;
   bonus2 bMagicAddRace,RC_Plant,30;
   bonus2 bSubRace,RC_Plant,5;
   break;
case 9106:  // Metaller_Egg
   bonus3 bAutoSpell,"WM_METALICSOUND",5,150;
   break;
}
Referências do Script
bAddSize Bônus de Item
bAddSize
Assinatura:
bonus2 bAddSize,s,x;
Descrição:
+x% physical damage against size s
bMagicAddSize Bônus de Item
bMagicAddSize
Assinatura:
bonus2 bMagicAddSize,s,x;
Descrição:
+x% magical damage against size s
switch Comando
switch
Assinatura:
switch (expression);
Descrição:
The switch statement is similar to a series of if statements on the same expression. In many occasions, you may want to compare the same variable (or expression) with many different values, and execute a different piece of code depending on which value it equals to. This is exactly what the switch statement is for. to avoid mistakes. The switch statement executes line by line (actually, statement by statement). In the beginning, no code is executed. Only when a case statement is found with a value that matches the value of the switch expression the case statement(s) will to executed. The parser continues to execute the statements until the end of the switch block, or the first time it sees a break statement. If you don't write a break statement at the end of a case's statement list, the parser will go on executing the statements of the following case (fall-through). Example 1: the user selects option, otherwise, would go to the second one. Example 2: The example above would print a message depending on the player's groupid. If there is no statement declared for the corresponding groupid, the script would use the 'default' statement that applies to rest of possible values, similar to 'else' in the if-else statement.
Exemplo:
switch(select("Yes:No")) {
case 1:
mes "You said yes!";
break;
case 2:
mes "Aww, why?";
break;
}
close;
switch(getgroupid()) {
case 1:
mes "Wow, you're super!";
break;
case 2:
mes "A helping hand!";
break;
case 3:
mes "10001010010011";
break;
case 4:
mes "Yes, milord?";
break;
default:
mes "Hello there!";
break;
}
getpetinfo Comando
getpetinfo
Assinatura:
getpetinfo(<type>{,<char_id>})
Descrição:
currently has active. Valid types are: PETINFO_ID - Pet unique ID PETINFO_CLASS - Pet class number as per '' - will tell you what kind of a pet it is. PETINFO_NAME - Pet name. Will return "null" if there's no pet. PETINFO_INTIMATE - Pet friendly level (intimacy score). 1000 is full loyalty. PETINFO_HUNGRY - Pet hungry level. 100 is full hunger. PETINFO_RENAMED - Pet rename flag. 0 means this pet has not been named yet. PETINFO_LEVEL - Pet level PETINFO_BLOCKID - Pet Game ID PETINFO_EGGID - Pet egg item ID PETINFO_FOODID - Pet food item ID PETINFO_INTIMATE can be used with the following constants for checking values: PET_INTIMATE_NONE = 0 PET_INTIMATE_AWKWARD = 1 ~ 99 PET_INTIMATE_SHY = 100 ~ 249 PET_INTIMATE_NEUTRAL = 250 ~ 749 PET_INTIMATE_CORDIAL = 750 ~ 909 PET_INTIMATE_LOYAL = 910 ~ 1000 PETINFO_HUNGRY can be used with the following constants for checking values: PET_HUNGRY_NONE = 0 PET_HUNGRY_VERY_HUNGRY = 1 ~ 10 PET_HUNGRY_HUNGRY = 11 ~ 25 PET_HUNGRY_NEUTRAL = 26 ~ 75 PET_HUNGRY_SATISFIED = 76 ~ 90 PET_HUNGRY_STUFFED = 91 ~ 100 Example: These commands will only work if the invoking character has a pet, and are meant to be executed from pet scripts. They will modify the pet AI decision-making for the current pet of the invoking character, and will NOT have any independent effect by themselves, which is why only one of them each may be in effect at any time for a specific pet. A pet may have 'petloot', 'petskillbonus', 'petskillattack' OR 'petpetskillattack2' and 'petskillsupport'. the specified duration of seconds, with a delay of the specified number of seconds between activations. Rates are a chance of the effect occurring and are given in percent. 'bonusratebattle_athena.conf'. from the egg. Other commands usable in item scripts (see 'bonusre essentially on your own here.
Exemplo:
mes "[Vet]";
mes "Your pet + " getpetinfo(PETINFO_NAME);
if (getpetinfo(PETINFO_INTIMATE) < PET_INTIMATE_LOYAL)
mes "has some growing to do on you!";
else
mes "seems to love you very much!";
close;
bHPVanishRate Bônus de Item
bHPVanishRate
Assinatura:
bonus3 bHPVanishRate,x,n,bf;
Descrição:
Add a x/10% chance of decreasing enemy's HP amount by n% when attacking with trigger criteria bf
bBaseAtk Bônus de Item
bBaseAtk
Assinatura:
bonus bBaseAtk,n;
Descrição:
Basic attack power + n
readparam Comando
readparam
Assinatura:
readparam(<parameter number>{,"<character name>"})
readparam(<parameter number>{,<char_id>})
Descrição:
This function will return the specified stat of the invoking character, or, if a character name or character id is specified, of that player. The stat can either be a number or parameter name, defined in ''. Some example parameters: StatusPoint, BaseLevel, SkillPoint, Class, Upper, Zeny, Sex, Weight, MaxWeight, JobLevel, BaseExp, JobExp, NextBaseExp, NextJobExp, Hp, MaxHp, Sp, MaxSp, BaseJob, Karma, Manner, bVit, bDex, bAgi, bStr, bInt, bLuk, Ap, MaxAp All of these also behave as variables, but don't expect to be able to just 'set' them - some will not work for various internal reasons. Example 1: Using this particular information as a function call is not required. Typing this will return the same result: Example 2: You can also use this command to get stat values.
Exemplo:
// Returns how many status points you haven't spent yet.
mes "Unused status points: " + readparam(9);
mes "Unused status points: " + StatusPoint;
if (readparam(bVit) > 77)
mes "Only people with over 77 Vit are reading this!";
bLuk Bônus de Item
bLuk
Assinatura:
bonus bLuk,n;
Descrição:
LUK + n
bMatk Bônus de Item
bMatk
Assinatura:
bonus bMatk,n;
Descrição:
Magical attack power + n
bExpAddClass Bônus de Item
bExpAddClass
Assinatura:
bonus2 bExpAddClass,c,x;
Descrição:
Increase exp gained by x% against enemies of class c
bAddRace Bônus de Item
bAddRace
Assinatura:
bonus2 bAddRace,r,x;
Descrição:
+x% physical damage against race r
bMagicAddRace Bônus de Item
bMagicAddRace
Assinatura:
bonus2 bMagicAddRace,r,x;
Descrição:
+x% magical damage against race r
bSubRace Bônus de Item
bSubRace
Assinatura:
bonus3 bSubRace,r,x,bf;
Descrição:
+x% damage reduction against race r with trigger criteria bf
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
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

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

Não especificado