office,132,29,2	script	Santa	4_M_SANTA,{
	disable_items;
	mes("[ "+CStr("Santa","GREEN")+" ]");
	mes("Ho ho ho!!! Merry Christmas!!!");
	mes("Gather those Freezing Snow Powder from Santa Poring for our");
	mes("exchange gift.");
	mes(Itemlink(Ice_Particle));
	next;
	mes("[ "+CStr("Santa","GREEN")+" ]");
	mes("You can choose items below for exchange:");
	mes("  1x = "+Itemlink(Red_Bag));
	mes(" 15x = "+Itemlink(Old_Blue_Box));
	mes(" 50x = "+Itemlink(Santa_Beard));
	mes(" 50x = "+Itemlink(Ring_Of_Water));
	mes(" 50x = "+Itemlink(Ring_Of_Wind));
	mes("100x = "+Itemlink(Party_Hat_B));
	mes("500x = "+Itemlink(Angel_Spirit_));
	next;
	mes("[ "+CStr("Santa","GREEN")+" ]");
	mes("But you have act now, I am only available until Dec 31.");
	close2;
	openshop();							
	end;

OnInit:
	addmonsterdrop(PORING_, Ice_Particle, 2500);
	tradertype(NST_CUSTOM);
	sellitem 12132,1;
	sellitem 603,15;
	sellitem 5811,50;
	sellitem 2682,50;
	sellitem 2684,50;
	sellitem 5201,100;
	sellitem 19087,500;
	end;	

OnCountFunds:
	setcurrency(countitem(Ice_Particle));
	end;

OnPayFunds:
	if(countitem(Ice_Particle) < @price) end;
	delitem Ice_Particle,@price;
	purchaseok();
	end;
 

}
