// Town 50: Drinking Pool
begintownscript;

variables;

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

body;

beginstate INIT_STATE;
	set_crime_tolerance(2);
	
	add_range_to_group(6,17,1);
	set_aggression(1001,50);
	
	if (get_flag(50,0) == 0) {
		force_instant_terrain_redraw();
		reset_dialog();
		add_dialog_str(0,"You approach a small pool of fresh water on this island in the middle of the otherwise nearly water-less Lava Ocean. This must be a drinking pool for a wide variety of life here. You can see many plants growing, and there are many monsters drinking.",0);
		add_dialog_str(1,"The water itself looks slightly slimy. It is good enough for plants and wild beasts, but it is certainly not fit for human consumption. You might get very sick if you drank it.",0);
		add_dialog_str(2,"The beasts around the pool seem to pay little heed to you at the moment, although they might get angry if you came too close.",0);
		set_flag(50,0,run_dialog(1));
		}
break;

beginstate EXIT_STATE;
break;

beginstate START_STATE;
break;

beginstate 10;
break;