//== Badges Exchange =======================================
prontera,149,175,6	script	Erundek	4_F_JOB_KNIGHT,{
disable_items();
openshop();
end;
OnInit:
	tradertype(NST_CUSTOM);
	sellitem Elite_Siege_Supply_Box,50;
	sellitem Speed_Up_Potion_B,4;
	sellitem Abrasive_B,10;
	sellitem Mre_A,10;
	sellitem Mre_B,10;
	sellitem Mre_C,10;
	sellitem Ring_Of_Amatsu_Box,100;
	sellitem Convex_Mirror_B,50;
	sellitem C_Amistr_Beret,50;
	sellitem C_Mermaid_Longing,75;
	end;

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

OnPayFunds:
	if(countitem(War_Badge) < @points) end;
	delitem War_Badge,@price;	
	purchaseok();
	end;
}
