//===== 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]
//============================================================


//============================================================
// R] - w
//============================================================
comodo,205,171,7	script	`	724,{
	mes "[`]";
	if(BaseJob!=Job_Dancer) goto L_nodancer;
	if(getskilllv(1011)) goto L_alreadyhave;
	mes "aӳoǪFڱN|ЧAӧޯ~I";
	mes "1 l";
	mes "1 s";
	mes "1 զLl";
	mes "1 īG";
	mes "3 ";
	mes "5 ";
	next;
	
	mes "[`]";
	mes "ˬdUA~@~";
	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 "AaӤF,";
	mes "ܦnAڭ̶}lǧޯ.";
	skill 1011,1,0;
	close;
	
L_noitems:
	mes "[`]";
	mes "A٨Saһݪ~.";
	mes "FAӧ";
	close;
		
L_nodancer:
	mes "AݤWhOӦ֤ѤH";
	emotion e_gasp;
	close;

L_alreadyhave:
	mes "ڤwgйLA~I";
	close;
}
