##############################################################
###	PORTRAITS SETTINGS
###
### Which portraits are used is set in 
### common\species_classes\00_species_classes.txt
###
###	This file configures how portraits and planet backgrounds are built.
###	Default position orientation is lower left.
##############################################################

portraits = {


	ratzinger_male_1 = {	entity = "portrait_human_male_01_entity"	clothes_selector = "ratzinger1_clothes" hair_selector = "ratzinger1_hair"	greeting_sound = "human_male_greetings_03" 
				character_textures = {
                   			"gfx/models/portraits/ratzinger/ratzinger-1.dds"
          			}
	}

	ratzinger_female_1 = {	entity = "portrait_human_male_01_entity"	clothes_selector = "ratzinger1_clothes" hair_selector = "ratzinger1_hair"	greeting_sound = "human_male_greetings_03" 
				character_textures = {
                   			"gfx/models/portraits/ratzinger/ratzinger-1_female.dds"
          			}
	}		
	
}

portrait_groups = {
	ratzinger = {
		default = ratzinger_male_1
		game_setup = { #will run with a limited country scope. species and government is set but the country does not actually exist
			add = {
				trigger = {
					ruler = { gender = male }
				}
				portraits = {
					ratzinger_male_1
				}
			}
			add = {
				trigger = {
					ruler = { gender = female }
				}
				portraits = {
					ratzinger_female_1

				}
			}
			#set = {
			#	trigger = { ... }
			#	portraits = { ... }
			#	#using "set =" instead of "add" will first clear any portraits already added
			#}
		}		
		
		#species scope
		species = { #generic portrait for a species
			add = {
				portraits = {
					ratzinger_male_1
					ratzinger_female_1
				}
			}
		}		
		
		#pop scope
		pop = { #for a specific pop
			add = {
				portraits = {
					ratzinger_female_1
					ratzinger_male_1
				}
			}
		}
		
		#leader scope
		leader = { #scientists, generals, admirals, governor
			add = {
				trigger = {
					gender = female
				}
	
				portraits = {
					ratzinger_female_1

				}
			
			}
			add = {
				trigger = {
					gender = male
				}
				portraits = {
					ratzinger_male_1

				}
			}
		}

			
		#leader scope 
		ruler = {
			add = {
				trigger = {
					gender = female
				}
				portraits = {
					ratzinger_female_1
				}
			}
			add = {
				trigger = {
					gender = male
				}
				portraits = {
					ratzinger_male_1
				}
			}
		}
	}
}