﻿senate = {
	male = {
		default = { head = "idle_entry" torso = "idle_entry" }
		senate_idle = {
			animation = { head = "AI_honorable_entry" torso = "AI_honorable_entry" }
			weight = {
				base = 0
				modifier = {
					add = 10
					current_weight <= 10
				}
			}
		}
		senate_chancellor = {
			animation = { head = "council_chancellor" torso = "council_chancellor" } 
			weight = {
				base = 0
				modifier = {
					add = 10
					10 < current_weight <= 20
					AND = {
						10 < current_weight
						current_weight <= 20
					}
				}
			}
			portrait_modifier = {							
				animations_props = chancellor_prop
				animations = council_chancellor_decal
			}
		}
		senate_disapproval = {
			animation = { head = "emotion_disapproving_entry" torso = "emotion_disapproving_entry" }
			weight = {
				base = 0
				modifier = {
					add = 10
					AND = {
						20 < current_weight
						current_weight <= 30
					}
				}
			}
		}
		senate_worry = {
			animation = { head = "emotion_worry_entry" torso = "emotion_worry_entry" }
			weight = {
				base = 0
				modifier = {
					add = 10
					AND = {
						30 < current_weight
						current_weight <= 40
					}
				}
			}
		}
		senate_disapproval = {
			animation = { head = "emotion_happy_entry" torso = "emotion_happy_entry" }
			weight = {
				base = 0
				modifier = {
					add = 10
					AND = {
						40 < current_weight
						current_weight <= 50
					}
				}
			}
		}
	}
	female = male
	boy = male
	girl = male
}
