#############################################
# CHARACTER NICKNAMES
# Independent dukes, kings and emperors only
#
# 'factor' is the percentage per year of 
# gaining the nickname
#
#############################################

# TRIGGERED ONLY
################

nick_the_hyper = {}
nick_the_authoritarian = {}
nick_the_liberal = {}
nick_the_revolutionary = {}
nick_the_controller = {}
nick_the_hipster = {}
nick_the_man_of_steel = {}
nick_the_puritan = {}
nick_the_utopian_ruler = {}
nick_the_skinhead = {}
nick_the_liberator = {}
nick_the_benefactor = {}
nick_the_protector_of_the_people = {}

# GIVEN BY TRAITS
#################

nick_the_hyper = {
	allow = {
		age = 16
		trait = Hyper
		OR = {
			trait = berserker
			trait = hyper_rabbit
		}
	}
	chance = {
		factor = 2
	}
}

nick_the_revolutionary = {
	allow = {
		age = 16
		trait = communist
		trait = anarchist
		trait = humanitarian
	}
	chance = {
		factor = 5
	}
}
nick_the_controller = {
	allow = {
		age = 16
		trait = nazi
		trait = fascist
		trait = capitalist
	}
	chance = {
		factor = 5
	}
}
nick_the_authoritarian = {
	allow = {
		age = 16
		trait = fascist
		trait = capitalist
	}
	chance = {
		factor = 1
	}
}
nick_the_liberal = {
	allow = {
		age = 16
		trait = communist
		trait = humanitarian
	}
	chance = {
		factor = 1
	}
}
nick_the_hipster = {
	allow = {
		age = 16
		trait = anarchist
		trait = humanitarian
	}
	chance = {
		factor = 1
	}
}
nick_the_man_of_steel = {
	allow = {
		age = 16
		trait = communist
		trait = fascist
	}
	chance = {
		factor = 1
	}
}
nick_the_puritan = {
	allow = {
		age = 16
		trait = nazi
		trait = fascist
	}
	chance = {
		factor = 1
	}
}
nick_the_protector_of_the_people = {
	allow = {
		age = 16
		trait = humanitarian
		trait = fascist
	}
	chance = {
		factor = 1
	}
}
nick_the_skinhead = {
	allow = {
		age = 16
		trait = nazi
		trait = anarchist
	}
	chance = {
		factor = 1
	}
}
nick_the_utopian_ruler = {
	allow = {
		age = 16
		trait = nazi
		trait = capitalist
	}
	chance = {
		factor = 1
	}
}
nick_the_benefactor = {
	allow = {
		age = 16
		trait = capitalist
		trait = humanitarian
	}
	chance = {
		factor = 1
	}
}
nick_the_liberator = {
	allow = {
		age = 16
		trait = communist
		trait = anarchist
	}
	chance = {
		factor = 1
	}
}