Item Details

Wonder Egg Basket [1] ( Wonder_Egg_Basket_ )

ID 410028 Wonder Egg Basket [1]
Wonder Egg Basket [1] Precio de compra: 20 zeny Precio de venta: 10 zeny Peso: 0 Ranuras: 1
Tipo: Equipamiento. Subtipo: No especificado Género: Ambos Ubicaciones: Equipo de la cabeza medio
Ataque: No especificado Ataque mágico: No especificado Alcance: No especificado Defensa: No especificado
Nivel de arma: No especificado Nivel de armadura: 1 Nivel de Equipamiento (Mín.): 100 Nivel de Equipamiento (Máx.): No especificado
Refinable: No especificado Graduable: No especificado Elemento: Neutral Clases: No 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!
--------------------------
Velocidade de ataque +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

Todo

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
bonus bAspdRate,10;
switch( getpetinfo(PETINFO_EGGID) ) {
case 9109:  // Sweet_Drops_Egg
case 9112:  // Moonlight_Egg
case 9115:  // Bacsojin_Egg2
case 9121:  // Orc_Hero_Egg_
case 9126:  // Kiel_Egg
case 9136:  // Eddga_Egg
   bonus bBaseAtk,200;
   bonus bMatk,200;
   bonus bAllStats,10;
   break;
case 9088:  // Angeling_Egg
case 9108:  // Xm_Teddybear_Egg
case 9113:  // Roost_Of_Skelion
   bonus bBaseAtk,200;
   bonus bMatk,200;
   bonus2 bAddSize,Size_All,10;
   bonus2 bMagicAddSize,Size_All,10;
   break;
case 9069:  // Mastering_Egg
case 9087:  // High_Orc_Egg
case 9096:  // Cat_O_Nine_Tail_Egg
case 9106:  // Metaller_Egg
case 9117:  // Contaminated_Wanderer_Egg
case 9118:  // Aliot_Egg
case 9119:  // Alicel_Egg
case 9120:  // Aliza_Egg
case 9124:  // Ep17_2_C_Admin2_Egg
   bonus bBaseAtk,200;
   bonus bMatk,200;
   bonus bDef,150;
   bonus bMdef,15;
   break;
}
Referencias del Script
bAspdRate Bono de Ítem
bAspdRate
Firma:
bonus bAspdRate,n;
Descripción:
Attack speed + n%
switch Comando
switch
Firma:
switch (expression);
Descripción:
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.
Ejemplo:
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
Firma:
getpetinfo(<type>{,<char_id>})
Descripción:
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.
Ejemplo:
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;
bBaseAtk Bono de Ítem
bBaseAtk
Firma:
bonus bBaseAtk,n;
Descripción:
Basic attack power + n
bMatk Bono de Ítem
bMatk
Firma:
bonus bMatk,n;
Descripción:
Magical attack power + n
bAllStats Bono de Ítem
bAllStats
Firma:
bonus bAllStats,n;
Descripción:
STR + n, AGI + n, VIT + n, INT + n, DEX + n, LUK + n
bAddSize Bono de Ítem
bAddSize
Firma:
bonus2 bAddSize,s,x;
Descripción:
+x% physical damage against size s
bMagicAddSize Bono de Ítem
bMagicAddSize
Firma:
bonus2 bMagicAddSize,s,x;
Descripción:
+x% magical damage against size s
bDef Bono de Ítem
bDef
Firma:
bonus bDef,n;
Descripción:
Equipment DEF + n
bMdef Bono de Ítem
bMdef
Firma:
bonus bMdef,n;
Descripción:
Equipment MDEF + n
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

No especificado

Refinado Grupo Nivel del objeto Refinable Nivel de arma Nivel de armadura Detalles
Refinado Armadura 1 No No especificado 1 Detalles

No especificado