//===== eAthena Script ======================================= 
//= Bard 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]
//============================================================


//============================================================
// ʫ - ʹ֮
//============================================================
prontera.gat,174,328,7	script		89,{
	mes "[]";
	if(BaseJob!=Job_Bard) goto L_nobard;
	if(getskilllv(1010)) goto L_alreadyhave;
	if(JobLevel<40) goto L_nojob;

	mes "ܽ";
	mes "øһһֱõƷ";
	mes "1 ȴ_տ";
	next;
	
	mes "[]";
	mes "Ʒ.";
	next;
	
	if (countitem(12112)<1) goto L_noitems;//Items: Tropical_Sograt,
	delitem 12112, 1;//Items: Tropical_Sograt,
	mes "[]";
	mes "ҪĶ,";
	mes "Ҳµļ.";
	skill 1010,1,0;
	close;
	
L_noitems:
	mes "[]";
	mes "ûҪĶ.";
	mes "Ұ";
	close;
		
L_nobard:
	mes "㿴ȥֵ";
	emotion e_gasp;
	close;

L_alreadyhave:
	mes "Ѿ̹";
	close;

L_nojob:
	mes "ΪһʫҰ";
	close;
}
