﻿
#Mod authors, place any traits, modifiers, or other conditions that you'd like to ensure protects characters from culls

#######
#This one prevents the character from being culled, but they may still get the Obscured from Distance trait
#######
acotw_has_important_modded_trait_or_quality = {
	OR = {
		#List traits or conditions here, character scope
	}
}

#######
#This one prevents the character from being culled AND they should NEVER get the Obscured from Distance trait
#######
acotw_prevent_obscured_trait_from_being_add = {
	OR = {
		#AGOT - Basic Support for Dragons
		AND = {
			exists = global_var:AGOT_is_loaded
			OR = {
				has_trait = dragon
				has_trait = dragonrider
				has_trait = dragonless_dragonrider
				has_trait = dragonwidowed
				has_trait = dragonslayer
			}
		}
	}
}