// OUTDOOR SECTION SCRIPT
//    Section: X = 0, Y = 12: Hill Tunnel

beginoutdoorscript;

variables;

int choice,i,j,k;
string dlgstr;

body;

beginstate INIT_STATE;
// This state called whenever this section is loaded into memory.
break;

beginstate START_STATE;
// Starting state of the section, called every turn the party 
// stands inside this section until you change the state.
break;

beginstate 10;
if (get_flag(212,0) == 0) {
	reset_dialog();
	add_dialog_str(0,"As you round this turn, your breath is forcefully taken from your lungs.",0);
	add_dialog_str(1,"Before you is the city of Danatha, a living, thriving city of the slith homeland, larger than Thassaka, directly connected still to the centers of the homeland. You can see its residents milling around, doing their everyday activities.",0);
	add_dialog_str(2,"Beyond that, you can see Khitaloss Province, the great cave that has been the heart of the slith empire for a thousand years, since the time of Khalthas. You are very nearly there.",0);
	set_flag(212,0,run_dialog(1));
	}
break;