#Calculates distance of NPC tribe huts from the player hut

#Input variables
#none

#Output variables
#number_of_stands = how many clumps of trees
#clear_cut_radius = area around player hut to remove all trees
#angle# = compass direction: if camera is looking north initially, 
#  0 is north of the player hut, 
#  90 is east of hut, 
#  180 is south of hut, 
#  270 is west of hut
#distance# = distance from player hut to stand of trees
#radius# = size of stand
#count# = number of trees in the stand

number_of_stands = 4
clear_cut_radius = 120

angle1 = 0
distance1 = 60
radius1 = 20
count1 = 5

angle2 = 180
distance2 = 30
radius2 = 20
count2 = 5

angle3 = 270
distance3 = 60
radius3 = 20
count3 = 5

angle4 = 315
distance4 = 90
radius4 = 20
count4 = 5
