# Calculates the number of NPCs who should join a fight

# Input variable: 
# social_score = the social score of the creature which is requesting the 
# 		       information

# Output variable
# desired_num_other_fighters

desired_num_other_fighters = social_score * 0.4
if (desired_num_other_fighters == 4)

            desired_num_other_fighters = 3

endif