decisions = {
	invite_amazon = {			# Copied mostly from the [CK2+.present_debutante.decision]
		# Pre-triggers
		ai = no			# AI cannot make this decision
		#only_rulers = yes	# Any characer with a title
		only_playable = yes	# Count-tier or higher, or Partician
		
		potential = {
			is_ruler = yes
			ai = no
			OR = {
				higher_tier_than = BARON
				is_patrician = yes
			}
		}
		allow = {
			treasury = 1
			#NOT = ( trait = in_hiding )
			#NOT = { has_character_modifier = in_seclusion }
			NOT = ( 
			  OR = {
				trait = in_hiding
				has_character_modifier = in_seclusion
			  }
			}
		}

		effect = {
			treasury = -1
			create_character = {
				random_traits = yes
				culture = ROOT
				religion = ROOT
				dynasty = random
				female = yes
				age = 16
			}
			new_character = {
				remove_trait = slow
				remove_trait = imbecile
				remove_trait = dull
				add_trait = amazon	# Make her an Amazon!
				remove_trait = craven	# Surely, an Amazon would not be craven
				add_trait = brave		# 
				add_trait = strong	# 
				random_list = {
					20 = { add_trait = quick }
					10 = { add_trait = genius }
					70 = { }
				}
				random_list = {
					10 = { add_trait = shrewd }
					50 = { add_trait = fair }
					40 = { }
				}
				random_list = {
					10 = { add_trait = content }
					30 = { add_trait = ambitious }
					20 = { add_trait = diligent }
					40 = { }
				}
				random_list = {
					25 = { 
						add_trait = chaste 
						remove_trait = lustful 
					}
					25 = { 
						add_trait = celibate 
						remove_trait = lustful 
					}
					30 = { remove_trait = lustful }
					20 = { add_trait = lustful }
				}

				hidden_tooltip = {	# [yehudi] is a CK2+ trait
					if ={
						limit = { ROOT = { religion_group = jewish_group } }
						random = {
							chance = 70
							add_trait = yehudi
						}
					}
					set_character_flag = yehudi_check
				}
				hidden_tooltip = {
					if = {
						limit = {
							religion_group = indian_group
							NOT = { religion = taoist }
							NOT = { religion = bon }
						}
						add_trait = kshatriya
						character_event = { id = RoI.30121 }
					}
				}
				set_character_flag = debutante
				save_event_target_as = invited_character
			}
			character_event = { id = NE.1 }
		}
		ai_will_do = { factor = 0 }		# Let's really make sure the AI doesn't do this
	}
}