on_character_ask_to_join_society = { #when pressing the button to join
	events = {
		VIKSOC.100 #Join society, send an event to the leader
	}
}

on_five_year_pulse = {
	events = {
		VIKSOC.110 #force AI characters join the society
	}
}

# Fires every two years for characters who are members of any society
on_society_bi_yearly_pulse = {
	events = { #all of these will trigger every 2 years
		VIKSOC.130 #Quest tombola
	}
	random_events = { #only one of these will trigger, the number before the = is the odds that this event is selected if there is more than one event in the list.
		100 = VIKSOC.150
	}
}