// TOWN SCRIPT
//    Town 78: Bahssikava Tunnels

// This is the special encounter script for this town.
// The states INIT_STATE, EXIT_STATE, and START_STATE have
// meanings that are described in the documenation. States you write
// yourself should be numbered from 10-100.

begintownscript;

variables;

int i,j,k,r1,choice;


body;

beginstate INIT_STATE;
	set_name(6,"Legare");

break;

beginstate EXIT_STATE;
break;

beginstate START_STATE;
break;

beginstate 10;
	move_to_new_town(77,41,38);
break;

beginstate 11;
	move_to_new_town(77,12,22);
break;

beginstate 12;
	move_to_new_town(79,6,11);
break;

beginstate 13;
	move_to_new_town(79,23,29);
break;
	
	
	