﻿
##TRIGGER LIST
# has_conventionally_attractive_trigger
# has_conventionally_ugly_trigger
# has_permanent_physical_injury - checks if you have some permanent injury
#

has_conventionally_attractive_trigger = {
	OR = {
		has_trait = beauty_good
		AND = {
			has_trait = strong
			NOT = { has_trait = beauty_bad }
		}
	}
}

has_conventionally_ugly_trigger = {
	OR = {
		has_trait = beauty_bad
		has_trait = hunchbacked
		has_trait = one_legged
		has_trait = scarred
		has_trait = one_eyed
		has_trait = scaly
		has_trait = great_pox
		has_trait = dwarf
		has_trait = albino
	}
}

has_permanent_physical_injury = {
	OR = {
		has_trait = one_legged
		has_trait = one_eyed
		has_trait = scarred
		has_trait = maimed
		is_eunuch_trigger = yes
		has_trait = blind
	}
}
