//===== eAthena Script ======================================= 
//= Dancer Skills Quests
//===== By: ================================================== 
//= Lupus, Reddozen
//===== Current Version: ===================================== 
//= 1.3a
//===== Compatible With: ===================================== 
//= eAthena Revision 3800+
//===== Description: ========================================= 
//= Temp quests for new skills for 2nd classes
//===== Additional Comments: ================================= 
//= 1.0 for fully working skills only [Lupus]
//= 1.1 Added more new skill quests for more classes [Lupus]
//= Somehow eA engine doesn't let you keep learn't skill V_V'
//= 1.2 Added to correct locations, correct NPC's, fixed
//= some of the items required and made them into real
//= quests. [Reddozen] 
//= 1.3 Fixed bugs and minor typos. Optimized [Lupus]
//= 1.3a fixed an item ID typo, thx 2Spiritual Kid
//= 1.3b Splitted into different files [DracoRPG]
//============================================================


//============================================================
//  - գ֮
//============================================================
comodo.gat,205,171,7	script	ζ	724,{
	mes "[ζ]";
	if(BaseJob!=Job_Dancer) goto L_nodancer;
	if(getskilllv(1011)) goto L_alreadyhave;
	mes "Щҽ~";
	mes "1 ˮ";
	mes "1 ƾ";
	mes "1 ɫ";
	mes "1 ƻ";
	mes "3 㽶";
	mes "5 ";
	next;
	
	mes "[ζ]";
	mes "ƷŶ~";
	next;
	
	if(countitem(747)<1 || countitem(970)<1 || countitem(736)<1 || countitem(512)<1 || countitem(513)<3 || countitem(538)<5) goto L_noitems;//Items: Crystal_Mirror, Alcohol, China, Apple, Banana, Well-baked_Cookie,
	delitem 747, 1;//Items: Crystal_Mirror,
	delitem 970, 1;//Items: Alcohol,
	delitem 736, 1;//Items: China,
	delitem 512, 1;//Items: Apple,
	delitem 513, 3;//Items: Banana,
	delitem 538, 5;//Items: Well-baked_Cookie,

	mes "[ζ]";
	mes "㶼,";
	mes "ܺãǿʼѧ.";
	skill 1011,1,0;
	close;
	
L_noitems:
	mes "[ζ]";
	mes "㻹ûƷ.";
	mes "ռ";
	close;
		
L_nodancer:
	mes "㿴ȥǸֵ";
	emotion e_gasp;
	close;

L_alreadyhave:
	mes "Ѿ̹~";
	close;
}
