What does it contain?
No Monsters drop this item.
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 JSONID | 630 |
aegisName ❔ | XmasGift |
Script to execute when the item is used/equipped.
setarray .@s, SantaGlobe, SnowmanGlobe, UglyChristmasSweater, MercBoxB, IceGladius, RedStockings;
setarray .@r, SnowmanGlobe, UglyChristmasSweater, TneckSweater, MercBoxA, MercBoxA, MercBoxB, ElixirOfLife, NoviceWand, LeadOre, DarkDesertMushroom, ScrollSWolvern, ScrollSYeti;
setarray .@c, BronzeGift, IcedBottle, TneckSweater, MercBoxA, MercBoxA, ClothoLiquor, Dagger, Coal, HastePotion, HerbalTea, StrengthPotion, TrainingWand, SacredImmortalityPotion, Coffee;
.@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;
}