Moubootaur Legends

Christmas Gift - Item DB

Christmas Gift | 630

What does it contain?

ID 630
type IT_USABLE
weight 25

Mobs that drop this item:

No Monsters drop this item.

This Item has Trade restrictions

ID for use in Discord:
Expert View

You'd like to see behind the curtain? Then you are here at the right place - lots of data only contributors would normally see.

Open raw JSON
ID 630
aegisName XmasGift
Script

Script to execute when the item is used/equipped.

setarray .@s, SantaGlobe, SnowmanGlobe, UglyChristmasSweater, MercBoxB, IceGladius;
setarray .@r, SantaGlobe, SnowmanGlobe, UglyChristmasSweater, TneckSweater, MercBoxA, MercBoxA, MercBoxB, ElixirOfLife, NoviceWand, LeadOre, DarkDesertMushroom;
setarray .@c, BronzeGift, IcedBottle, TneckSweater, MercBoxA, MercBoxA, ClothoLiquor, Dagger, Coal, HastePotion, HerbalTea, StrengthPotion, TrainingWand;
.@al=rand(0,100);
if (.@al < 1) {
	.@n=rand(getarraysize(.@s));
	getitem .@s[.@n], 1;
} else if (rand(0,100) < 27) {
	.@n=rand(getarraysize(.@r));
	getitem .@r[.@n], 1;
} else {
	.@n=rand(getarraysize(.@c));
	getitem .@c[.@n], 1;
}