﻿namespace = podgreatpersons

scripted_trigger POD_show_generic_gp_event_text = {
	is_vampire_trigger = no
	is_kueijin_trigger = no
}

# Macro with 4 arguments
# REGION: The region a player or AI needs to be present in to get the GP event
# EVENT:  The ID of the GP event
# GP_AGE: How old the GP is (needs to be checked so that AI vampires won't try to embrace childer that are older than them)
# DELAY:  How many days will pass before the GP event gets fired (useful if there are multiple GP events in the same year)
scripted_effect POD_spawn_gp = {
	if = {
		limit = {
			any_player = {
				POD_is_valid_for_regional_event = {
					REGION = $REGION$
				}
				#is_vampire_trigger = yes
			}
		}
		random_player = {
			limit = {
				POD_is_valid_for_regional_event = {
					REGION = $REGION$
				}
				is_vampire_trigger = yes
			}
			alternative_limit = {
				POD_is_valid_for_regional_event = {
					REGION = $REGION$
				}
			}
			trigger_event = {
				id = $EVENT$
				days = $DELAY$
			}
		}
	}
	else = {
		random_ruler = {
			limit = {
				POD_is_valid_for_regional_event = {
					REGION = $REGION$
				}
				is_vampire_trigger = yes
				is_ai = yes
				age > $GP_AGE$
			}
			weight = {
				base = 1
				
				modifier = {
					add = 10
					highest_held_title_tier > tier_county
				}
				modifier = {
					add = 10
					highest_held_title_tier > tier_duchy
				}
				modifier = {
					add = 10
					highest_held_title_tier > tier_kingdom
				}
			}
			trigger_event = {
				id = $EVENT$
				days = $DELAY$
			}
		}
	}
}

scripted_effect POD_flag_as_great_person = {
	add_trait = historical_character
	# flag is still used in old script
	add_character_flag = POD_great_person_flag
}

scripted_effect POD_invite_gp = {
	$COST$
	
	hidden_effect = {
		random = {
			chance = 35
			trigger_event = {
				id = podgreatpersons.1000
				days = 2
			}
		}
	}
	
	custom_tooltip = podgreatpersons.0001.custom
	
	hidden_effect = {
		add_courtier = scope:greatperson
		POD_masquerade_exposure_increase_effect = yes
		
		scope:greatperson = {
			add_character_flag = {
				flag = blocked_from_leaving
				years = 2
			}
		}
	}
}

scripted_effect POD_invite_gp_for_gold = {
	POD_invite_gp = {
		COST = "remove_short_term_gold = medium_gold_value"
	}
}

scripted_effect POD_invite_gp_for_prestige = {
	POD_invite_gp = {
		COST = "add_prestige = medium_prestige_loss"
	}
}

scripted_effect POD_gp_gets_embraced_by_neighbor = {
	custom_tooltip = podgreatpersons.0001.customb
	
	hidden_effect = {
		if = {
			limit = { is_landed = yes }
			random_neighboring_and_across_water_top_liege_realm_owner = {
				limit = {
					is_ai = yes
					is_vampire_trigger = yes
					POD_can_embrace = {
						SIRE = this
						CHILDE = scope:greatperson
					}
				}
				weight = {
					base = 1
					
					modifier = {
						add = 10
						highest_held_title_tier > tier_county
					}
					modifier = {
						add = 10
						highest_held_title_tier > tier_duchy
					}
					modifier = {
						add = 10
						highest_held_title_tier > tier_kingdom
					}
				}
				save_scope_as = vampiresire
			}
		}
		else = {
			if = {
				limit = { exists = domicile }
				domicile.domicile_location = { save_scope_as = location }
			}
			else = {
				location = { save_scope_as = location }
			}
			location.empire = {
				random_de_jure_top_liege = {
					limit = {
						is_ai = yes
						is_vampire_trigger = yes
						POD_can_embrace = {
							SIRE = this
							CHILDE = scope:greatperson
						}
					}
					weight = {
						base = 1
						
						modifier = {
							add = 10
							highest_held_title_tier > tier_county
						}
						modifier = {
							add = 10
							highest_held_title_tier > tier_duchy
						}
						modifier = {
							add = 10
							highest_held_title_tier > tier_kingdom
						}
					}
					save_scope_as = vampiresire
				}
			}
		}
		
		if = {
			limit = { exists = scope:vampiresire }
			
			scope:greatperson = {
				save_scope_as = created_vampirechilde
				set_employer = scope:vampiresire
				every_targeting_scheme = {
					end_scheme = yes
				}
			}
			
			scope:vampiresire = {
				POD_player_character_create_vampirechilde_effect = yes
			}
		}
		else = {
			scope:greatperson = {
				POD_disappearance_effect = yes
			}
		}
	}
}

scripted_effect POD_gp_auto_embrace_option_for_ai = {
	if = {
		limit = {
			POD_can_embrace = {
				SIRE = this
				CHILDE = scope:greatperson
			}
		}
		add_courtier = scope:greatperson
	
		save_scope_as = vampiresire
		
		scope:greatperson = {
			save_scope_as = created_vampirechilde
		}
		POD_player_character_create_vampirechilde_effect = yes
	}
	else = {
		POD_gp_gets_embraced_by_neighbor = yes
	}
}


podgreatpersons.1001 = {
	#Main event handling GP
	#Called from specific yearly pulse on action with a small delay
	hidden = yes
	scope = none
	
	trigger = {
	}
	
	immediate = {
		if = {
			limit = {
				current_year = 1231
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ald
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0001
				GP_AGE = 69
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1232
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_padua
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0007
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1233
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_elizabeth
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0021
				GP_AGE = 24
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1236
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_clare
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0013
				GP_AGE = 33
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1238
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hermann
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0032
				GP_AGE = 72
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1240
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_baba
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0009
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1241
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_snorri
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0056
				GP_AGE = 62
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1244
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_thomas
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0063
				GP_AGE = 34
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1246
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_fatima
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0189
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1248
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_subutai
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0057
				GP_AGE = 72
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1250
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_fibonacci
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0024
				GP_AGE = 70
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1251
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_andre
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0201
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1252
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ken_dedes
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT = podgreatpersons.0261
				GP_AGE = 36
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1253
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_thibaut
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0062
				GP_AGE = 52
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1257
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ulrich
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0067
				GP_AGE = 57
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1258
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_shadhili
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0124
				GP_AGE = 60
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1263
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_nevsky
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0006
				GP_AGE = 42
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1264
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_domentijan
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0098
				GP_AGE = 54
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1266
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_birger
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0076
				GP_AGE = 50
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1273
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_rumi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0003
				GP_AGE = 66
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1274
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_tusi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0163
				GP_AGE = 73
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1275
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_godred
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0111
				GP_AGE = 23
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1276
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_traore
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0123
				GP_AGE = 39
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1279
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_euphrosyne
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0202
				GP_AGE = 29
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1280
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_madan
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0119
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1283
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_wang_qinghui
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_china # world_china
				EVENT  = podgreatpersons.0225
				GP_AGE = 37
				DELAY  = 5
			}
		}

		else_if = {
			limit = {
				current_year = 1285
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_rundi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0073
				GP_AGE = 81
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1289
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_elizabeth_cuman
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0214
				GP_AGE = 44
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1290
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_theodora
					}
				}
			}
			POD_spawn_gp = {
				REGION = POD_region_greece
				EVENT  = podgreatpersons.0060
				GP_AGE = 50
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1291
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dawla
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0072
				GP_AGE = 51
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1295
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mahisa_anabrang
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0262
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1301
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_false_margaret
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0197
				GP_AGE = 33
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1302
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_audun
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0159
				GP_AGE = 62
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1304
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_glabas
					}
				}
			}
			POD_spawn_gp = {
				REGION = POD_region_greece
				EVENT  = podgreatpersons.0154
				GP_AGE = 69
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1305
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_wallace
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0070
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1306
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_khutulun
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0166
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1311
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_edward
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0019
				GP_AGE = 59
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1314
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hammu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0205
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1316
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_malik
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0156
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1319
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_borjigin_yilianzhenbala
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0232
				GP_AGE = 29
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1320
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yasaur
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0198
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1321
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dante
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0017
				GP_AGE = 56
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1324
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kyteler
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0002
				GP_AGE = 61
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1328
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_zannekin
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0050
				GP_AGE = 33
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1332
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_metochites
					}
				}
			}
			POD_spawn_gp = {
				REGION = POD_region_greece
				EVENT  = podgreatpersons.0059
				GP_AGE = 62
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1344
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_syrgiannes
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0215
				GP_AGE = 44
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1340
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_black_agnes
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0004
				GP_AGE = 28
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1341
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_birgitta
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0011
				GP_AGE = 20
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1344
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sikandar
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0120
				GP_AGE = 41
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1345
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_momchil
					}
				}
			}
			POD_spawn_gp = {
				REGION = POD_region_greece
				EVENT  = podgreatpersons.0082
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1346
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sahili
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0169
				GP_AGE = 56
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1347
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_eustace
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0023
				GP_AGE = 59
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1348
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kermani
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0176
				GP_AGE = 59
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1350
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_nanda
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0148
				GP_AGE = 69
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1351
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_othman
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0147
				GP_AGE = 53
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1352
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kassi
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0213
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1354
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_cola
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0016
				GP_AGE = 41
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1355
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_han_liner
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_china # world_china
				EVENT  = podgreatpersons.0223
				GP_AGE = 27
				DELAY  = 66
			}
		}
		else_if = {
			limit = {
				current_year = 1357
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_citra_rashmi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0264
				GP_AGE = 17
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1360
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_adam
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0081
				GP_AGE = 49
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1361
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ulus_bhuka
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0233
				GP_AGE = 41
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1364
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gajah_mada
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0265
				GP_AGE = 74
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1365
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_catherine
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0012
				GP_AGE = 30
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1366
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_seguin
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0078
				GP_AGE = 36
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1367
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ontsifor
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0092
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1368
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_battuta
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0131
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1369
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_luchino
					}
				}
			}
			POD_spawn_gp = {
				REGION = POD_region_greece
				EVENT  = podgreatpersons.0112
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1374
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_khatib
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0162
				GP_AGE = 61
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1377
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_urduja
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0266
				GP_AGE = 73
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1378
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_owain
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0079
				GP_AGE = 48
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1380
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_alexander
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0105
				GP_AGE = 25
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1381
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_wat_tyler
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0069
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1382
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_margaret
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0046
				GP_AGE = 72
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1386
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_tantular
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0267
				GP_AGE = 64
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1389
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_milos
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0099
				GP_AGE = 30
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1390
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_choe_yongdeok
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0234
				GP_AGE = 22
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1392
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hawkwood
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0042
				GP_AGE = 69
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1394
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_robert
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0084
				GP_AGE = 54
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1396
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_agnes_hotot
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0127
				GP_AGE = 25
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1398
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_chong_tojon
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea
				EVENT  = podgreatpersons.0226
				GP_AGE = 56
				DELAY  = 180
			}
		}

		
		else_if = {
			limit = {
				current_year = 1399
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_oslyabya
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0104
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1400
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_chaucer
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0027
				GP_AGE = 56
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1401
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_khaldun
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0034
				GP_AGE = 68
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1405
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jefimija
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0100
				GP_AGE = 56
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1406
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yuri
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0200
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1408
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yi_hyebi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0235
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1415
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hus
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0036
				GP_AGE = 46
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1420
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_bedreddin
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0074
				GP_AGE = 61
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1424
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_zizka
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0037
				GP_AGE = 63
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1426
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sang_adi_putra
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0268
				GP_AGE = 82
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1428
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_zawisza
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0077
				GP_AGE = 58
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1430
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_christine
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0015
				GP_AGE = 66
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1435
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_xordo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0054
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1440
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gilles
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0028
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1441
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_helene
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0185
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1444
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_julian
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0113
				GP_AGE = 46
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1450
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_agnes_sorel
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0005
				GP_AGE = 28
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1451
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_lizdeika
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_baltic
				EVENT  = podgreatpersons.0194
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1456
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_park_paengnyeon
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe # change to jeonsan
				EVENT  = podgreatpersons.0236
				GP_AGE = 39
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1468
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_skanderbeg
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0055
				GP_AGE = 62
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1472
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_janus
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0142
				GP_AGE = 38
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1473
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_giorgio
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0102
				GP_AGE = 63
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1475
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_theodora_fictional
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0191
				GP_AGE = 22
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1476
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_galeazzo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0026
				GP_AGE = 32
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1478
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_marfa
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0188
				GP_AGE = 58
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1480
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ridolfo
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0108
				GP_AGE = 60
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1481
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mikhailo
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_baltic
				EVENT  = podgreatpersons.0187
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1483
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_doramas
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0207
				GP_AGE = 26
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1486
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sayyid_shi_daniang
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0270
				GP_AGE = 62
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1490
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kladas
					}
				}
			}
			POD_spawn_gp = {
				REGION = POD_region_greece
				EVENT  = podgreatpersons.0134
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1489
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yu_zijun
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_china # world_china
				EVENT  = podgreatpersons.0224
				GP_AGE = 60
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1491
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mawsilu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0192
				GP_AGE = 51
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1492
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_beatrice_silva
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0010
				GP_AGE = 68
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1498
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_savonarola
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0029
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1502
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dionisius
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0109
				GP_AGE = 62
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1503
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_rodrigo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0053
				GP_AGE = 72
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1504
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_tegueste
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0206
				GP_AGE = 68
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1507
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_cesare
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0014
				GP_AGE = 31
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1510
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gaspar
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0138
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1511
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_beatriz
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0140
				GP_AGE = 46
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1512
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_imperia
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0035
				GP_AGE = 26
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1515
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_lorenz
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0087
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1519
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_leonardo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0043
				GP_AGE = 67
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1520
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_atukuri
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0115
				GP_AGE = 80
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1521
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_tun_fatimah
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0272
				GP_AGE = 41
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1522
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_nebrija
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0008
				GP_AGE = 77
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1524
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_muntzer
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0064
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1525
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_geyer
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0025
				GP_AGE = 35
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1526
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_pero
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0165
				GP_AGE = 66
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1530
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_albertas
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_baltic
				EVENT  = podgreatpersons.0186
				GP_AGE = 50
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1532
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_diego
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0150
				GP_AGE = 52
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1533
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mikolaj
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0157
				GP_AGE = 53
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1535
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gerasimov
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0174
				GP_AGE = 70
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1536
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ibrahim
					}
				}
			}
			POD_spawn_gp = {
				REGION = POD_region_greece
				EVENT  = podgreatpersons.0133
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1541
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_idia
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0180
				GP_AGE = 41
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1542
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sayyida
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0125
				GP_AGE = 57
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1543
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_nils
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0164
				GP_AGE = 30
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1544
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_michael
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0181
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1545
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gotz
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0030
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1546
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sinan
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0137
				GP_AGE = 26
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1547
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_magdalena
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0158
				GP_AGE = 59
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1550
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mahri
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0149
				GP_AGE = 69
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1554
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_wazzan
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0183
				GP_AGE = 54
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1559
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_diane
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0018
				GP_AGE = 59
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1560
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_marin
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0103
				GP_AGE = 52
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1568
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_vyrodkov
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0106
				GP_AGE = 48
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1579
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_khayr
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0193
				GP_AGE = 33
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1580
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kudeyar
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0094
				GP_AGE = 51
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1581
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jacob
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0152
				GP_AGE = 60
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1582
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_avila
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0058
				GP_AGE = 58
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1583
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gulbadan
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0151
				GP_AGE = 59
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1585
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yermak
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0107
				GP_AGE = 43
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1587
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mary
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0126
				GP_AGE = 62
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1593
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ju_nongae
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea
				EVENT  = podgreatpersons.0227
				GP_AGE = 19
				DELAY  = 1
			}
		}
		
		else_if = {
			limit = {
				current_year = 1596
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_bodin
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0141
				GP_AGE = 66
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1598
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yi-sunsin
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0239
				GP_AGE = 53
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1601
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_novak
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0136
				GP_AGE = 69
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1608
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_bolotnikov
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0095
				GP_AGE = 43
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1610
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dmitry
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0096
				GP_AGE = 28
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1612
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ivo
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0135
				GP_AGE = 41
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1614
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_bathory
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0020
				GP_AGE = 54
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1615
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_laksamna_malahayati
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0273
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1617
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_tempest_peacock
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT  = podgreatpersons.0221
				GP_AGE = 36
				DELAY  = 11
			}
		}
		
		
		else_if = {
			limit = {
				current_year = 1621
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_samuel
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_baltic
				EVENT  = podgreatpersons.0129
				GP_AGE = 46
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1626
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ernst
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0022
				GP_AGE = 46
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1629
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_vendela
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0128
				GP_AGE = 21
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1638
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gundulic
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0101
				GP_AGE = 49
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1644
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_torsten
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0130
				GP_AGE = 51
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1648
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_porter
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0088
				GP_AGE = 45
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1664
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kurbat
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0199
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1670
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_alena
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0097
				GP_AGE = 25
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1680
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_voisin
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0091
				GP_AGE = 40
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1693
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_charnock
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0168
				GP_AGE = 63
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1696
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_anu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0179
				GP_AGE = 42
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1706
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_guush
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0167
				GP_AGE = 49
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1715
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dampier
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0090
				GP_AGE = 63
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1748
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_theodore
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0061
				GP_AGE = 55
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1750
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_nagash
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0071
				GP_AGE = 56
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1764
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_pompadour
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0038
				GP_AGE = 42
				DELAY  = 1
			}
		}
		
		#Repeat for GP occurring in the same year
		
		if = {
			limit = {
				current_year = 1231
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_zhao_rukuo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_china
				EVENT  = podgreatpersons.0274
				GP_AGE = 61
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1232
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_scot
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0047
				GP_AGE = 57
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1236
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_pons
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0052
				GP_AGE = 46
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1238
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_anseau
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0143
				GP_AGE = 52
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1240
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_arabi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0033
				GP_AGE = 75
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1241
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_boleslaus
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0116
				GP_AGE = 45
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1250
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_blemmydes
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0051
				GP_AGE = 53
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1257
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_shajar
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0160
				GP_AGE = 34
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1263
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mindaugas
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_baltic
				EVENT  = podgreatpersons.0048
				GP_AGE = 60
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1273
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hadewijch
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0031
				GP_AGE = 35
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1273
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kim_tongjong
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0231
				GP_AGE = 52
				DELAY  = 45
			}
		}
		else_if = {
			limit = {
				current_year = 1275
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_angele
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0144
				GP_AGE = 45
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1276
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_shahuir
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0161
				GP_AGE = 68
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1280
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ertugrul
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0121
				GP_AGE = 45
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1285
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_qutui
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0122
				GP_AGE = 43
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1290
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_reynold
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_central_european
				EVENT  = podgreatpersons.0153
				GP_AGE = 55
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1291
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_saadi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0132
				GP_AGE = 81
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1299
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_zafar
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0178
				GP_AGE = 40
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1301
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_perez
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0204
				GP_AGE = 29
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1305
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_flor
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0080
				GP_AGE = 37
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1306
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_torkel
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_north
				EVENT  = podgreatpersons.0196
				GP_AGE = 46
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1319
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dyah_halayudha
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0263
				GP_AGE = 53
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1324
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_polo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0045
				GP_AGE = 69
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1328
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_taymiyyah
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0118
				GP_AGE = 64
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1330
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ivan
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0093
				GP_AGE = 25
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1341
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_alauddin
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0075
				GP_AGE = 42
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1347
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jeanne
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0039
				GP_AGE = 46
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1351
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dilshad
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0172
				GP_AGE = 35
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1360
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_thomais
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_balkans
				EVENT  = podgreatpersons.0171
				GP_AGE = 30
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1365
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_haci
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0155
				GP_AGE = 60
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1366
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_arnaud
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0083
				GP_AGE = 66
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1380
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mamai
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0190
				GP_AGE = 55
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1382
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_timur
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0065
				GP_AGE = 41
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1430
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jeanne_darc
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0040
				GP_AGE = 19
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1435
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_louis
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_francia
				EVENT  = podgreatpersons.0085
				GP_AGE = 39
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1440
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_emotan
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0170
				GP_AGE = 40
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1476
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_lodewyk
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0086
				GP_AGE = 41
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1480
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_park_guma
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0237
				GP_AGE = 38
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1481
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sayyid_ali_rahmatullah
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0269
				GP_AGE = 80
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1492
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_torquemada
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0066
				GP_AGE = 71
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1498
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_cabot
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0041
				GP_AGE = 48
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1519
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_lucrezia
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0044
				GP_AGE = 39
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1520
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_cabral
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0146
				GP_AGE = 52
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1520
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jo_gwangjo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0238
				GP_AGE = 38
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1524
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_gama
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0068
				GP_AGE = 55
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1525
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_machiavelli
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_south_italy
				EVENT  = podgreatpersons.0049
				GP_AGE = 56
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1530
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kristos
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0211
				GP_AGE = 31
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1536
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_garcia
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_iberia
				EVENT  = podgreatpersons.0145
				GP_AGE = 66
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1585
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_zaria
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0173
				GP_AGE = 45
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1638
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_bayram
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0209
				GP_AGE = 43
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1336
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kusunoki_masasue
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan # change to world_japan
				EVENT  = podgreatpersons.0219
				GP_AGE = 34
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1549
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hwang_jini
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to world_korean
				EVENT  = podgreatpersons.0217
				GP_AGE = 43
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1570
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mochizuki_chiyome
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan # change to world_japan
				EVENT  = podgreatpersons.0220
				GP_AGE = 33
				DELAY  = 50
			}
		}

		
		#Second Repeat for GP occurring in the same year
		
		if = {
			limit = {
				current_year = 1236
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kante
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0182
				GP_AGE = 36
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1240
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jamal
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0175
				GP_AGE = 40
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1241
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ilya
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_russia
				EVENT  = podgreatpersons.0184
				GP_AGE = 35
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1250
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_guillaume
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0117
				GP_AGE = 35
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1250
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yang_miaozhen
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_china # change to world_china
				EVENT  = podgreatpersons.0218
				GP_AGE = 57
				DELAY  = 60
			}
		}
		else_if = {
			limit = {
				current_year = 1258
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hong_pok-won
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to world_korean
				EVENT  = podgreatpersons.0222
				GP_AGE = 52
				DELAY  = 90
			}
		}
		
		else_if = {
			limit = {
				current_year = 1263
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_constantine
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_minor
				EVENT  = podgreatpersons.0139
				GP_AGE = 39
				DELAY  = 50
			}
		}
		
		else_if = {
			limit = {
				current_year = 1263
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_shinran
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan
				EVENT  = podgreatpersons.0230
				GP_AGE = 70
				DELAY  = 55
			}
		}
		else_if = {
			limit = {
				current_year = 1291
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ugolino
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0212
				GP_AGE = 43
				DELAY  = 25
			}
		}
		else_if = {
			limit = {
				current_year = 1299
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_suwari
					}
				}
			}
			POD_spawn_gp = {
				REGION = custom_sub_saharan_africa_immediate
				EVENT  = podgreatpersons.0210
				GP_AGE = 45
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1305
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_buscarello
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_steppe
				EVENT  = podgreatpersons.0203
				GP_AGE = 55
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1324
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_william
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_britannia
				EVENT  = podgreatpersons.0110
				GP_AGE = 40
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1366
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yalbugha
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_africa_north
				EVENT  = podgreatpersons.0208
				GP_AGE = 40
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1382
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_birute
					}
				}
			}
			POD_spawn_gp = {
				REGION = ghw_region_baltic
				EVENT  = podgreatpersons.0195
				GP_AGE = 50
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1430
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_vidyapati
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_india
				EVENT  = podgreatpersons.0114
				GP_AGE = 77
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1492
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jami
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_middle_east
				EVENT  = podgreatpersons.0177
				GP_AGE = 78
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1498
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sayyid_tun_perak
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT  = podgreatpersons.0271
				GP_AGE = 72
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1536
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_hopfer
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_europe_west_germania
				EVENT  = podgreatpersons.0089
				GP_AGE = 66
				DELAY  = 50
			}
		}
		else_if = {
			limit = {
				current_year = 1550
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_jang_geum
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan
				EVENT  = podgreatpersons.0228
				GP_AGE = 76
				DELAY  = 250
			}
		}
		else_if = {
			limit = {
				current_year = 1612
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_sasaki_kojiro
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan # change to world_japan
				EVENT  = podgreatpersons.0216
				GP_AGE = 27
				DELAY  = 60
			}
		}
		else_if = {
			limit = {
				current_year = 1614
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_kwak_chaeu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_korea # change to jeonsan
				EVENT  = podgreatpersons.0240
				GP_AGE = 65
				DELAY  = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1264
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_tran_thu_do
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0241
				GP_AGE = 63
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1284
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_an_tu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0242
				GP_AGE = 17
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1300
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_thanh_hung_dao
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0243
				GP_AGE = 72
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1322
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_le_van_huu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0244
				GP_AGE = 22
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1308
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_huyen_tran
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0245
				GP_AGE = 19
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1346
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_mac_dinh_chi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0246
				GP_AGE = 74
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1367
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_nga_tet_pya
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0247
				GP_AGE = 22
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1392
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_piya_yaza_dewi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0248
				GP_AGE = 32
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1414
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_dang_dung
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0249
				GP_AGE = 41
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1438
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_keo_phimpha
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0250
				GP_AGE = 95
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1451
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_trinh_kha
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0251
				GP_AGE = 49
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1472
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_shin_sawbu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0252
				GP_AGE = 77
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1473
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_yazathingyan
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0253
				GP_AGE = 85
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1553
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_diogo_soares
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0254
				GP_AGE = 47
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1442
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_nguyen_thi_lo
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0255
				GP_AGE = 43
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1585
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_tachibana_dosetsu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_mainland
				EVENT = podgreatpersons.0256
				GP_AGE = 72
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1481
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ikkyu
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan # change to world_japan
				EVENT = podgreatpersons.0257
				GP_AGE = 87
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1351
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ko_no_moronao
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan # change to world_japan
				EVENT = podgreatpersons.0258
				GP_AGE = 52
				DELAY = 1
			}
		}
		else_if = {
			limit = {
				current_year = 1270
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_ben_no_naishi
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_japan # change to world_japan
				EVENT = podgreatpersons.0259
				GP_AGE = 41
				DELAY = 1
			}
		}
		
		
		if = {
			limit = {
				current_year = 1240
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_lohgawe
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT = podgreatpersons.0260
				GP_AGE = 61
				DELAY = 75
			}
		}
		else_if = {
			limit = {
				current_year = 1252
				NOT = {
					is_target_in_global_variable_list = {
						name = special_character_list
						target = flag:spawned_gp_lohgawe
					}
				}
			}
			POD_spawn_gp = {
				REGION = world_asia_southeast_islands
				EVENT = podgreatpersons.0261
				GP_AGE = 61
				DELAY = 75
			}
		}
	}
}

podgreatpersons.0001 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0001.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0001.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Abd_al_Latif_al_Baghdadi"
			age = 69
			gender = male
			dynasty = none
			learning = 5
			diplomacy = 5
			intrigue = 5
			stewardship = 5
			faith = faith:innocence
			culture = culture:bedouin
			trait = education_learning_4
			trait = intellect_good_1
			trait = diligent
			trait = fickle
			trait = gregarious
			trait = scholar
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_physician
				add_trait = lifestyle_physician
				add_trait_xp = {
					trait = lifestyle_physician
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_ald
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ald
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0002 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0002.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0002.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Alice_Kyteler"
			age = 61
			gender = female
			dynasty = none
			learning = 8
			intrigue = 5
			stewardship = 8
			faith = faith:innocence
			culture = culture:irish
			trait = education_intrigue_4
			trait = shrewd
			trait = deceitful
			trait = ambitious
			trait = callous
			trait = sorcerer
			trait = witch
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_first_witch
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = alchemy_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kyteler
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0003 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0003.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0003.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jalal_ad_Din_Muhammad_Rumi"
			age = 66
			gender = male
			dynasty = none
			learning = 10
			diplomacy = 8
			stewardship = 9
			faith = faith:innocence
			culture = culture:persian
			trait = education_learning_5
			trait = intellect_good_1
			trait = calm
			trait = patient
			trait = gregarious
			trait = theologian
			trait = theurgist
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_our_master
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_rumi
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_rumi
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0004 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0004.t
	desc = podgreatpersons.0004.desc
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Agnes_Randolph"
			age = 28
			gender = female
			dynasty = none
			martial = 10
			intrigue = 10
			learning = 10
			stewardship = 13
			diplomacy = 10
			faith = faith:innocence
			culture = culture:scottish
			trait = education_martial_3
			trait = stubborn
			trait = patient
			trait = brave
			trait = mortal
			trait = unyielding_defender
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_black_agnes
				add_trait_xp = {
					trait = unyielding_defender
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_black_agnes
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0005 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0005.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0005.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Agnes_Sorel"
			age = 28
			gender = female
			dynasty = none
			diplomacy = 10
			intrigue = 12
			stewardship = 12
			learning = 10
			faith = faith:innocence
			culture = culture:french
			trait = education_diplomacy_3
			trait = beauty_good_2
			trait = greedy
			trait = diligent
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dame_de_beaute
			}
		}
		
		scope:greatperson= {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_agnes_sorel
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0006 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0006.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0006.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Alexander_Nevsky"
			age = 42
			gender = male
			dynasty = none
			martial = 10
			diplomacy = 10
			stewardship = 9
			intrigue = 7
			learning = 6
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_4
			trait = shrewd
			trait = brave
			trait = diligent
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_defender_of_rus
				add_trait_xp = {
					trait = flexible_leader
					value = 100
				}
			}
		}
		
		scope:greatperson= {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_nevsky
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0007 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0007.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0007.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Anthony_of_Padua"
			age = 35
			gender = male
			dynasty = none
			learning = 10
			diplomacy = 10
			stewardship = 10
			faith = faith:innocence
			culture = culture:portuguese
			trait = education_learning_4
			trait = compassionate
			trait = calm
			trait = generous
			trait = mortal
			trait = theologian
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_patron_of_losts
			}
		}
		
		scope:greatperson= {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_padua
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0008 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0008.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0008.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Antonio_de_Nebrija"
			age = 77
			gender = male
			dynasty = none
			learning = 5
			diplomacy = 9
			stewardship = 10
			faith = faith:innocence
			culture = culture:castilian
			trait = education_learning_4
			trait = diligent
			trait = calm
			trait = patient
			trait = mortal
			trait = scholar
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_instrument_empire
			}
		}
		
		scope:greatperson= {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_nebrija
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0009 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0009.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0009.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Baba_Ishak_Kafarsurdi"
			age = 40
			gender = male
			dynasty = none
			learning = 5
			intrigue = 10
			diplomacy = 15
			stewardship = 12
			faith = faith:innocence
			culture = culture:turkish
			trait = education_learning_3
			trait = arrogant
			trait = ambitious
			trait = deceitful
			trait = mortal
			trait = theologian
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_immortal_messiah
			}
		}
		
		scope:greatperson= {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_baba
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_baba
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0010 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0010.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0010.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Beatriz_da_Silva"
			age = 68
			gender = female
			dynasty = none
			learning = 10
			stewardship = 13
			diplomacy = 11
			faith = faith:innocence
			culture = culture:portuguese
			trait = education_learning_4
			trait = beauty_good_2
			trait = humble
			trait = zealous
			trait = diligent
			trait = mortal
			trait = theologian
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_white_toledo
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_beatrice_silva
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0011 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0011.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0011.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = disapproval
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Cecilia_Ulvsdotter"
			age = 20
			gender = female
			dynasty = none
			intrigue = 10
			learning = 10
			diplomacy = 10
			stewardship = 10
			faith = faith:innocence
			culture = culture:swedish
			trait = education_learning_2
			trait = cynical
			trait = generous
			trait = impatient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_princess_nericia
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_birgitta
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0012 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0012.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0012.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Bonaventura_of_Siena"
			age = 30
			gender = female
			dynasty = none
			learning = 8
			stewardship = 12
			intrigue = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_4
			trait = zealous
			trait = calm
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_euphrosyne_sister
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = weaver_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_catherine
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0013 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0013.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0013.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Beatrix_of_Assisi"
			age = 23
			gender = female
			dynasty = none
			learning = 6
			stewardship = 10
			diplomacy = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_4
			trait = zealous
			trait = shy
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_scarred_sister
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = weaver_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_clare
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0014 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0014.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0014.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Cesare_Borgia"
			age = 31
			gender = male
			dynasty = none
			stewardship = 10
			intrigue = 10
			martial = 10
			diplomacy = 10
			learning = 10
			prowess = 15
			faith = faith:innocence
			culture = culture:italian
			trait = education_martial_4
			trait = disfigured
			trait = cynical
			trait = ambitious
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_prince
				add_trait_xp = {
					trait = aggressive_attacker
					value = 40
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_cesare
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0015 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0015.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0015.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = happiness
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Christine_de_Pizan"
			age = 66
			gender = female
			dynasty = none
			learning = 5
			diplomacy = 10
			stewardship = 15
			faith = faith:innocence
			culture = culture:french
			trait = education_learning_4
			trait = generous
			trait = content
			trait = gregarious
			trait = scholar
			trait = mortal
			trait = kinfolk
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_treasured_lady
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_christine
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0016 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0016.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0016.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_coward
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Cola_di_Rienzo"
			age = 41
			gender = male
			dynasty = none
			intrigue = 10
			diplomacy = 15
			martial = 0
			learning = 7
			stewardship = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_intrigue_2
			trait = craven
			trait = arbitrary
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_sacrae_romanae
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_cola
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0017 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0017.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0017.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Dante_Alighieri"
			age = 56
			gender = male
			dynasty = none
			learning = 5
			diplomacy = 15
			intrigue = 15
			stewardship = 15
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_4
			trait = shy
			trait = diligent
			trait = patient
			trait = scholar
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_supreme_poet
				
				add_trait_xp = {
					trait = lifestyle_poet
					value = 100
				}				
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dante
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0018 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0018.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0018.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Diane_de_Poitiers"
			age = 59
			gender = female
			dynasty = none
			diplomacy = 5
			intrigue = 10
			stewardship = 15
			learning = 10
			faith = faith:innocence
			culture = culture:french
			trait = education_diplomacy_4
			trait = beauty_good_2
			trait = shrewd
			trait = gregarious
			trait = generous
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_ruling_passion
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = weaver_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_diane
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}

	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}

	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}

	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0019 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0019.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0019.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Henry_de_Lacy"
			age = 59
			gender = male
			dynasty = none
			diplomacy = 10
			martial = 10
			stewardship = 10
			learning = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:english
			trait = education_martial_3
			trait = honest
			trait = diligent
			trait = fickle
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_purpure_lion
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_edward
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0020 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0020.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0020.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Erzsebet_Bathory"
			age = 54
			gender = female
			dynasty = none
			intrigue = 5
			learning = 11
			stewardship = 15
			faith = faith:innocence
			culture = culture:hungarian
			trait = education_intrigue_5
			trait = sadistic
			trait = arbitrary
			trait = deceitful
			trait = torturer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_blood_countess
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_bathory
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0021 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0021.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0021.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Elizabeth"
			age = 24
			gender = female
			dynasty = none
			learning = 10
			stewardship = 12
			diplomacy = 12
			intrigue = 5
			faith = faith:innocence
			culture = culture:hungarian
			trait = education_learning_3
			trait = compassionate
			trait = generous
			trait = gregarious
			trait = mortal
			trait = beauty_good_3
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_saintly_pawn
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_elizabeth
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0022 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0022.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0022.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ernst_von_Mansfeld"
			age = 46
			gender = male
			dynasty = none
			martial = 10
			learning = 5
			prowess = 15
			intrigue = 10
			faith = faith:innocence
			culture = culture:franconian
			trait = education_martial_3
			trait = callous
			trait = cynical
			trait = greedy
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_raw_rascal
				add_trait_xp = {
					trait = flexible_leader
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ernst
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0023 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0023.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0023.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Eustace_Folville"
			age = 59
			gender = male
			dynasty = none
			prowess = 20
			stewardship = 11
			intrigue = 12
			martial = 12
			faith = faith:innocence
			culture = culture:english
			trait = education_martial_prowess_3
			trait = callous
			trait = vengeful
			trait = honest
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_unlikely_hero
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_eustace
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0024 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0024.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0024.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Fibonacci"
			age = 70
			gender = male
			dynasty = none
			learning = 6
			stewardship = 12
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_4
			trait = content
			trait = diligent
			trait = patient
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mathematician
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_fibonacci
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0025 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0025.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0025.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Florian_Geyer"
			age = 35
			gender = male
			dynasty = none
			martial = 12
			stewardship = 10
			intrigue = 10
			learning = 10
			prowess = 20
			faith = faith:innocence
			culture = culture:franconian
			trait = education_martial_prowess_3
			trait = callous
			trait = vengeful
			trait = wrathful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_black_company
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_geyer
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0026 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0026.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0026.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Galeazzo_Maria_Sforza"
			age = 32
			gender = male
			dynasty = none
			intrigue = 10
			stewardship = 12
			martial = 10
			learning = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_intrigue_2
			trait = sadistic
			trait = lustful
			trait = arbitrary
			trait = mortal
			trait = torturer
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_ruthless
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_galeazzo
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0027 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0027.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0027.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Geoffrey_Chaucer"
			age = 56
			gender = male
			dynasty = none
			learning = 2
			diplomacy = 13
			stewardship = 12
			faith = faith:innocence
			culture = culture:english
			trait = education_learning_4
			trait = patient
			trait = diligent
			trait = gregarious
			trait = mortal
			trait = scholar
			trait = diplomat
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_father_literature
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_chaucer
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0028 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0028.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0028.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Gilles_de_Rais"
			age = 35
			gender = male
			dynasty = none
			intrigue = 15
			martial = 5
			learning = 8
			stewardship = 10
			faith = faith:innocence
			culture = culture:french
			trait = education_martial_3
			trait = deceitful
			trait = wrathful
			trait = sadistic
			trait = sorcerer
			trait = mortal
			trait = torturer
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_bluebeard
				add_trait_xp = {
					trait = forder
					value = 40
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gilles
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0029 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0029.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0029.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Girolamo_Savonarola"
			age = 45
			gender = male
			dynasty = none
			diplomacy = 15
			stewardship = 10
			intrigue = 15
			learning = 7
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_4
			trait = deceitful
			trait = arrogant
			trait = craven
			trait = mortal
			trait = theologian
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_preacher_desperate
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_savonarola
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0030 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0030.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0030.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Gotz_von_Berlichingen"
			age = 65
			gender = male
			dynasty = none
			martial = 10
			stewardship = 14
			intrigue = 14
			learning = 8
			prowess = 10
			faith = faith:innocence
			culture = culture:franconian
			trait = education_martial_3
			trait = wrathful
			trait = brave
			trait = stubborn
			trait = mortal
			trait = maimed
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_iron_hand
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gotz
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0031 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0031.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0031.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_forgiving
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Hadewijch"
			age = 25
			gender = female
			dynasty = none
			learning = 5
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:dutch
			trait = education_learning_4
			trait = forgiving
			trait = diligent
			trait = patient
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_visionary_poetess
			
				add_trait_xp = {
					trait = lifestyle_poet
					value = 65
				}	
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hadewijch
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0032 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0032.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0032.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Hermann_von_Salza"
			age = 72
			gender = male
			dynasty = none
			martial = 10
			diplomacy = 7
			learning = 10
			stewardship = 15
			faith = faith:innocence
			culture = culture:saxon
			trait = education_martial_3
			trait = patient
			trait = gregarious
			trait = diligent
			trait = strategist
			trait = mortal
			trait = diplomat
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_spurned_grandmaster
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hermann
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0033 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0033.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0033.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ibn_Arabi"
			age = 72
			gender = male
			dynasty = none
			learning = 3
			diplomacy = 5
			stewardship = 7
			faith = faith:innocence
			culture = culture:andalusian
			trait = education_learning_4
			trait = intellect_good_2
			trait = patient
			trait = gregarious
			trait = diligent
			trait = mortal
			trait = scholar
			trait = theologian
			trait = theurgist
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_divine_sayings
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_arabi
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_arabi
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0034 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0034.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0034.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ibn_Khaldun"
			age = 68
			gender = male
			dynasty = none
			learning = 5
			diplomacy = 10
			intrigue = 10
			stewardship = 13
			martial = 7
			faith = faith:innocence
			culture = culture:andalusian
			trait = education_learning_5
			trait = shrewd
			trait = patient
			trait = ambitious
			trait = deceitful
			trait = mortal
			trait = scholar
			trait = diplomat
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_learned_adventurer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_khaldun
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_khaldun
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0035 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0035.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0035.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Imperia_Cognati"
			age = 26
			gender = female
			dynasty = none
			intrigue = 10
			learning = 5
			stewardship = 10
			diplomacy = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_intrigue_2
			trait = shrewd
			trait = beauty_good_2
			trait = diligent
			trait = greedy
			trait = lustful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_la_divina
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_imperia
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0036 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0036.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0036.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jan_Hus"
			age = 46
			gender = male
			dynasty = none
			learning = 3
			intrigue = 10
			stewardship = 10
			diplomacy = 10
			faith = faith:innocence
			culture = culture:czech
			trait = education_learning_4
			trait = diligent
			trait = stubborn
			trait = zealous
			trait = scholar
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_first_reformer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hus
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0037 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0037.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0037.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jan_Zizka"
			age = 63
			gender = male
			dynasty = none
			martial = 10
			intrigue = 10
			stewardship = 10
			learning = 6
			prowess = 10
			faith = faith:innocence
			culture = culture:czech
			trait = education_martial_4
			trait = one_eyed
			trait = diligent
			trait = content
			trait = generous
			trait = strategist
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_chalice
				add_trait_xp = {
					trait = organizer
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_zizka
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0038 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0038.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0038.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jeanne_Antoinette_Poisson"
			age = 42
			gender = female
			dynasty = none
			diplomacy = 10
			intrigue = 15
			stewardship = 10
			learning = 11
			faith = faith:innocence
			culture = culture:french
			trait = education_diplomacy_4
			trait = beauty_good_1
			trait = physique_bad_2
			trait = diligent
			trait = temperate
			trait = chaste
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_madame_pompadour
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_pompadour
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0039 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0039.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0039.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jeanne_de_Clisson"
			age = 46
			gender = female
			dynasty = none
			martial = 10
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:breton
			trait = education_martial_3
			trait = vengeful
			trait = wrathful
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_lioness_brittany
				add_trait_xp = {
					trait = reckless
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jeanne
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0040 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0040.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0040.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Catherine_d_Arc"
			age = 19
			gender = female
			dynasty = none
			martial = 0
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			learning = 10
			faith = faith:innocence
			culture = culture:french
			trait = education_martial_3
			trait = zealous
			trait = brave
			trait = chaste
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_maid_sister
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = armor_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jeanne_darc
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0041 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0041.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0041.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "John_Cabot"
			age = 48
			gender = male
			dynasty = none
			stewardship = 10
			diplomacy = 10
			intrigue = 10
			martial = 10
			learning = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_stewardship_3
			trait = patient
			trait = brave
			trait = temperate
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_explorer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_cabot
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0042 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0042.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0042.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "John_Hawkwood"
			age = 69
			gender = male
			dynasty = none
			martial = 10
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			learning = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:english
			trait = education_martial_3
			trait = greedy
			trait = callous
			trait = fickle
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_astute
				add_trait_xp = {
					trait = flexible_leader
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hawkwood
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0043 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0043.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0043.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Leonardo_da_Vinci"
			age = 67
			gender = male
			dynasty = none
			learning = 10
			diplomacy = 3
			intrigue = 4
			stewardship = 6
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_5
			trait = intellect_good_3
			trait = diligent
			trait = patient
			trait = generous
			trait = scholar
			trait = architect
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_universal_genius
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = artisan_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_leonardo
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0044 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0044.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0044.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Lucrezia_Borgia"
			age = 39
			gender = female
			dynasty = none
			intrigue = 15
			learning = 10
			diplomacy = 10
			stewardship = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_stewardship_3
			trait = beauty_good_1
			trait = lustful
			trait = gregarious
			trait = generous
			trait = lifestyle_reveler
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_femme_fatale
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_lucrezia
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0045 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0045.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0045.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Marco_Polo"
			age = 69
			gender = male
			dynasty = none
			stewardship = 10
			diplomacy = 10
			learning = 10
			intrigue = 10
			martial = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_stewardship_4
			trait = gregarious
			trait = diligent
			trait = patient
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_master_explorer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_polo
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0046 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0046.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0046.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Margaret_I"
			age = 72
			gender = female
			dynasty = none
			stewardship = 10
			diplomacy = 10
			learning = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:dutch
			trait = education_stewardship_3
			trait = wrathful
			trait = diligent
			trait = callous
			trait = administrator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_countess_palatine
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_margaret
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0047 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0047.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0047.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Michael_Scot"
			age = 57
			gender = male
			dynasty = none
			learning = 2
			diplomacy = 10
			stewardship = 10
			faith = faith:innocence
			culture = culture:english
			trait = education_learning_4
			trait = intellect_good_1
			trait = patient
			trait = diligent
			trait = gregarious
			trait = scholar
			trait = sorcerer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mage_mathematics
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = alchemy_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_scot
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0048 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0048.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0048.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mindaugas"
			age = 60
			gender = male
			dynasty = none
			martial = 10
			diplomacy = 10
			stewardship = 10
			prowess = 10
			learning = 7
			intrigue = 5
			faith = faith:innocence
			culture = culture:lithuanian
			trait = education_martial_3
			trait = cynical
			trait = ambitious
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_bull_lithuania
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mindaugas
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0049 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0049.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0049.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Niccolo_Machiavelli"
			age = 56
			gender = male
			dynasty = none
			intrigue = 10
			diplomacy = 15
			stewardship = 15
			learning = 15
			martial = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_intrigue_5
			trait = cynical
			trait = deceitful
			trait = patient
			trait = schemer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_father_politics
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_machiavelli
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0050 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0050.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0050.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nicolaas_Zannekin"
			age = 30
			gender = male
			dynasty = none
			martial = 5
			intrigue = 10
			prowess = 10
			diplomacy = 12
			learning = 5
			faith = faith:innocence
			culture = culture:dutch
			trait = education_martial_3
			trait = vengeful
			trait = wrathful
			trait = ambitious
			trait = peasant_leader
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_unrelenting_rebel
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_zannekin
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0051 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0051.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0051.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nikephoros_Blemmydes"
			age = 50
			gender = male
			dynasty = none
			learning = 5
			diplomacy = 10
			stewardship = 15
			faith = faith:innocence
			culture = culture:greek
			trait = education_learning_4
			trait = diligent
			trait = patient
			trait = content
			trait = scholar
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_exiled_teacher
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_blemmydes
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0052 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0052.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0052.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Pons_de_Capduelh"
			age = 46
			gender = male
			dynasty = none
			diplomacy = 10
			learning = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:occitan
			trait = education_diplomacy_3
			trait = content
			trait = stubborn
			trait = gregarious
			trait = gallant
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_popular_troubadour
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = armor_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_pons
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0053 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0053.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0053.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Rodrigo_Borgia"
			age = 72
			gender = male
			dynasty = none
			intrigue = 10
			diplomacy = 15
			stewardship = 10
			learning = 15
			martial = 10
			faith = faith:innocence
			culture = culture:catalan
			trait = education_intrigue_3
			trait = ambitious
			trait = lustful
			trait = deceitful
			trait = lifestyle_reveler
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_alexander_vi
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_rodrigo
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0054 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0054.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0054.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Roi_Xordo"
			age = 35
			gender = male
			dynasty = none
			martial = 10
			prowess = 10
			learning = 10
			intrigue = 10
			diplomacy = 10
			faith = faith:innocence
			culture = culture:galician
			trait = education_martial_2
			trait = ambitious
			trait = vengeful
			trait = wrathful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_rebel_fidalgo
				add_trait_xp = {
					trait = aggressive_attacker
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_xordo
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0055 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0055.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0055.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Skanderbeg"
			age = 62
			gender = male
			dynasty = none
			martial = 10
			diplomacy = 11
			stewardship = 10
			learning = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:serbian
			trait = education_martial_4
			trait = intellect_good_1
			trait = ambitious
			trait = brave
			trait = stubborn
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_thorn_on_their_side
				add_trait_xp = {
					trait = unyielding_defender
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_skanderbeg
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0056 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0056.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0056.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Snorri_Sturluson"
			age = 62
			gender = male
			dynasty = none
			diplomacy = 10
			stewardship = 15
			intrigue = 10
			learning = 10
			faith = faith:innocence
			culture = culture:norwegian
			trait = education_diplomacy_3
			trait = vengeful
			trait = lustful
			trait = fickle
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_saga_storyteller
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_snorri
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0057 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0057.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0057.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Subutai"
			age = 72
			gender = male
			dynasty = none
			martial = 13
			prowess = 10
			diplomacy = 10
			stewardship = 10
			intrigue = 9
			learning = 5
			faith = faith:innocence
			culture = culture:mongol
			trait = education_martial_5
			trait = intellect_good_2
			trait = brave
			trait = diligent
			trait = patient
			trait = strategist
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dog_of_war
				add_trait_xp = {
					trait = open_terrain_expert
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_subutai
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0058 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0058.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0058.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Egidio_Cajal"
			age = 58
			gender = male
			dynasty = none
			intrigue = 0
			learning = 10
			diplomacy = 10
			stewardship = 10
			faith = faith:innocence
			culture = culture:castilian
			trait = education_intrigue_2
			trait = content
			trait = deceitful
			trait = cynical
			trait = schemer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_papal_legate
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_avila
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0059 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0059.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0059.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Theodore_Metochites"
			age = 62
			gender = male
			dynasty = none
			learning = 10
			diplomacy = 5
			stewardship = 15
			intrigue = 14
			faith = faith:innocence
			culture = culture:greek
			trait = education_diplomacy_3
			trait = generous
			trait = gregarious
			trait = diligent
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_grand_logothete
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_metochites
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0060 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0060.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0060.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Theodora_Palaiologina"
			age = 50
			gender = female
			dynasty = none
			learning = 10
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:greek
			trait = education_stewardship_3
			trait = generous
			trait = zealous
			trait = content
			trait = administrator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_empress_restoration
				add_pressed_claim = title:c_byzantion
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_theodora
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0061 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0061.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0061.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Theodor_von_Neuhoff"
			age = 55
			gender = male
			dynasty = none
			intrigue = 9
			learning = 10
			stewardship = 10
			martial = 10
			diplomacy = 6
			faith = faith:innocence
			culture = culture:franconian
			trait = education_intrigue_2
			trait = greedy
			trait = ambitious
			trait = deceitful
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_king_corsica
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_theodore
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0062 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0062.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0062.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Thibaut_of_Navarre"
			age = 52
			gender = male
			dynasty = none
			diplomacy = 10
			martial = 10
			learning = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:occitan
			trait = education_diplomacy_3
			trait = diligent
			trait = ambitious
			trait = gregarious
			trait = gallant
			trait = holy_warrior
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_troubadour_king
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_thibaut
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0063 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0063.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0063.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Theodora_Rossi"
			age = 28
			gender = female
			dynasty = none
			intrigue = 5
			diplomacy = 10
			stewardship = 13
			learning = 10
			faith = faith:innocence
			culture = culture:sicilian
			trait = education_intrigue_3
			trait = deceitful
			trait = patient
			trait = wrathful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_scorned_mother
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_thomas
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0064 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0064.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0064.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Thomas_Muntzer"
			age = 35
			gender = male
			dynasty = none
			learning = 5
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			martial = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:saxon
			trait = education_learning_4
			trait = deceitful
			trait = zealous
			trait = gregarious
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_castigator_of_unrighteousness
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_muntzer
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0065 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0065.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0065.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Saray_Mulk_Khanum"
			age = 42
			gender = female
			dynasty = none
			intrigue = 10
			diplomacy = 10
			stewardship = 10
			learning = 10
			faith = faith:innocence
			culture = culture:mongol
			trait = education_diplomacy_3
			trait = beauty_good_2
			trait = diligent
			trait = zealous
			trait = temperate
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_grand_khanum
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_timur
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_timur
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0066 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0066.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0066.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tomas_de_Torquemada"
			age = 71
			gender = male
			dynasty = none
			intrigue = 8
			learning = 10
			stewardship = 15
			martial = 8
			faith = faith:innocence
			culture = culture:castilian
			trait = education_intrigue_3
			trait = zealous
			trait = arbitrary
			trait = sadistic
			trait = torturer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_hammer_heretics
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_torquemada
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0067 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0067.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0067.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ulrich_von_Liechtenstein"
			age = 57
			gender = male
			dynasty = none
			prowess = 20
			diplomacy = 10
			learning = 10
			martial = 10
			faith = faith:innocence
			culture = culture:bavarian
			trait = education_martial_prowess_3
			trait = just
			trait = chaste
			trait = gregarious
			trait = gallant
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_knight_poet
			
				add_trait_xp = {
					trait = lifestyle_poet
					value = 35
				}
				add_trait = tourney_participant
				add_trait_xp = {
					trait = tourney_participant
					track = foot
					value = 100
				}
				add_trait_xp = {
					trait = tourney_participant
					track = horse
					value = 100
				}
				add_trait_xp = {
					trait = tourney_participant
					track = wit
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ulrich
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0068 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0068.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0068.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Vasco_da_Gama"
			age = 55
			gender = male
			learning = 10
			intrigue = 9
			diplomacy = 10
			stewardship = 15
			martial = 10
			dynasty = none
			faith = faith:innocence
			culture = culture:portuguese
			trait = education_learning_3
			trait = callous
			trait = vengeful
			trait = diligent
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_viceroy_india
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gama
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0069 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0069.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0069.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Wat_Tyler"
			age = 40
			gender = male
			dynasty = none
			prowess = 15
			martial = 10
			stewardship = 10
			intrigue = 10
			learning = 5
			diplomacy = 10
			faith = faith:innocence
			culture = culture:english
			trait = education_martial_2
			trait = wrathful
			trait = vengeful
			trait = stubborn
			trait = peasant_leader
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_fire_fury
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_wat_tyler
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0070 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0070.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0070.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "William_Wallace"
			age = 35
			gender = male
			dynasty = none
			martial = 10
			prowess = 20
			learning = 10
			intrigue = 7
			diplomacy = 10
			stewardship = 10
			faith = faith:innocence
			culture = culture:scottish
			trait = education_martial_3
			trait = giant
			trait = brave
			trait = vengeful
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_guardian_scotland
				add_trait_xp = {
					trait = forest_fighter
					value = 85
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_wallace
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

#Warhammer Easter Egg
podgreatpersons.0071 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0071.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0071.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nagash"
			age = 56
			gender = male
			dynasty = none
			intrigue = 0
			learning = 10
			martial = 10
			diplomacy = 10
			stewardship = 10
			faith = faith:innocence
			culture = culture:egyptian
			trait = education_intrigue_5
			trait = deceitful
			trait = ambitious
			trait = sadistic
			trait = schemer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_immortal_nehekhara
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = easter_egg_character
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = alchemy_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_nagash
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0072 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0072.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0072.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sa_ad_al_Dawla"
			age = 51
			gender = male
			dynasty = none
			stewardship = 10
			learning = 10
			diplomacy = 5
			intrigue = 10
			faith = faith:innocence
			culture = culture:persian
			trait = education_stewardship_4
			trait = just
			trait = arrogant
			trait = diligent
			trait = administrator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_grand_vizier
				add_trait = lifestyle_physician
				add_trait_xp = {
					trait = lifestyle_physician
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_dawla
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dawla
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0073 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0073.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0073.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Abu_al_Baqa_ar_Rundi"
			age = 81
			gender = male
			dynasty = none
			diplomacy = 10
			stewardship = 10
			intrigue = 7
			learning = 5
			faith = faith:innocence
			culture = culture:andalusian
			trait = education_learning_4
			trait = zealous
			trait = vengeful
			trait = calm
			trait = scholar
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_poet_fallen
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 85
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_rundi
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_rundi
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0074 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0074.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0074.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sheikh_Bedreddin"
			age = 61
			gender = male
			dynasty = none
			diplomacy = 15
			stewardship = 10
			intrigue = 10
			learning = 5
			martial = 10
			faith = faith:innocence
			culture = culture:turkish
			trait = education_learning_4
			trait = zealous
			trait = vengeful
			trait = patient
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_revolutionnary_mystic
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_bedreddin
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_bedreddin
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0075 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0075.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0075.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Alauddin_Ali_Shah"
			age = 42
			gender = male
			dynasty = none
			martial = 5
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			learning = 10
			faith = faith:innocence
			culture = culture:bengali
			trait = education_martial_3
			trait = ambitious
			trait = vengeful
			trait = wrathful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_scorned_prince
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_alauddin
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_alauddin
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0076 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0076.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0076.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Birger_Jarl"
			age = 50
			gender = male
			dynasty = none
			martial = 7
			stewardship = 15
			diplomacy = 15
			intrigue = 10
			learning = 10
			faith = faith:innocence
			culture = culture:swedish
			trait = education_martial_3
			trait = ambitious
			trait = cynical
			trait = brave
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dux_sweorum
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_birger
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0077 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0077.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0077.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Zawisza_Czarny"
			age = 58
			gender = male
			dynasty = none
			martial = 7
			diplomacy = 10
			learning = 10
			stewardship = 9
			prowess = 15
			faith = faith:innocence
			culture = culture:polish
			trait = education_martial_prowess_4
			trait = diligent
			trait = wrathful
			trait = brave
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_black_starost
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_zawisza
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0078 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0078.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0078.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Seguin_de_Badefol"
			age = 36
			gender = male
			dynasty = none
			martial = 10
			intrigue = 10
			learning = 5
			stewardship = 13
			prowess = 15
			faith = faith:innocence
			culture = culture:french
			trait = education_martial_3
			trait = greedy
			trait = deceitful
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_margot
				add_trait_xp = {
					trait = aggressive_attacker
					value = 30
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_seguin
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0079 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0079.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0079.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Owain_Lawgoch"
			age = 48
			gender = male
			dynasty = none
			martial = 7
			intrigue = 6
			learning = 10
			stewardship = 10
			diplomacy = 10
			prowess = 15
			faith = faith:innocence
			culture = culture:welsh
			trait = education_martial_4
			trait = ambitious
			trait = diligent
			trait = stubborn
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_red_hand
				add_trait_xp = {
					trait = rough_terrain_expert
					value = 40
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_pressed_claim = title:d_gwynedd
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_owain
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0080 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0080.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0080.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Roger_de_Flor"
			age = 37
			gender = male
			dynasty = none
			martial = 8
			intrigue = 10
			learning = 10
			stewardship = 10
			diplomacy = 8
			prowess = 15
			faith = faith:innocence
			culture = culture:italian
			trait = education_martial_4
			trait = ambitious
			trait = greedy
			trait = stubborn
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_el_falco
				add_trait_xp = {
					trait = aggressive_attacker
					value = 60
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_flor
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0081 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0081.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0081.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Adam"
			age = 49
			gender = male
			dynasty = none
			martial = 7
			intrigue = 15
			learning = 5
			stewardship = 11
			prowess = 15
			faith = faith:innocence
			culture = culture:english
			trait = education_martial_prowess_3
			trait = callous
			trait = greedy
			trait = wrathful
			trait = lifestyle_blademaster
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_leper
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_adam
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0082 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0082.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0082.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Momchil"
			age = 40
			gender = male
			dynasty = none
			martial = 10
			intrigue = 12
			learning = 5
			stewardship = 10
			diplomacy = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:bulgarian
			trait = education_martial_3
			trait = giant
			trait = ambitious
			trait = greedy
			trait = deceitful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_lord_of_merope
				add_trait_xp = {
					trait = forder
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_momchil
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0083 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0083.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0083.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Arnaud_de_Cervole"
			age = 66
			gender = male
			dynasty = none
			martial = 8
			intrigue = 10
			learning = 10
			stewardship = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:french
			trait = education_martial_3
			trait = ambitious
			trait = greedy
			trait = deceitful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_archpriest
				add_trait_xp = {
					trait = aggressive_attacker
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_arnaud
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0084 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0084.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0084.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Robert_of_Geneva"
			age = 54
			gender = male
			dynasty = none
			martial = 10
			intrigue = 5
			learning = 15
			stewardship = 13
			diplomacy = 5
			faith = faith:innocence
			culture = culture:french
			trait = education_intrigue_3
			trait = ambitious
			trait = deceitful
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_butcher_of_cesena
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_robert
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0085 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0085.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0085.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Louis_d_Estouteville"
			age = 39
			gender = male
			dynasty = none
			martial = 11
			learning = 10
			stewardship = 10
			diplomacy = 10
			prowess = 15
			faith = faith:innocence
			culture = culture:norman
			trait = education_martial_4
			trait = stubborn
			trait = just
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_shield
				add_trait_xp = {
					trait = unyielding_defender
					value = 40
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_louis
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

#Start of the smith GPs

podgreatpersons.0086 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0086.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0086.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Lodewyk_van_Bercken"
			age = 41
			gender = male
			dynasty = none
			martial = 0
			learning = 13
			stewardship = 5
			diplomacy = 5
			prowess = 0
			faith = faith:innocence
			culture = culture:dutch
			trait = education_stewardship_4
			trait = intellect_good_1
			trait = stubborn
			trait = calm
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_scaif
				add_trait = pod_crafter
				add_trait_xp = {
					trait = pod_crafter
					track = forging
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = smith_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_lodewyk
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0087 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0087.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0087.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Lorenz_Helmschmied"
			age = 65
			gender = male
			dynasty = none
			martial = 5
			learning = 10
			stewardship = 6
			diplomacy = 5
			prowess = 5
			faith = faith:innocence
			culture = culture:bavarian
			trait = education_stewardship_4
			trait = intellect_good_1
			trait = stubborn
			trait = temperate
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_master_armorer
				add_trait = pod_crafter
				add_trait_xp = {
					trait = pod_crafter
					track = forging
					value = 65
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = armor_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_lorenz
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0088 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0088.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0088.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Robert_Porter"
			age = 45
			gender = male
			dynasty = none
			martial = 10
			learning = 10
			stewardship = 5
			diplomacy = 13
			prowess = 10
			faith = faith:innocence
			culture = culture:english
			trait = education_stewardship_4
			trait = stubborn
			trait = brave
			trait = zealous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_sword_cutler
				add_trait = pod_crafter
				add_trait_xp = {
					trait = pod_crafter
					track = forging
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = weapon_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_porter
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0089 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0089.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0089.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Daniel_Hopfer"
			age = 66
			gender = male
			dynasty = none
			martial = 0
			learning = 12
			stewardship = 8
			diplomacy = 5
			prowess = 0
			faith = faith:innocence
			culture = culture:saxon
			trait = education_stewardship_4
			trait = stubborn
			trait = humble
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				add_trait = pod_crafter
				add_trait_xp = {
					trait = pod_crafter
					track = forging
					value = 50
				}
				give_nickname = nick_the_imperial_etcher
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = smith_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hopfer
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

#End of blacksmith GPs


podgreatpersons.0090 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0090.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0090.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "William_Dampier"
			age = 63
			gender = male
			dynasty = none
			martial = 10
			learning = 10
			intrigue = 10
			stewardship = 10
			diplomacy = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:english
			trait = education_martial_3
			trait = callous
			trait = ambitious
			trait = brave
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_daring_explorator
				add_trait_xp = {
					trait = reckless
					value = 60
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dampier
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0091 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0091.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0091.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Catherine_Deshayes"
			age = 40
			gender = female
			dynasty = none
			martial = 0
			learning = 14
			intrigue = 5
			stewardship = 10
			diplomacy = 5
			prowess = 0
			faith = faith:innocence
			culture = culture:french
			trait = education_intrigue_3
			trait = callous
			trait = greedy
			trait = deceitful
			trait = lifestyle_mystic
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_la_voisin
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = alchemy_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_voisin
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0092 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0092.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0092.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ontsifor_Lukinich"
			age = 45
			gender = male
			dynasty = none
			martial = 8
			learning = 10
			intrigue = 5
			stewardship = 13
			diplomacy = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_3
			trait = brave
			trait = diligent
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_posadnik
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ontsifor
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0093 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0093.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0093.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ivan"
			age = 25
			gender = male
			dynasty = none
			martial = 5
			learning = 0
			intrigue = 5
			stewardship = 10
			diplomacy = 12
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_diplomacy_3
			trait = intellect_bad_1
			trait = brave
			trait = compassionate
			trait = content
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_ninny
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ivan
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0094 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0094.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0094.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Kudeyar"
			age = 51
			gender = male
			dynasty = none
			martial = 8
			learning = 5
			intrigue = 5
			stewardship = 5
			diplomacy = 8
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_3
			trait = brave
			trait = diligent
			trait = ambitious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_fearless_ataman
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kudeyar
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0095 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0095.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0095.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ivan_Bolotnikov"
			age = 43
			gender = male
			dynasty = none
			martial = 10
			learning = 10
			intrigue = 10
			stewardship = 5
			diplomacy = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_3
			trait = callous
			trait = arbitrary
			trait = ambitious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_butcher_serpukhov
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_bolotnikov
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0096 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0096.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0096.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Dmitri_Ivanovich"
			age = 28
			gender = male
			dynasty = none
			martial = 10
			learning = 10
			intrigue = 7
			stewardship = 5
			diplomacy = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_intrigue_4
			trait = deceitful
			trait = gregarious
			trait = ambitious
			trait = drunkard
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_false_dmitry
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dmitry
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0097 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0097.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0097.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Alena_Arzamasskaia"
			age = 25
			gender = female
			dynasty = none
			martial = 10
			learning = 10
			intrigue = 10
			stewardship = 5
			diplomacy = 5
			prowess = 15
			faith = faith:innocence
			culture = culture:finnish
			trait = education_martial_prowess_3
			trait = physique_good_3
			trait = deceitful
			trait = brave
			trait = ambitious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_fearless_amazon
				add_trait = lifestyle_physician
				add_trait_xp = {
					trait = lifestyle_physician
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_alena
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0098 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0098.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0098.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Domentijan"
			age = 54
			gender = male
			dynasty = none
			martial = 0
			learning = 4
			intrigue = 5
			stewardship = 10
			diplomacy = 14
			prowess = 0
			faith = faith:innocence
			culture = culture:serbian
			trait = education_learning_4
			trait = diligent
			trait = humble
			trait = zealous
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_hymnologist
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_domentijan
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0099 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0099.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0099.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Milos_Obilic"
			age = 30
			gender = male
			dynasty = none
			martial = 10
			learning = 5
			intrigue = 10
			stewardship = 5
			diplomacy = 5
			prowess = 15
			faith = faith:innocence
			culture = culture:serbian
			trait = education_martial_prowess_4
			trait = diligent
			trait = deceitful
			trait = brave
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_slayer_of_sultans
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_milos
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0100 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0100.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0100.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jefimija"
			age = 56
			gender = female
			dynasty = none
			martial = 0
			learning = 12
			intrigue = 5
			stewardship = 5
			diplomacy = 10
			prowess = 0
			faith = faith:innocence
			culture = culture:serbian
			trait = education_learning_3
			trait = patient
			trait = humble
			trait = brave
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mother_sorrows
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jefimija
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0101 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0101.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0101.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ivan_Gundulic"
			age = 49
			gender = male
			dynasty = none
			martial = 5
			learning = 10
			intrigue = 5
			stewardship = 14
			diplomacy = 10
			prowess = 0
			faith = faith:innocence
			culture = culture:croatian
			trait = education_learning_3
			trait = patient
			trait = zealous
			trait = diligent
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_baroque
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 65
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gundulic
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0102 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0102.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0102.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Giorgio_da_Sebenico"
			age = 63
			gender = male
			dynasty = none
			martial = 0
			learning = 10
			intrigue = 5
			stewardship = 10
			diplomacy = 5
			prowess = 0
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_3
			trait = patient
			trait = humble
			trait = diligent
			trait = architect
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_master_architect
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = artisan_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_giorgio
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0103 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0103.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0103.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Marin_Drzic"
			age = 52
			gender = male
			dynasty = none
			martial = 10
			learning = 10
			intrigue = 10
			stewardship = 5
			diplomacy = 5
			prowess = 5
			faith = faith:innocence
			culture = culture:croatian
			trait = education_intrigue_3
			trait = fickle
			trait = deceitful
			trait = paranoid
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_unlikely_adventurer
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_marin
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0104 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0104.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0104.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Rodion_Oslyabya"
			age = 35
			gender = male
			dynasty = none
			martial = 5
			learning = 5
			intrigue = 5
			stewardship = 5
			diplomacy = 15
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_3
			trait = brave
			trait = zealous
			trait = wrathful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_tysyatsky
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_oslyabya
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0105 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0105.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0105.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Alexander_Peresvet"
			age = 25
			gender = male
			dynasty = none
			martial = 4
			learning = 5
			intrigue = 5
			stewardship = 5
			diplomacy = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_3
			trait = brave
			trait = zealous
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_warrior_monk
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 60
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_alexander
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0106 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0106.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0106.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ivan_Vyrodkov"
			age = 48
			gender = male
			dynasty = none
			martial = 8
			learning = 15
			intrigue = 7
			stewardship = 8
			diplomacy = 4
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_3
			trait = brave
			trait = patient
			trait = diligent
			trait = architect
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_architect_of_war
				add_trait_xp = {
					trait = military_engineer
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = smith_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_vyrodkov
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0107 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0107.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0107.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Yermak_Timofeyevich"
			age = 43
			gender = male
			dynasty = none
			martial = 7
			learning = 5
			intrigue = 13
			stewardship = 8
			diplomacy = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_4
			trait = brave
			trait = ambitious
			trait = stubborn
			trait = winter_soldier
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_icebreaker
				add_trait_xp = {
					trait = winter_soldier
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yermak
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0108 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0108.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0108.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ridolfo_Fioravanti"
			age = 60
			gender = male
			dynasty = none
			martial = 8
			learning = 8
			intrigue = 5
			stewardship = 6
			diplomacy = 7
			prowess = 5
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_3
			trait = content
			trait = patient
			trait = diligent
			trait = architect
			trait = military_engineer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_aristotele
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = artisan_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ridolfo
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0109 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0109.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0109.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Dionisius"
			age = 62
			gender = male
			dynasty = none
			martial = 0
			learning = 7
			intrigue = 4
			stewardship = 10
			diplomacy = 8
			prowess = 4
			faith = faith:innocence
			culture = culture:russian
			trait = education_learning_4
			trait = calm
			trait = patient
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_wise
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dionisius
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0110 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0110.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0110.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "William_de_Burgh"
			age = 40
			gender = male
			dynasty = none
			martial = 9
			learning = 5
			intrigue = 5
			stewardship = 13
			diplomacy = 13
			prowess = 7
			faith = faith:innocence
			culture = culture:irish
			trait = education_martial_3
			trait = just
			trait = humble
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_grey_justiciar
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_william
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0111 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0111.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0111.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Godred_Magnusson"
			age = 23
			gender = male
			dynasty = none
			martial = 8
			learning = 5
			intrigue = 8
			stewardship = 6
			diplomacy = 3
			prowess = 8
			faith = faith:innocence
			culture = culture:norwegian
			trait = education_martial_2
			trait = ambitious
			trait = wrathful
			trait = vengeful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_manx
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_godred
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0112 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0112.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0112.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Lucino_Dal_Verme"
			age = 45
			gender = male
			dynasty = none
			martial = 10
			learning = 5
			intrigue = 7
			stewardship = 13
			diplomacy = 8
			prowess = 10
			faith = faith:innocence
			culture = culture:italian
			trait = education_martial_3
			trait = greedy
			trait = brave
			trait = fickle
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_condottiero
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_luchino
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0113 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0113.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0113.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Julian_Cesarini"
			age = 46
			gender = male
			dynasty = none
			martial = 5
			learning = 13
			intrigue = 9
			stewardship = 9
			diplomacy = 6
			prowess = 0
			faith = faith:innocence
			culture = culture:italian
			trait = education_diplomacy_4
			trait = intellect_good_2
			trait = zealous
			trait = brave
			trait = gregarious
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_masterful_cardinal
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_julian
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0114 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0114.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0114.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Vidyapati"
			age = 77
			gender = male
			dynasty = none
			martial = 0
			learning = 10
			intrigue = 6
			stewardship = 6
			diplomacy = 8
			prowess = 0
			faith = faith:innocence
			culture = culture:bengali
			trait = education_learning_4
			trait = zealous
			trait = patient
			trait = gregarious
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_maithil_kavi_kokil
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 90
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_vidyapati
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0115 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0115.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0115.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Atukuri_Molla"
			age = 80
			gender = female
			dynasty = none
			martial = 0
			learning = 10
			intrigue = 3
			stewardship = 9
			diplomacy = 6
			prowess = 0
			faith = faith:innocence
			culture = culture:telugu
			trait = education_learning_3
			trait = diligent
			trait = patient
			trait = temperate
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_basavi
		
			add_trait_xp = {
					trait = lifestyle_poet
					value = 65
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_atukuri
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0116 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0116.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0116.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Boleslaus"
			age = 45
			gender = male
			dynasty = none
			martial = 8
			learning = 9
			intrigue = 8
			stewardship = 7
			diplomacy = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:czech
			trait = education_martial_3
			trait = vengeful
			trait = ambitious
			trait = brave
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_szepiolka
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_boleslaus
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0117 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0117.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0117.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Guillaume_de_Sonnac"
			age = 35
			gender = male
			dynasty = none
			martial = 10
			learning = 6
			intrigue = 5
			stewardship = 12
			diplomacy = 15
			prowess = 15
			faith = faith:innocence
			culture = culture:french
			trait = education_martial_3
			trait = one_eyed
			trait = patient
			trait = shy
			trait = brave
			trait = lifestyle_blademaster
			trait = holy_warrior
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_quiet_templar
				add_trait_xp = {
					trait = holy_warrior
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_guillaume
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0118 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0118.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0118.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ibn_Taymiyyah"
			age = 64
			gender = male
			dynasty = none
			martial = 7
			learning = 11
			intrigue = 5
			stewardship = 10
			diplomacy = 9
			prowess = 0
			faith = faith:innocence
			culture = culture:bedouin
			trait = education_learning_3
			trait = zealous
			trait = stubborn
			trait = gregarious
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_unrelenting_judge
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_taymiyyah
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_taymiyyah
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0119 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0119.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0119.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Madan_Rai"
			age = 45
			gender = male
			dynasty = none
			martial = 5
			learning = 6
			intrigue = 8
			stewardship = 10
			diplomacy = 10
			prowess = 5
			faith = faith:innocence
			culture = culture:bengali
			trait = education_stewardship_3
			trait = intellect_good_1
			trait = deceitful
			trait = content
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_chief_minister
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_madan
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0120 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0120.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0120.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sikandar_Khan_Ghazi"
			age = 41
			gender = male
			dynasty = none
			martial = 5
			learning = 8
			intrigue = 5
			stewardship = 14
			diplomacy = 7
			prowess = 7
			faith = faith:innocence
			culture = culture:persian
			trait = education_martial_3
			trait = zealous
			trait = brave
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_wazir
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_sikandar
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sikandar
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0121 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0121.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0121.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ertugrul"
			age = 45
			gender = male
			dynasty = none
			martial = 5
			learning = 6
			intrigue = 11
			stewardship = 12
			diplomacy = 10
			prowess = 7
			faith = faith:innocence
			culture = culture:turkish
			trait = education_martial_3
			trait = zealous
			trait = brave
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_father_of_empire
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_ertugrul
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ertugrul
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0122 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0122.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0122.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Qutui_Khatun"
			age = 43
			gender = female
			dynasty = none
			martial = 6
			learning = 5
			intrigue = 8
			stewardship = 10
			diplomacy = 15
			prowess = 5
			faith = faith:innocence
			culture = culture:mongol
			trait = education_stewardship_3
			trait = diligent
			trait = vengeful
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mother_of_khans
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = weaver_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_qutui
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0123 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0123.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0123.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tiramakhan_Traore"
			age = 39
			gender = male
			dynasty = none
			martial = 10
			learning = 5
			intrigue = 5
			stewardship = 10
			diplomacy = 7
			prowess = 9
			faith = faith:innocence
			culture = culture:malinke
			trait = education_martial_3
			trait = just
			trait = ambitious
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_founding_general
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_traore
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_traore
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0124 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0124.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0124.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Abul_Hasan_ash_Shadhili"
			age = 60
			gender = male
			dynasty = none
			martial = 0
			learning = 8
			intrigue = 4
			stewardship = 8
			diplomacy = 10
			prowess = 5
			faith = faith:innocence
			culture = culture:maghrebi
			trait = education_learning_4
			trait = zealous
			trait = diligent
			trait = patient
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_sufi_sheikh
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_shadhili
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_shadhili
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0125 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0125.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0125.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sayyida_al_Hurra"
			age = 57
			gender = female
			dynasty = none
			martial = 10
			learning = 10
			intrigue = 10
			stewardship = 10
			diplomacy = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:maghrebi
			trait = education_martial_3
			trait = intellect_good_1
			trait = ambitious
			trait = brave
			trait = forgiving
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_free_independent
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_sayyida
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sayyida
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0126 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0126.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0126.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mary_Wolverston"
			age = 62
			gender = female
			dynasty = none
			martial = 5
			learning = 8
			intrigue = 6
			stewardship = 15
			diplomacy = 8
			prowess = 5
			faith = faith:innocence
			culture = culture:cornish
			trait = education_intrigue_3
			trait = greedy
			trait = deceitful
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_unprincipled_businesswoman
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mary
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0127 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0127.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0127.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Agnes_Hotot"
			age = 25
			gender = female
			dynasty = none
			martial = 9
			learning = 7
			intrigue = 5
			stewardship = 8
			diplomacy = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:english
			trait = education_martial_prowess_3
			trait = brave
			trait = diligent
			trait = stubborn
			trait = gallant
			trait = lifestyle_blademaster
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_lady_knight
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_agnes_hotot
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0128 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0128.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0128.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Vendela_Skytte"
			age = 21
			gender = female
			dynasty = none
			martial = 5
			learning = 5
			intrigue = 5
			stewardship = 8
			diplomacy = 13
			prowess = 0
			faith = faith:innocence
			culture = culture:swedish
			trait = education_learning_4
			trait = intellect_good_1
			trait = beauty_good_1
			trait = calm
			trait = diligent
			trait = gregarious
			trait = lifestyle_poet
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_lady_letters
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_vendela
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0129 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0129.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0129.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Samuel_Cockburn"
			age = 46
			gender = male
			dynasty = none
			martial = 5
			learning = 8
			intrigue = 13
			stewardship = 12
			diplomacy = 5
			prowess = 7
			faith = faith:innocence
			culture = culture:scottish
			trait = education_martial_4
			trait = greedy
			trait = brave
			trait = wrathful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_scot
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_samuel
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0130 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0130.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0130.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Torsten_Stalhandske"
			age = 51
			gender = male
			dynasty = none
			martial = 10
			learning = 5
			intrigue = 4
			stewardship = 6
			diplomacy = 7
			prowess = 10
			faith = faith:innocence
			culture = culture:finnish
			trait = education_martial_4
			trait = physique_good_3
			trait = honest
			trait = brave
			trait = diligent
			trait = aggressive_attacker
			trait = unyielding_defender
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_steelglove
				add_trait_xp = {
					trait = aggressive_attacker
					value = 30
				}
				add_trait_xp = {
					trait = unyielding_defender
					value = 30
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_torsten
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0131 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0131.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0131.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ibn_Battuta"
			age = 65
			gender = male
			dynasty = none
			martial = 7
			learning = 10
			intrigue = 7
			stewardship = 13
			diplomacy = 13
			prowess = 5
			faith = faith:innocence
			culture = culture:maghrebi
			trait = education_learning_3
			trait = just
			trait = brave
			trait = diligent
			trait = adventurer
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_greatest_explorer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_battuta
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_battuta
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0132 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0132.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0132.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Saadi_Shirazi"
			age = 81
			gender = male
			dynasty = none
			martial = 6
			learning = 6
			intrigue = 6
			stewardship = 7
			diplomacy = 10
			prowess = 3
			faith = faith:innocence
			culture = culture:persian
			trait = education_learning_4
			trait = honest
			trait = patient
			trait = diligent
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_wordsmith
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_saadi
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_saadi
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0133 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0133.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0133.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ibrahim_Pasha"
			age = 40
			gender = male
			dynasty = none
			martial = 5
			learning = 7
			intrigue = 14
			stewardship = 10
			diplomacy = 7
			prowess = 4
			faith = faith:innocence
			culture = culture:turkish
			trait = education_diplomacy_4
			trait = arrogant
			trait = ambitious
			trait = diligent
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_executed
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_ibrahim
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ibrahim
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0134 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0134.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0134.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Krokodeilos_Kladas"
			age = 65
			gender = male
			dynasty = none
			martial = 8
			learning = 6
			intrigue = 5
			stewardship = 7
			diplomacy = 6
			prowess = 10
			faith = faith:innocence
			culture = culture:greek
			trait = education_martial_3
			trait = stubborn
			trait = ambitious
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_armatolos
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kladas
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0135 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0135.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0135.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ivo_Senjanin"
			age = 41
			gender = male
			dynasty = none
			martial = 10
			learning = 6
			intrigue = 6
			stewardship = 10
			diplomacy = 6
			prowess = 10
			faith = faith:innocence
			culture = culture:croatian
			trait = education_martial_3
			trait = brave
			trait = greedy
			trait = diligent
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_uskok
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ivo
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0136 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0136.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0136.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Starina_Novak"
			age = 69
			gender = male
			dynasty = none
			martial = 10
			learning = 8
			intrigue = 10
			stewardship = 5
			diplomacy = 8
			prowess = 10
			faith = faith:innocence
			culture = culture:serbian
			trait = education_martial_4
			trait = brave
			trait = deceitful
			trait = stubborn
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_old_novak
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_novak
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0137 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0137.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0137.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sinan_Reis"
			age = 26
			gender = male
			dynasty = none
			martial = 8
			learning = 5
			intrigue = 10
			stewardship = 8
			diplomacy = 5
			prowess = 5
			faith = faith:innocence
			culture = culture:sephardi
			trait = education_martial_3
			trait = vengeful
			trait = deceitful
			trait = brave
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_great_jew
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sinan
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0138 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0138.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0138.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Gaspar_de_Gama"
			age = 65
			gender = male
			dynasty = none
			martial = 5
			learning = 10
			intrigue = 10
			stewardship = 10
			diplomacy = 7
			prowess = 5
			faith = faith:innocence
			culture = culture:sephardi
			trait = education_diplomacy_3
			trait = fickle
			trait = diligent
			trait = gregarious
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_mysterious_guide
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gaspar
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0139 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0139.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0139.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Constantine_de_Baberon"
			age = 39
			gender = male
			dynasty = none
			martial = 14
			learning = 8
			intrigue = 6
			stewardship = 11
			diplomacy = 3
			prowess = 7
			faith = faith:innocence
			culture = culture:armenian
			trait = education_intrigue_3
			trait = ambitious
			trait = callous
			trait = deceitful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_ruthless_powermonger
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_constantine
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0140 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0140.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0140.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Beatriz_Galindo"
			age = 46
			gender = female
			dynasty = none
			martial = 7
			learning = 3
			intrigue = 7
			stewardship = 10
			diplomacy = 9
			prowess = 0
			faith = faith:innocence
			culture = culture:castilian
			trait = education_learning_3
			trait = patient
			trait = diligent
			trait = calm
			trait = scholar
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_la_latina
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_beatriz
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0141 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0141.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0141.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jean_Bodin"
			age = 66
			gender = male
			dynasty = none
			martial = 5
			learning = 7
			intrigue = 5
			stewardship = 13
			diplomacy = 14
			prowess = 5
			faith = faith:innocence
			culture = culture:french
			trait = education_learning_3
			trait = gregarious
			trait = stubborn
			trait = compassionate
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_scholar_of_change
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_bodin
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0142 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0142.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0142.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Janus_Pannonius"
			age = 38
			gender = male
			dynasty = none
			martial = 5
			learning = 7
			intrigue = 7
			stewardship = 5
			diplomacy = 7
			prowess = 3
			faith = faith:innocence
			culture = culture:croatian
			trait = education_learning_3
			trait = intellect_good_1
			trait = gregarious
			trait = diligent
			trait = calm
			trait = lifestyle_poet
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_slavonian
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 75
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_janus
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0143 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0143.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0143.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Anseau_de_Cayeux"
			age = 52
			gender = male
			dynasty = none
			martial = 6
			learning = 5
			intrigue = 13
			stewardship = 10
			diplomacy = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:french
			trait = education_martial_3
			trait = greedy
			trait = cynical
			trait = ambitious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_unrepenting_crusader
				add_trait_xp = {
					trait = unyielding_defender
					value = 25
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_anseau
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0144 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0144.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0144.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Angele_de_la_Barthe"
			age = 45
			gender = female
			dynasty = none
			martial = 5
			learning = 13
			intrigue = 7
			stewardship = 7
			diplomacy = 3
			prowess = 7
			faith = faith:innocence
			culture = culture:occitan
			trait = education_intrigue_3
			trait = arrogant
			trait = cynical
			trait = sadistic
			trait = witch
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_devil_wife
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = alchemy_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_angele
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0145 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0145.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0145.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Garcia_de_Resende"
			age = 66
			gender = male
			dynasty = none
			martial = 5
			learning = 8
			intrigue = 5
			stewardship = 15
			diplomacy = 11
			prowess = 5
			faith = faith:innocence
			culture = culture:portuguese
			trait = education_learning_4
			trait = gregarious
			trait = zealous
			trait = trusting
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_poet_page
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 75
				}			
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_garcia
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
		
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0146 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0146.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0146.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Pedro_Alvares_Cabral"
			age = 52
			gender = male
			dynasty = none
			martial = 17
			learning = 8
			intrigue = 5
			stewardship = 9
			diplomacy = 7
			prowess = 5
			faith = faith:innocence
			culture = culture:portuguese
			trait = education_stewardship_3
			trait = gregarious
			trait = diligent
			trait = callous
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_spurned_explorer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_cabral
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0147 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0147.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0147.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Abu_al_Hasan_Ali_ibn_Othman"
			age = 53
			gender = male
			dynasty = none
			martial = 8
			learning = 8
			intrigue = 16
			stewardship = 15
			diplomacy = 8
			prowess = 5
			faith = faith:innocence
			culture = culture:maghrebi
			trait = education_martial_3
			trait = ambitious
			trait = patient
			trait = trusting
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_exiled_sultan
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_othman
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_othman
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0148 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0148.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0148.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nanda_Pakyan"
			age = 69
			gender = male
			dynasty = none
			martial = 3
			learning = 8
			intrigue = 4
			stewardship = 13
			diplomacy = 11
			prowess = 3
			faith = faith:innocence
			culture = culture:burmese
			trait = education_intrigue_3
			trait = ambitious
			trait = deceitful
			trait = greedy
			trait = schemer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_shadowy_manipulator
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_nanda
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0149 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0149.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0149.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sulaiman_Al_Mahri"
			age = 69
			gender = male
			dynasty = none
			martial = 7
			learning = 8
			intrigue = 5
			stewardship = 7
			diplomacy = 9
			prowess = 7
			faith = faith:innocence
			culture = culture:turkish
			trait = education_stewardship_3
			trait = diligent
			trait = patient
			trait = temperate
			trait = adventurer
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_philosopher_navigator
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_mahri
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mahri
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0150 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0150.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0150.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Diego_de_Ordaz"
			age = 52
			gender = male
			dynasty = none
			martial = 7
			learning = 5
			intrigue = 15
			stewardship = 10
			diplomacy = 5
			prowess = 8
			faith = faith:innocence
			culture = culture:castilian
			trait = education_martial_3
			trait = greedy
			trait = ambitious
			trait = diligent
			trait = adventurer
			trait = organizer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_conquistador
				add_trait_xp = {
					trait = organizer
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_diego
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0151 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0151.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0151.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_forgiving
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Gulbadan_Begum"
			age = 59
			gender = female
			dynasty = none
			martial = 3
			learning = 10
			intrigue = 6
			stewardship = 13
			diplomacy = 10
			prowess = 1
			faith = faith:innocence
			culture = culture:mongol
			trait = education_learning_3
			trait = patient
			trait = forgiving
			trait = gregarious
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_jiu
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_gulbadan
			}
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gulbadan
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0152 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0152.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0152.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jacob_Palaeologus"
			age = 60
			gender = male
			dynasty = none
			martial = 3
			learning = 7
			intrigue = 15
			stewardship = 6
			diplomacy = 12
			prowess = 1
			faith = faith:innocence
			culture = culture:italian
			trait = education_learning_3
			trait = stubborn
			trait = zealous
			trait = diligent
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_antitrinitarian
				add_pressed_claim = title:c_byzantion
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jacob
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0153 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0153.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0153.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Reynold_Basztely"
			age = 55
			gender = male
			dynasty = none
			martial = 9
			learning = 5
			intrigue = 6
			stewardship = 10
			diplomacy = 13
			prowess = 7
			faith = faith:innocence
			culture = culture:hungarian
			trait = education_martial_3
			trait = just
			trait = humble
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_royal_banner
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_reynold
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0154 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0154.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0154.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Michael_Tarchaneiotes_Glabas"
			age = 69
			gender = male
			dynasty = none
			martial = 8
			learning = 7
			intrigue = 5
			stewardship = 7
			diplomacy = 6
			prowess = 7
			faith = faith:innocence
			culture = culture:greek
			trait = education_martial_4
			trait = content
			trait = patient
			trait = diligent
			trait = strategist
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_protostrator
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_glabas
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0155 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0155.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0155.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Haci_Ilbey"
			age = 60
			gender = male
			dynasty = none
			martial = 12
			learning = 6
			intrigue = 7
			stewardship = 6
			diplomacy = 6
			prowess = 15
			faith = faith:innocence
			culture = culture:turkish
			trait = education_martial_3
			trait = trusting
			trait = deceitful
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_reputed_commander
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_haci
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_haci
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0156 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0156.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0156.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Malik_Kafur"
			age = 35
			gender = male
			dynasty = none
			martial = 8
			learning = 5
			intrigue = 10
			stewardship = 9
			diplomacy = 16
			prowess = 10
			faith = faith:innocence
			culture = culture:punjabi
			trait = education_martial_4
			trait = beauty_good_2
			trait = ambitious
			trait = deceitful
			trait = eunuch_1
			trait = greedy
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_hazar_dinari
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_malik
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_malik
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0157 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0157.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0157.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mikolaj_Hussowczyk"
			age = 53
			gender = male
			dynasty = none
			martial = 5
			learning = 7
			intrigue = 7
			stewardship = 13
			diplomacy = 11
			prowess = 3
			faith = faith:innocence
			culture = culture:lithuanian
			trait = education_learning_3
			trait = lifestyle_poet
			trait = diligent
			trait = content
			trait = calm
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_bison_poet
			
				add_trait_xp = {
					trait = lifestyle_poet
					value = 80
				}
				add_trait = lifestyle_hunter
				add_trait_xp = {
					trait = lifestyle_hunter
					track = hunter
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mikolaj
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0158 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0158.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0158.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Magdalena_de_la_Cruz"
			age = 59
			gender = female
			dynasty = none
			martial = 4
			learning = 10
			intrigue = 12
			stewardship = 13
			diplomacy = 12
			prowess = 3
			faith = faith:innocence
			culture = culture:castilian
			trait = education_learning_3
			trait = zealous
			trait = deceitful
			trait = ambitious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_accused
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_magdalena
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0159 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0159.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0159.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Audun_Hugleiksson"
			age = 92
			gender = male
			dynasty = none
			martial = 7
			learning = 7
			intrigue = 6
			stewardship = 7
			diplomacy = 10
			prowess = 5
			faith = faith:innocence
			culture = culture:norwegian
			trait = education_stewardship_3
			trait = trusting
			trait = content
			trait = diligent
			trait = administrator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_hestakorn
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_audun
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.1000 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.1000.t
	desc = podgreatpersons.1000.desc
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = fear
	}
	
	right_portrait = {
		character = scope:gp_rival
		animation = schadenfreude
	}
	
	trigger = {
		any_neighboring_and_across_water_top_liege_realm_owner = {
			is_vampire_trigger = yes
			NOT = {
				has_relation_friend = root
				has_relation_best_friend = root
				has_relation_soulmate = root
			}
			POD_can_embrace = {
				SIRE = this
				CHILDE = scope:greatperson
			}
		}
	}
	
	immediate = {
		random_neighboring_and_across_water_top_liege_realm_owner = {
			limit = {
				is_vampire_trigger = yes
				NOT = {
					has_relation_friend = root
					has_relation_best_friend = root
					has_relation_soulmate = root
				}
				POD_can_embrace = {
					SIRE = this
					CHILDE = scope:greatperson
				}
			}
			weight = {
				base = 1
				
				modifier = {
					add = 10
					highest_held_title_tier > tier_county
				}
				modifier = {
					add = 10
					highest_held_title_tier > tier_duchy
				}
				modifier = {
					add = 10
					highest_held_title_tier > tier_kingdom
				}
			}
			save_scope_as = gp_rival
		}
	}
	
	option = {
		name = podgreatpersons.1000.a
		
		remove_short_term_gold = 150
		add_prestige = -150
		
		custom_tooltip = podgreatpersons.1000.customa
		
	}
	
	option = {
		name = podgreatpersons.1000.b
		
		set_relation_rival = scope:gp_rival
		
		scope:gp_rival = {
			add_opinion = {
				modifier = hate_opinion
				target = root
				opinion = -35
			}
		}
		
		custom_tooltip = podgreatpersons.1000.customa
		
	}
	
	option = {
		name = podgreatpersons.1000.c
		
		add_dread = 5
		
		stress_impact = {
			base = medium_stress_impact_gain
			compassionate = major_stress_impact_gain
		}
		
		scope:greatperson = {
			death = {
				killer = root
				death_reason = death_execution
			}
		}
	}
	
	option = {
		name = podgreatpersons.1000.d
		
		custom_tooltip = podgreatpersons.1000.customb
		
		hidden_effect = {
			scope:gp_rival = {
				save_scope_as = vampiresire
				add_courtier = scope:greatperson
			}
			
			scope:greatperson = {
				every_targeting_scheme = {
					end_scheme = yes
				}
				save_scope_as = created_vampirechilde
			}
			scope:vampiresire = {
				POD_player_character_create_vampirechilde_effect = yes
			}
		}
	}
}


podgreatpersons.0160 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0160.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0160.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Shajar_al_Durr"
			age = 24
			gender = female
			dynasty = none
			diplomacy = 6
			intrigue = 14
			stewardship = 6
			learning = 8
			faith = faith:innocence
			culture = culture:armenian
			trait = education_stewardship_4
			trait = intellect_good_1
			trait = beauty_good_3
			trait = ambitious
			trait = diligent
			trait = deceitful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_three_pearls
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_shajar
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_shajar
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0161 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0161.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0161.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mohammad_al_Sahuir"
			age = 68
			gender = male
			dynasty = none
			diplomacy = 15
			intrigue = 11
			stewardship = 5
			martial = 10
			learning = 7
			faith = faith:innocence
			culture = culture:andalusian
			trait = education_martial_3
			trait = ambitious
			trait = gregarious
			trait = deceitful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_blue_al_azraq
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_shahuir
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_shahuir
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0162 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0162.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0162.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ibn_al_Khatib"
			age = 61
			gender = male
			dynasty = none
			diplomacy = 10
			intrigue = 10
			stewardship = 15
			learning = 10
			faith = faith:innocence
			culture = culture:maghrebi
			trait = education_learning_4
			trait = ambitious
			trait = gregarious
			trait = impatient
			trait = lifestyle_poet
			trait = lifestyle_physician
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dhu_al_wizaratayn
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 70
				}
			}	
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_khatib
			}
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_khatib
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0163 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0163.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0163.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nasir_al_Din_al_Tusi"
			age = 73
			gender = male
			dynasty = none
			diplomacy = 6
			stewardship = 5
			learning = 0
			faith = faith:innocence
			culture = culture:persian
			trait = education_learning_4
			trait = intellect_good_3
			trait = patient
			trait = temperate
			trait = diligent
			trait = scholar
			trait = theologian
			trait = architect
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_sayr_wa_suluk
				learn_language = language_arabic
				learn_language = language_greek
				learn_language = language_turkic
				add_trait = lifestyle_physician
				add_trait_xp = {
					trait = lifestyle_physician
					value = 60
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_tusi
			}
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_tusi
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0164 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0164.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0164.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nils_Dacke"
			age = 30
			gender = male
			dynasty = none
			diplomacy = 14
			martial = 9
			stewardship = 5
			learning = 4
			intrigue = 12
			prowess = 8
			faith = faith:innocence
			culture = culture:swedish
			trait = education_martial_3
			trait = brave
			trait = stubborn
			trait = vengeful
			trait = peasant_leader
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_rebel
				add_trait_xp = {
					trait = unyielding_defender
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_nils
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0165 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0165.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0165.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Pero_da_Covilha"
			age = 66
			gender = male
			dynasty = none
			diplomacy = 11
			stewardship = 11
			learning = 10
			martial = 12
			prowess = 8
			faith = faith:innocence
			culture = culture:portuguese
			trait = education_martial_prowess_3
			trait = patient
			trait = honest
			trait = diligent
			trait = adventurer
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_patient_explorer
				learn_language = language_arabic
				learn_language = language_ethiopic
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_pero
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

#Stop adding individual character flags at that point
podgreatpersons.0166 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0166.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0166.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Khutulun"
			age = 25
			gender = female
			dynasty = none
			diplomacy = 10
			stewardship = 12
			learning = 6
			martial = 12
			prowess = 10
			faith = faith:innocence
			culture = culture:mongol
			trait = education_martial_prowess_4
			trait = physique_good_3
			trait = arrogant
			trait = brave
			trait = stubborn
			trait = athletic
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_moonlight
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_khutulun
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0167 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0167.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0167.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Guush_Luvsandanzan"
			age = 49
			gender = male
			dynasty = none
			diplomacy = 11
			stewardship = 6
			learning = 4
			martial = 8
			faith = faith:innocence
			culture = culture:mongol
			trait = education_learning_3
			trait = patient
			trait = temperate
			trait = diligent
			trait = scholar
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_historian_khans
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_guush
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0168 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0168.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0168.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Job_Charnock"
			age = 63
			gender = male
			dynasty = none
			diplomacy = 5
			stewardship = 7
			intrigue = 5
			learning = 5
			martial = 11
			faith = faith:innocence
			culture = culture:english
			trait = education_stewardship_3
			trait = honest
			trait = cynical
			trait = diligent
			trait = adventurer
			trait = administrator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_gloomy_administrator
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_charnock
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0169 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0169.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0169.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Al_Sahili"
			age = 56
			gender = male
			dynasty = none
			diplomacy = 8
			stewardship = 13
			learning = 8
			faith = faith:innocence
			culture = culture:andalusian
			trait = education_learning_3
			trait = fickle
			trait = patient
			trait = diligent
			trait = lifestyle_poet
			trait = architect
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_architect_timbuktu
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 45
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_sahili
			}
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sahili
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0170 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0170.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0170.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Emotan"
			age = 40
			gender = female
			dynasty = none
			diplomacy = 10
			stewardship = 8
			intrigue = 14
			learning = 6
			faith = faith:innocence
			culture = culture:akan
			trait = education_stewardship_3
			trait = zealous
			trait = stubborn
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_uwaraye
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_emotan
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0171 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0171.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0171.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Thomais_Orsini"
			age = 20
			gender = female
			dynasty = none
			diplomacy = 8
			stewardship = 14
			intrigue = 6
			learning = 10
			faith = faith:innocence
			culture = culture:greek
			trait = education_diplomacy_3
			trait = content
			trait = gregarious
			trait = temperate
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_epirus_daughter
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_thomais
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0172 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0172.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0172.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Dilshad_Khatun"
			age = 25
			gender = female
			dynasty = none
			diplomacy = 11
			stewardship = 15
			intrigue = 7
			learning = 7
			faith = faith:innocence
			culture = culture:mongol
			trait = education_intrigue_3
			trait = generous
			trait = vengeful
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_jalayirid_princess
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_dilshad
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dilshad
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0173 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0173.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0173.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Zaria"
			age = 45
			gender = female
			dynasty = none
			diplomacy = 10
			stewardship = 11
			intrigue = 8
			martial = 8
			prowess = 9
			learning = 6
			faith = faith:innocence
			culture = culture:hausa
			trait = education_martial_3
			trait = physique_good_1
			trait = ambitious
			trait = brave
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_sister_legend
				add_trait_xp = {
					trait = aggressive_attacker
					value = 25
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_zaria
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0174 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0174.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0174.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Dmitry_Gerasimov"
			age = 70
			gender = male
			dynasty = none
			diplomacy = 10
			stewardship = 7
			intrigue = 6
			learning = 4
			faith = faith:innocence
			culture = culture:russian
			trait = education_learning_3
			trait = content
			trait = diligent
			trait = gregarious
			trait = scholar
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_scholastic
				learn_language = language_latin
				learn_language = language_italian
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			if = {
				limit = {
					has_ep1_dlc_trigger = yes
				}
				scope:greatperson = {
					create_inspiration = book_inspiration
				}
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gerasimov
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0175 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0175.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0175.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jamal_ud_Din_Yaqut"
			age = 40
			gender = male
			dynasty = none
			diplomacy = 8
			stewardship = 6
			intrigue = 8
			martial = 13
			prowess = 10
			learning = 3
			faith = faith:innocence
			culture = culture:ethiopian
			trait = education_martial_prowess_4
			trait = ambitious
			trait = diligent
			trait = just
			trait = lifestyle_blademaster
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_amir_al_khayl
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_jamal
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jamal
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0176 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0176.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0176.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Khwaju_Kermani"
			age = 59
			gender = male
			dynasty = none
			diplomacy = 8
			stewardship = 8
			intrigue = 6
			learning = 8
			faith = faith:innocence
			culture = culture:persian
			trait = education_learning_4
			trait = gregarious
			trait = diligent
			trait = calm
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_khwaja
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 70
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_kermani
			}
			if = {
				limit = {
					has_ep1_dlc_trigger = yes
				}
				scope:greatperson = {
					create_inspiration = book_inspiration
				}
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kermani
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0177 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0177.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0177.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mawlana_Jami"
			age = 79
			gender = male
			dynasty = none
			diplomacy = 8
			stewardship = 5
			intrigue = 8
			learning = 6
			faith = faith:innocence
			culture = culture:persian
			trait = education_learning_4
			trait = patient
			trait = diligent
			trait = calm
			trait = lifestyle_poet
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dashti
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 75
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_jami
			}
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jami
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0178 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0178.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0178.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Zafar_Khan"
			age = 40
			gender = male
			dynasty = none
			diplomacy = 8
			stewardship = 9
			intrigue = 6
			martial = 10
			learning = 7
			prowess = 10
			faith = faith:innocence
			culture = culture:hindustani
			trait = education_martial_4
			trait = brave
			trait = diligent
			trait = stubborn
			trait = strategist
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_ariz_i_mumalik
				add_trait_xp = {
					trait = aggressive_attacker
					value = 40
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = gp_zafar
			}
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_zafar
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0179 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0179.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0179.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Anu"
			age = 42
			gender = female
			dynasty = none
			diplomacy = 14
			stewardship = 10
			intrigue = 9
			martial = 8
			learning = 6
			prowess = 10
			faith = faith:innocence
			culture = culture:mongol
			trait = education_martial_3
			trait = brave
			trait = gregarious
			trait = stubborn
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_warrior_princess
				add_trait_xp = {
					trait = open_terrain_expert
					value = 45
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_anu
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0180 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0180.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0180.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Idia"
			age = 41
			gender = female
			dynasty = none
			diplomacy = 10
			stewardship = 10
			intrigue = 10
			martial = 10
			learning = 10
			prowess = 9
			faith = faith:innocence
			culture = culture:edo
			trait = education_martial_3
			trait = brave
			trait = diligent
			trait = patient
			trait = sorcerer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_iyoba
				add_trait_xp = {
					trait = desert_warrior
					value = 35
				}
				add_trait = lifestyle_physician
				add_trait_xp = {
					trait = lifestyle_physician
					value = 60
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_idia
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0181 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0181.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0181.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Michael"
			age = 45
			gender = male
			dynasty = none
			diplomacy = 10
			stewardship = 8
			learning = 10
			faith = faith:innocence
			culture = culture:ethiopian
			trait = education_diplomacy_3
			trait = zealous
			trait = diligent
			trait = gregarious
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_deacon
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_michael
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0182 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0182.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0182.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Soumaoro_Kante"
			age = 36
			gender = male
			dynasty = none
			intrigue = 6
			martial = 10
			stewardship = 6
			learning = 10
			prowess = 8
			faith = faith:innocence
			culture = culture:bobo
			trait = education_martial_3
			trait = ambitious
			trait = callous
			trait = paranoid
			trait = sorcerer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_sorcerer_king
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kante
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0183 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0183.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0183.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "al_Hasan_Muhammad_al_Wazzan"
			age = 60
			gender = male
			dynasty = none
			diplomacy = 8
			intrigue = 6
			martial = 6
			stewardship = 7
			learning = 10
			faith = faith:innocence
			culture = culture:andalusian
			trait = education_diplomacy_3
			trait = cynical
			trait = brave
			trait = diligent
			trait = adventurer
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_leo_africanus
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_wazzan
		}
		
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0184 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0184.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0184.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ilya_Muromets"
			age = 35
			gender = male
			dynasty = none
			martial = 10
			learning = 5
			prowess = 10
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_prowess_4
			trait = intellect_bad_1
			trait = giant
			trait = wrathful
			trait = brave
			trait = generous
			trait = physique_good_1
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_bogatyr
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ilya
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0185 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0185.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0185.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Helene_Kottanner"
			age = 40
			gender = female
			dynasty = none
			stewardship = 5
			diplomacy = 7
			intrigue = 11
			learning = 10
			faith = faith:innocence
			culture = culture:saxon
			trait = education_stewardship_3
			trait = shrewd
			trait = brave
			trait = diligent
			trait = zealous
			trait = loyal
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_royal_theft
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_helene
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0186 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0186.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0186.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Albertas_Gostautas"
			age = 50
			gender = male
			dynasty = none
			stewardship = 4
			diplomacy = 10
			martial = 6
			intrigue = 6
			learning = 13
			faith = faith:innocence
			culture = culture:lithuanian
			trait = education_stewardship_3
			trait = stubborn
			trait = diligent
			trait = gregarious
			trait = administrator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_grand_chancellor
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_albertas
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0187 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0187.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0187.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mikhailo_Olelkovich"
			age = 40
			gender = male
			dynasty = none
			stewardship = 7
			diplomacy = 6
			martial = 8
			intrigue = 9
			learning = 8
			faith = faith:innocence
			culture = culture:russian
			trait = education_martial_3
			trait = stubborn
			trait = ambitious
			trait = deceitful
			trait = disloyal
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_serial_rebel
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mikhailo
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0188 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0188.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0188.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Marfa_Boretskaya"
			age = 58
			gender = female
			dynasty = none
			stewardship = 8
			diplomacy = 10
			martial = 5
			intrigue = 10
			learning = 8
			faith = faith:innocence
			culture = culture:russian
			trait = education_stewardship_3
			trait = stubborn
			trait = diligent
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_mayoress
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_marfa
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0189 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0189.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0189.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Fatima"
			age = 25
			gender = female
			dynasty = none
			stewardship = 7
			diplomacy = 11
			martial = 5
			intrigue = 9
			learning = 8
			faith = faith:innocence
			culture = culture:persian
			trait = education_stewardship_3
			trait = trusting
			trait = diligent
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_unlikely_favorite
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_fatima
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0190 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0190.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0190.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mamai"
			age = 55
			gender = male
			dynasty = none
			stewardship = 8
			diplomacy = 8
			martial = 8
			intrigue = 10
			learning = 6
			faith = faith:innocence
			culture = culture:mongol
			trait = education_martial_4
			trait = ambitious
			trait = diligent
			trait = deceitful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_khanmaker
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mamai
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0191 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0191.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0191.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Theodora"
			age = 22
			gender = female
			dynasty = none
			stewardship = 11
			diplomacy = 12
			intrigue = 12
			learning = 10
			faith = faith:innocence
			culture = culture:greek
			trait = education_diplomacy_3
			trait = vengeful
			trait = brave
			trait = impatient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_very_last_roman
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_theodora_fictional
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0192 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0192.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0192.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sufi_Khalil_Beg_Mawsilu"
			age = 51
			gender = male
			dynasty = none
			stewardship = 11
			diplomacy = 11
			intrigue = 12
			martial = 9
			learning = 5
			prowess = 9
			faith = faith:innocence
			culture = culture:turkish
			trait = education_martial_3
			trait = ambitious
			trait = callous
			trait = impatient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_turkoman_pupeeteer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mawsilu
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0193 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0193.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0193.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Khayr_al_Nisa_Begum"
			age = 33
			gender = female
			dynasty = none
			stewardship = 13
			diplomacy = 12
			intrigue = 8
			learning = 10
			faith = faith:innocence
			culture = culture:persian
			trait = education_intrigue_3
			trait = ambitious
			trait = callous
			trait = vengeful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mahd_i_ulya
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_khayr
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0194 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0194.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0194.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Lizdeika"
			age = 41
			gender = male
			dynasty = none
			stewardship = 8
			diplomacy = 12
			intrigue = 10
			learning = 8
			faith = faith:innocence
			culture = culture:lithuanian
			trait = education_learning_3
			trait = zealous
			trait = patient
			trait = shy
			trait = sorcerer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_kriwe_kriwaito
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_lizdeika
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0195 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0195.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0195.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Birute"
			age = 50
			gender = female
			dynasty = none
			stewardship = 13
			diplomacy = 14
			intrigue = 5
			learning = 8
			faith = faith:innocence
			culture = culture:lithuanian
			trait = education_learning_3
			trait = beauty_good_1
			trait = zealous
			trait = content
			trait = shy
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_vaidilute
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_birute
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0196 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0196.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0196.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Torkel_Knutsson"
			age = 46
			gender = male
			dynasty = none
			stewardship = 11
			diplomacy = 13
			intrigue = 8
			martial = 12
			learning = 7
			faith = faith:innocence
			culture = culture:swedish
			trait = education_stewardship_3
			trait = just
			trait = content
			trait = brave
			trait = loyal
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dutiful_regent
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_torkel
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0197 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0197.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0197.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = schadenfreude
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Margaret"
			age = 23
			gender = female
			dynasty = none
			stewardship = 8
			diplomacy = 15
			intrigue = 8
			learning = 8
			faith = faith:innocence
			culture = culture:norwegian
			trait = education_intrigue_3
			trait = deceitful
			trait = ambitious
			trait = arbitrary
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_maid_norway
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_false_margaret
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0198 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0198.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0198.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Yasaur"
			age = 35
			gender = male
			dynasty = none
			stewardship = 11
			diplomacy = 8
			intrigue = 10
			martial = 10
			learning = 6
			prowess = 10
			faith = faith:innocence
			culture = culture:mongol
			trait = education_martial_3
			trait = deceitful
			trait = ambitious
			trait = fickle
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_chagatai_turncoat
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yasaur
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0199 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0199.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0199.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Kurbat_Ivanov"
			age = 40
			gender = male
			dynasty = none
			stewardship = 9
			diplomacy = 8
			intrigue = 10
			martial = 12
			learning = 11
			prowess = 8
			faith = faith:innocence
			culture = culture:russian
			trait = education_stewardship_3
			trait = diligent
			trait = patient
			trait = stubborn
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_siberian_explorer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kurbat
		}
		play_music_cue = "mx_cue_positive_effect"
		
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0200 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0200.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0200.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Yuri_Smolensk"
			age = 35
			gender = male
			dynasty = none
			stewardship = 11
			diplomacy = 18
			intrigue = 6
			martial = 13
			learning = 8
			prowess = 8
			faith = faith:innocence
			culture = culture:russian
			trait = education_intrigue_3
			trait = deceitful
			trait = lustful
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_last_prince
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yuri
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0201 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0201.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0201.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Andre_Longjumeau"
			age = 45
			gender = male
			dynasty = none
			stewardship = 8
			diplomacy = 9
			intrigue = 10
			learning = 12
			faith = faith:innocence
			culture = culture:french
			trait = education_diplomacy_3
			trait = diligent
			trait = gregarious
			trait = arrogant
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_western_diplomat
				learn_language = language_latin
				learn_language = language_arabic
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_andre
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0202 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0202.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0202.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Euphrosyne_Palaiologina"
			age = 29
			gender = female
			dynasty = none
			stewardship = 11
			diplomacy = 12
			intrigue = 10
			learning = 8
			faith = faith:innocence
			culture = culture:greek
			trait = education_stewardship_3
			trait = diligent
			trait = gregarious
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_beloved_byzantine
				learn_language = language_mongolic
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_euphrosyne
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0203 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0203.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0203.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Buscarello_de_Ghizolfi"
			age = 55
			gender = male
			dynasty = none
			stewardship = 13
			diplomacy = 7
			martial = 7
			intrigue = 5
			learning = 12
			prowess = 7
			faith = faith:innocence
			culture = culture:italian
			trait = education_diplomacy_3
			trait = humble
			trait = gregarious
			trait = diligent
			trait = diplomat
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_qortchi
				learn_language = language_mongolic
				learn_language = language_arabic
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_buscarello
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0204 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0204.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0204.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Maria_Perez"
			age = 29
			gender = female
			dynasty = none
			stewardship = 8
			diplomacy = 7
			martial = 5
			intrigue = 14
			learning = 10
			prowess = 7
			faith = faith:innocence
			culture = culture:galician
			trait = education_diplomacy_3
			trait = beauty_good_1
			trait = fickle
			trait = gregarious
			trait = diligent
			trait = lifestyle_poet
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_balteira
			
				add_trait_xp = {
					trait = lifestyle_poet
					value = 35
				}
				add_trait = tourney_participant
				add_trait_xp = {
					trait = tourney_participant
					track = bow
					value = 75
				}
				add_trait_xp = {
					trait = tourney_participant
					track = wit
					value = 75
				}
				
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_perez
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0205 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0205.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0205.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Hammu_ibn_Abd_al_Haqq"
			age = 35
			gender = male
			dynasty = none
			stewardship = 8
			diplomacy = 6
			martial = 10
			intrigue = 13
			learning = 7
			prowess = 8
			faith = faith:innocence
			culture = culture:maghrebi
			trait = education_martial_3
			trait = ambitious
			trait = diligent
			trait = fickle
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_shaykh_al_ghuzat
				add_trait_xp = {
					trait = aggressive_attacker
					value = 30
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hammu
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0206 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0206.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0206.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tegueste"
			age = 45
			gender = male
			dynasty = none
			stewardship = 12
			diplomacy = 13
			martial = 14
			intrigue = 5
			learning = 5
			prowess = 9
			faith = faith:innocence
			culture = culture:guanches
			trait = education_martial_3
			trait = humble
			trait = diligent
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_last_guanche
				add_trait_xp = {
					trait = unyielding_defender
					value = 45
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_tegueste
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0207 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0207.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0207.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Doramas"
			age = 26
			gender = male
			dynasty = none
			stewardship = 6
			diplomacy = 7
			martial = 13
			intrigue = 5
			learning = 5
			prowess = 13
			faith = faith:innocence
			culture = culture:guanches
			trait = education_martial_prowess_4
			trait = temperate
			trait = brave
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_axicatnas
				add_trait_xp = {
					trait = unyielding_defender
					value = 35
				}
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_doramas
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0208 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0208.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0208.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Yalbugha_al_Umari"
			age = 40
			gender = male
			dynasty = none
			stewardship = 14
			diplomacy = 7
			martial = 10
			intrigue = 8
			learning = 8
			prowess = 8
			faith = faith:innocence
			culture = culture:egyptian
			trait = education_intrigue_3
			trait = deceitful
			trait = generous
			trait = ambitious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_amir_mi_a_muqaddam_alf
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yalbugha
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0209 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0209.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0209.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Bayram_Pasha"
			age = 43
			gender = male
			dynasty = none
			stewardship = 9
			diplomacy = 9
			martial = 7
			intrigue = 6
			learning = 10
			prowess = 5
			faith = faith:innocence
			culture = culture:turkish
			trait = education_stewardship_3
			trait = beauty_good_3
			trait = content
			trait = diligent
			trait = gregarious
			trait = administrator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_beylerbey
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_bayram
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0210 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0210.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0210.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Al_Hajj_Salim_Suwari"
			age = 45
			gender = male
			dynasty = none
			stewardship = 7
			diplomacy = 17
			intrigue = 6
			learning = 9
			faith = faith:innocence
			culture = culture:soninke
			trait = education_learning_4
			trait = patient
			trait = calm
			trait = zealous
			trait = hajjaj
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_suwarian_father
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_suwari
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0211 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0211.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0211.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Wagaye"
			age = 31
			gender = female
			dynasty = none
			stewardship = 10
			diplomacy = 9
			intrigue = 6
			learning = 8
			faith = faith:innocence
			culture = culture:ethiopian
			trait = education_stewardship_3
			trait = forgiving
			trait = trusting
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_resurrected
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kristos
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0212 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0212.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0212.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ugolino_Vivaldi"
			age = 43
			gender = male
			dynasty = none
			stewardship = 10
			diplomacy = 12
			intrigue = 8
			martial = 11
			learning = 10
			prowess = 8
			faith = faith:innocence
			culture = culture:cisalpine
			trait = education_stewardship_3
			trait = ambitious
			trait = greedy
			trait = diligent
			trait = wounded_1
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_first_explorer
			}
		}

		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = adventure_inspiration
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ugolino
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0213 = {
	type = character_event
	content_source = dlc_POD
	title = Kassi
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0213.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Kassi"
			age = 35
			gender = female
			dynasty = none
			stewardship = 14
			diplomacy = 14
			intrigue = 8
			martial = 6
			learning = 11
			faith = faith:innocence
			culture = culture:soninke
			trait = education_intrigue_4
			trait = ambitious
			trait = vengeful
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_qasa
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kassi
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0214 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0214.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0214.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Elizabeth"
			age = 44
			gender = female
			dynasty = none
			stewardship = 9
			diplomacy = 14
			intrigue = 14
			learning = 8
			faith = faith:innocence
			culture = culture:cuman
			trait = education_stewardship_3
			trait = ambitious
			trait = stubborn
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_cuman
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_elizabeth_cuman
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0215 = {
	type = character_event
	content_source = dlc_POD
	title = syrgiannes_palaiologos
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0215.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "syrgiannes_palaiologos"
			age = 44
			gender = male
			dynasty = none
			stewardship = 9
			diplomacy = 18
			intrigue = 4
			martial = 14
			prowess = 8
			learning = 8
			faith = faith:innocence
			culture = culture:greek
			trait = education_intrigue_4
			trait = ambitious
			trait = greedy
			trait = deceitful
			trait = schemer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_shifting
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_syrgiannes
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
	
}
podgreatpersons.0216 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0216.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0216.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sasaki_Kojiro"
			age = 27
			gender = male
			dynasty = none
			stewardship = 4
			diplomacy = 14
			intrigue = 3
			martial = 5
			prowess = 10
			learning = 10
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_martial_prowess_4
			trait = brave
			trait = wrathful
			trait = fickle
			trait = lifestyle_blademaster
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_demon_of_the_western_provinces
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sasaki_kojiro
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0217 = { # spawn at 1549 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0217.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0217.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Hwang_Jini"
			age = 43 # She died apparently of old age at 61, but maybe someone could make a move before ?
			gender = female
			dynasty = none
			diplomacy = 4
			learning = 12
			intrigue = 5
			faith = faith:innocence
			culture = culture:goryeo # change to Jeonsan when available
			trait = education_diplomacy_3
			trait = diligent
			trait = ambitious
			trait = gregarious
			trait = lifestyle_poet
			trait = beauty_good_3
			trait = seducer
			trait = child_of_concubine_female
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_myeongwol
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 65
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hwang_jini
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0218 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0218.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0218.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Yang_Miaozhen"
			age = 57
			gender = female
			dynasty = none
			stewardship = 5
			diplomacy = 10
			intrigue = 14
			martial = 12
			prowess = 14
			learning = 3
			faith = faith:innocence
			culture = culture:han
			trait = education_martial_3
			trait = brave
			trait = stubborn
			trait = patient
			trait = unyielding_defender
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_pear_blossom_spear
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yang_miaozhen
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

	
podgreatpersons.0219 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0219.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0219.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Kusunoki_Masasue"
			age = 34
			gender = male
			dynasty = none
			stewardship = 8
			diplomacy = 10
			intrigue = 4
			martial = 12
			prowess = 15
			learning = 6
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_martial_3
			trait = brave
			trait = patient
			trait = humble
			trait = loyal
			trait = shrewd
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_little_dragon
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kusunoki_masasue
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0220 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0220.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0220.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mochizuki_Chiyome"
			age = 33
			gender = female
			dynasty = none
			stewardship = 10
			diplomacy = 16
			intrigue = 5
			martial = 3
			prowess = 12
			learning = 8
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_intrigue_4
			trait = deceitful
			trait = vengeful
			trait = callous
			trait = beauty_good_2
			trait = lifestyle_poet
			trait = seducer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_lady_of_the_shadows
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mochizuki_chiyome
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}
	
podgreatpersons.0221 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0221.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0221.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tempest_Peacock"
			age = 36
			gender = male
			dynasty = none
			stewardship = 11
			diplomacy = 9
			intrigue = 10
			martial = 5
			prowess = 7
			learning = 3
			faith = faith:innocence
			culture = culture:english
			trait = education_stewardship_3
			trait = deceitful
			trait = greedy
			trait = lustful
			trait = lifestyle_voyager
			trait = lifestyle_traveler
			trait = drunkard
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dark_horse_from_faraway_lands
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_tempest_peacock
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
 }
 
podgreatpersons.0222 = { # spawn at 1258 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0222.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0222.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Hong_Bokwon"
			age = 52
			gender = male
			dynasty = none
			diplomacy = 12
			intrigue = 4
			learning = 4
			martial = 14
			prowess = 10
			faith = faith:innocence
			culture = culture:goryeo # change to Jeonsan when available
			trait = education_martial_3
			trait = callous
			trait = ambitious
			trait = craven
			trait = physique_good_2
			trait = flexible_leader # To allow for Horse Archer accolade retinue
			trait = disloyal
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_kwanryong_kuibu_koryo_changwan
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_hong_pok-won
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0223 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0223.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0223.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Han_Liner"
			age = 27
			gender = male
			dynasty = none
			stewardship = 7
			diplomacy = 12
			intrigue = 3
			martial = 5
			prowess = 5
			learning = 12
			faith = faith:innocence
			culture = culture:han
			trait = education_learning_3
			trait = shy
			trait = eccentric
			trait = trusting
			trait = savior
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_king_of_light
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_han_liner
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0224 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0224.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0224.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = chancellor
	}
	
	trigger = {
	}
	
	immediate = { #1489 death IRL
		create_character = {
			name = "Yu_Zijun"
			age = 60
			gender = male
			dynasty = none
			stewardship = 13
			diplomacy = 8
			intrigue = 3
			martial = 10
			prowess = 10
			learning = 9
			faith = faith:innocence
			culture = culture:han
			trait = education_martial_3
			trait = temperate
			trait = stubborn
			trait = honest
			trait = mortal
			trait = cautious_leader
			trait = military_engineer
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_architect_of_the_wall
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yu_zijun
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0225 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0225.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0225.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = writing
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Wang_Qinghui"
			age = 23 #this is strictly a guess, we don't have detailed biographic info on her. But we know she was an active poet between when Song Duzong was a prince (pre-1264) to years after the Song fell (post-1279) so we can surmise that her career spanned give or take more than 15 years
			gender = female
			dynasty = none
			stewardship = 6
			diplomacy = 14
			intrigue = 7
			martial = 2
			prowess = 3
			learning = 3
			faith = faith:innocence
			culture = culture:han
			trait = education_learning_4
			trait = temperate
			trait = chaste
			trait = diligent
			trait = mortal
			trait = lifestyle_poet
			trait = scholar
			trait = inappetetic #she's recorded as being "crane-boned and emaciated"
			trait = journaller #famous for a poem she inscribed on a tavern wall while being taken north by the Yuan lol
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_drifting_crane
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_wang_qinghui
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0226 = { # spawn at 1398 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0226.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0226.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jeong_Dojeon"
			age = 56
			gender = male
			dynasty = none
			diplomacy = 12
			stewardship = 6
			learning = 11
			faith = faith:innocence
			culture = culture:goryeo # change to Jeonsan when available
			trait = education_stewardship_4
			trait = humble
			trait = callous
			trait = diligent
			trait = shrewd
			trait = physique_bad_1
			trait = administrator
			trait = overseer # To be replace with lifestyle_surveyor if the proper DLC is available
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_sambong
				if = {
					limit = {
						has_dlc_feature = wandering_nobles
					}
					add_trait = lifestyle_surveyor
					remove_trait = overseer
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_chong_tojon
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0227 = { # spawn at 1593 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0227.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0227.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = admiration
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ju_Nongae"
			age = 19
			gender = female
			dynasty = none
			diplomacy = 6
			intrigue = 12
			learning = 10
			faith = faith:innocence
			culture = culture:goryeo # change to Jeonsan when available
			trait = education_intrigue_2
			trait = vengeful
			trait = callous
			trait = gregarious
			trait = beauty_good_3
			trait = seducer
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_uiam
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 15
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ju_nongae
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0228 = { # spawn at 1550 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0228.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0228.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jang_Geum"
			age = 76
			gender = female
			dynasty = none
			learning = 8
			diplomacy = 7
			stewardship = 8
			faith = faith:innocence
			culture = culture:goryeo # change to Jeonsan when available
			trait = education_learning_3
			trait = compassionate
			trait = shy
			trait = diligent
			trait = whole_of_body
			trait = lifestyle_physician
			trait = lifestyle_herbalist
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_dae
				# She had 50 years to master the physicians part of her life
				add_trait_xp = {
					trait = lifestyle_physician
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jang_geum
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0230 = {
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0230.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0230.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Shinran"
			age = 70
			gender = male
			dynasty = none
			stewardship = 7
			diplomacy = 11
			intrigue = 6
			martial = 4
			prowess = 3
			learning = 12
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_learning_4
			trait = humble
			trait = compassionate
			trait = zealous
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_exiled_sage
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_shinran
		}
		play_music_cue = "mx_cue_positive_effect"
		
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}


podgreatpersons.0231 = { # spawn at 1273 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0231.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0231.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Gim_Tongjeong"
			age = 52
			gender = male
			dynasty = none
			stewardship = 10
			learning = 8
			martial = 14
			prowess = 14
			faith = faith:innocence
			culture = culture:goryeo # change to Jeonsan when available
			trait = education_martial_prowess_3
			trait = brave
			trait = vengeful
			trait = patient
			trait = organizer
			trait = lifestyle_blademaster
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_last_sambyeolcho
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kim_tongjong
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0232 = { # spawn at 1319 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0232.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0232.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_vengeful
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Borjigin_Yilianzhenbala"
			age = 19
			gender = female
			dynasty = none
			diplomacy = 4
			martial = 4
			learning = 11
			intrigue = 8
			faith = faith:innocence
			culture = culture:mongol
			trait = education_intrigue_2
			trait = wrathful
			trait = vengeful
			trait = callous
			trait = lunatic_1
			trait = psychic
			trait = mortal
			trait = beauty_good_2
			trait = physique_good_1
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_princess_jeonghwa
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_borjigin_yilianzhenbala
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0233 = { # spawn at 1361 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0233.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0233.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ulus_Bukha"
			age = 41
			gender = male
			dynasty = none
			diplomacy = 6
			martial = 9
			stewardship = 10
			learning = 8
			faith = faith:innocence
			culture = culture:mongol
			trait = education_martial_3
			trait = compassionate
			trait = diligent
			trait = lustful
			trait = administrator
			trait = logistician
			trait = fornicator
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_yi_chachun
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ulus_bhuka
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}
podgreatpersons.0234 = { # spawn at 1390 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0234.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0234.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Choe_Yongdeok"
			age = 22
			gender = female
			dynasty = none
			diplomacy = 13
			stewardship = 4
			intrigue = 4
			learning = 7
			faith = faith:innocence
			culture = culture:goryeo # Change to korean
			trait = education_intrigue_3
			trait = ambitious
			trait = deceitful
			trait = vengeful
			trait = seducer
			trait = beauty_good_2
			trait = deviant
			trait = flagellant
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_kayaji
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_choe_yongdeok
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0235 = { # spawn at 1408 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0235.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0235.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_content
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Issi_Hyebi"
			age = 65
			gender = female
			dynasty = none
			diplomacy = 8
			stewardship = 4
			learning = 10
			intrigue = 10
			faith = faith:innocence
			culture = culture:goryeo # Change to korean
			trait = education_learning_3
			trait = content
			trait = calm
			trait = zealous
			trait = lifestyle_poet
			trait = devoted
			trait = theologian
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_howol
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 15
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_character_flag = {
				flag = POD_bald_look_flag
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yi_hyebi
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0236 = { # spawn at 1456 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0236.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0236.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Bak_Paengnyeon"
			age = 39
			gender = male
			dynasty = none
			diplomacy = 13
			stewardship = 4
			learning = 9
			intrigue = 11
			faith = faith:innocence
			culture = culture:goryeo # Change to korean
			trait = education_learning_4
			trait = stubborn
			trait = just
			trait = arrogant
			trait = scholar
			trait = loyal
			trait = weak
			trait = intellect_good_2
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_sayuksin
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_park_paengnyeon
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0237 = { # spawn at 1480 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0237.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0237.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Bak_Guma"
			age = 38
			gender = female
			dynasty = none
			diplomacy = 10
			learning = 7
			intrigue = 8
			faith = faith:innocence
			culture = culture:goryeo # Change to korean
			trait = education_learning_3
			trait = callous
			trait = lustful
			trait = arrogant
			trait = seducer
			trait = lifestyle_poet
			trait = fornicator
			trait = adulterer
			trait = rakish
			trait = beauty_good_2
			trait = shrewd
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_eowudong
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_park_guma
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0238 = { # spawn at 1520 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0238.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0238.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Jo_Gwangjo"
			age = 38
			gender = male
			dynasty = none
			learning = 8
			stewardship = 6
			diplomacy = 2
			faith = faith:innocence
			culture = culture:goryeo # Change to korean
			trait = education_stewardship_3
			trait = trusting
			trait = diligent
			trait = honest
			trait = loyal
			trait = administrator
			trait = scholar
			trait = reclusive
			trait = intellect_good_3
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_jeongam
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_jo_gwangjo
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0239 = { # spawn at 1598 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0239.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0239.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "I_Sunsin"
			age = 53
			gender = male
			dynasty = none
			learning = 6
			martial = 8
			prowess = 10
			faith = faith:innocence
			culture = culture:goryeo # Change to korean
			trait = education_martial_4
			trait = ambitious
			trait = just
			trait = brave
			trait = strategist
			trait = intellect_good_1
			trait = one_legged
			trait = scarred
			trait = military_engineer
			trait = cautious_leader
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_chungmugong
				add_trait_xp = {
					trait = scarred
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			add_trait_xp = {
				trait = military_engineer
				value = 100
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yi-sunsin
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0240 = { # spawn at 1614 in Jeonsan
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0240.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0240.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Gwak_Jaeu"
			age = 65
			gender = male
			dynasty = none
			diplomacy = 8
			martial = 8
			learning = 9
			prowess = 10
			faith = faith:innocence
			culture = culture:goryeo # Change to korean
			trait = education_martial_3
			trait = callous
			trait = brave
			trait = eccentric
			trait = physique_good_2
			trait = aggressive_attacker
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_red_robe
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			POD_set_colorscheme_onlyred = yes
			
			add_trait_xp = {
				trait = aggressive_attacker
				value = 65
			}			
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_kwak_chaeu
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0241 = { # spawn at 1264 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0241.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0241.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tran_Thu_Do"
			age = 63
			gender = male
			dynasty = none
			intrigue = 0
			diplomacy = 12
			stewardship = 12
			learning = 9
			martial = 12
			faith = faith:innocence
			culture = culture:khmer # Change to khmer
			trait = education_intrigue_4
			trait = callous
			trait = arbitrary
			trait = paranoid
			trait = schemer
			trait = shrewd
			trait = unyielding_defender
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_thai_to
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
			add_trait_xp = {
				trait = unyielding_defender
				value = 55
			}
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_tran_thu_do
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0242 = { # spawn at 1284 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0242.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0242.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "An_Tu"
			age = 17
			gender = female
			dynasty = none
			intrigue = 11
			diplomacy = 8
			stewardship = 4
			learning = 8
			faith = faith:innocence
			culture = culture:khmer # Change to khmer
			trait = education_intrigue_2
			trait = humble
			trait = compassionate
			trait = lustful
			trait = seducer
			trait = beauty_good_3
			trait = loyal
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_princess_of_precious_leaves_and_branches
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_an_tu
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0243 = { # spawn at 1300 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0243.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0243.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tran_Hung_Dao"
			age = 72
			gender = male
			dynasty = none
			intrigue = 8
			diplomacy = 8
			stewardship = 8
			martial = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:khmer # Change to khmer
			trait = education_martial_4
			trait = humble
			trait = patient
			trait = temperate
			trait = strategist
			trait = physique_good_2
			trait = intellect_good_1
			trait = logistician
			trait = jungle_stalker
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_duc_thanh_hung_dao
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			
			add_trait_xp = {
				trait = jungle_stalker
				value = 100
			}	
			add_trait_xp = {
				trait = logistician
				value = 80
			}				
		}
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_thanh_hung_dao
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0244 = { # spawn at 1322 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0244.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0244.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = writing
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Le_Van_Huu"
			age = 92
			gender = male
			dynasty = none
			intrigue = 4
			diplomacy = 7
			stewardship = 8
			learning = 5
			faith = faith:innocence
			culture = culture:khmer # Change to khmer
			trait = education_learning_4
			trait = diligent
			trait = ambitious
			trait = patient
			trait = scholar
			trait = intellect_good_2
			trait = mortal
			trait = journaller
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
					give_nickname = nick_father_of_dai_viet
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
				create_inspiration = book_inspiration
			}
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_le_van_huu
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0245 = { # spawn at 1308 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0245.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0245.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = scheme
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Huyen_Tran"
			age = 19
			gender = female
			dynasty = none
			intrigue = 6
			diplomacy = 6
			learning = 10
			faith = faith:innocence
			culture = culture:khmer # Change to khmer
			trait = education_intrigue_3
			trait = brave
			trait = lustful
			trait = vengeful
			trait = schemer
			trait = beauty_good_2
			trait = intellect_good_1
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_ca_doc_duoc
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_huyen_tran
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0246 = { # spawn at 1346 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0246.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0246.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = scheme
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mac_Dinh_Chi"
			age = 74
			gender = male
			dynasty = none
			intrigue = 6
			diplomacy = 8
			learning = 5
			faith = faith:innocence
			culture = culture:khmer # Change to khmer
			trait = education_learning_4
			trait = calm
			trait = honest
			trait = gregarious
			trait = scholar
			trait = beauty_bad_2
			trait = shrewd
			trait = spindly
			trait = lifestyle_poet
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_ca_doc_duoc
				add_trait_xp = {
					trait = lifestyle_poet
					value = 65
				}
				add_trait = lifestyle_traveler
				add_trait_xp = {
					trait = lifestyle_traveler
					track = travel
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			if = {
				limit = {
					has_dlc_feature = wandering_nobles
				}
				add_trait = lifestyle_wayfarer
			}
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mac_dinh_chi
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0247 = { # spawn at 1367 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0247.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0247.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = scheme
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nga_Tet_Pya"
			age = 22
			gender = male
			dynasty = none
			intrigue = 12
			martial = 6
			prowess = 10
			learning = 9
			diplomacy = 10
			faith = faith:innocence
			culture = culture:burmese
			trait = education_martial_3
			trait = brave
			trait = ambitious
			trait = lustful
			trait = beauty_good_3
			trait = strong
			trait = reaver
			trait = fornicator
			trait = gallant
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_daring_bandit
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			set_sexuality = bisexual
			POD_flag_as_great_person = yes
			
			add_trait_xp = {
				trait = reaver
				value = 55
			}				
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_nga_tet_pya
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0248 = { # spawn at 1392 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0248.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0248.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Piya_Yaza_Dewi"
			age = 32
			gender = female
			dynasty = none
			intrigue = 3
			learning = 7
			diplomacy = 13
			faith = faith:innocence
			culture = culture:burmese
			trait = education_intrigue_4
			trait = sadistic
			trait = vengeful
			trait = ambitious
			trait = beauty_good_3
			trait = seducer
			trait = schemer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mwei_manet
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_piya_yaza_dewi
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0249 = { # spawn at 1414 in Dai Viet
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0249.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0249.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Dang_Dung"
			age = 41
			gender = male
			dynasty = none
			stewardship = 6
			learning = 6
			martial = 11
			prowess = 10
			faith = faith:innocence
			culture = culture:khmer # change to khmer
			trait = education_martial_3
			trait = vengeful
			trait = just
			trait = diligent
			trait = strategist
			trait = lifestyle_poet
			trait = unyielding_defender
			trait = jungle_stalker
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_poet_general
			
				add_trait_xp = {
					trait = lifestyle_poet
					value = 45
				}
				add_trait_xp = {
					trait = unyielding_defender
					value = 85
				}
			}			
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dang_dung
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0250 = { # spawn at 1438 in Đai Viêt
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0250.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0250.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Keo_Phimpha"
			age = 95
			gender = female
			dynasty = none
			learning = 9
			stewardship = 8
			diplomacy = 15
			intrigue = 3
			faith = faith:innocence
			culture = culture:viet # change to laotian
			trait = education_intrigue_4
			trait = ambitious
			trait = sadistic
			trait = deceitful
			trait = schemer
			trait = torturer
			trait = disputed_heritage
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_maha_devi
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_keo_phimpha
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0251 = { # spawn at 1451 in Đai Viêt
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0251.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0251.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = scheme
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Trinh_Kha"
			age = 49
			gender = male
			dynasty = none
			stewardship = 6
			diplomacy = 12
			learning = 9
			intrigue = 5
			faith = faith:innocence
			culture = culture:khmer # change to khmer
			trait = education_intrigue_3
			trait = patient
			trait = ambitious
			trait = deceitful
			trait = schemer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_first_chua
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
			POD_set_colorscheme_red = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_trinh_kha
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0252 = { # spawn at 1472 in Đai Viêt
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0252.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0252.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Shin_Sawbu"
			age = 77
			gender = female
			dynasty = none
			stewardship = 13
			diplomacy = 11
			learning = 10
			faith = faith:innocence
			culture = culture:burmese
			trait = education_learning_3
			trait = patient
			trait = humble
			trait = calm
			trait = architect
			trait = theologian
			trait = lifestyle_gardener
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_binnya_thau
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_shin_sawbu
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0253 = { # spawn at 1473 in Đai Viêt
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0253.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0253.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Yazathingyan"
			age = 85
			gender = male
			dynasty = none
			stewardship = 8
			diplomacy = 6
			martial = 5
			learning = 9
			prowess = 10
			faith = faith:innocence
			culture = culture:burmese
			trait = education_martial_4
			trait = diligent
			trait = brave
			trait = calm
			trait = strategist
			trait = logistician
			trait = cautious_leader
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_old_general
				add_trait_xp = {
					trait = cautious_leader
					value = 85
				}				
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_yazathingyan
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0254 = { # spawn at 1553 in Đai Viêt
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0254.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0254.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = toast_gobelet
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Diogo_Soares"
			age = 47
			gender = male
			dynasty = none
			martial = 7
			prowess = 10
			learning = 8
			intrigue = 9
			faith = faith:innocence
			culture = culture:portuguese
			trait = education_martial_2
			trait = callous
			trait = impatient
			trait = gluttonous
			trait = reckless
			trait = drunkard
			trait = adventurer
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_wine_maker
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_diogo_soares
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0255 = { # spawn at 1442 in Đai Viêt
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0255.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0255.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = flirtation
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Nguyen_Thi_Lo"
			age = 43
			gender = female
			dynasty = none
			stewardship = 8
			learning = 6
			intrigue = 8
			faith = faith:innocence
			culture = culture:khmer # Change to khmer
			trait = education_intrigue_3
			trait = compassionate
			trait = forgiving
			trait = just
			trait = lifestyle_poet
			trait = beauty_good_3
			trait = intellect_good_2
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mistress_lychee_garden
			
			add_trait_xp = {
					trait = lifestyle_poet
					value = 10
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_nguyen_thi_lo
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0256 = { # spawn at Japan, Chikugo Province, 1585
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0256.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0256.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tachibana_Dosetsu"
			age = 72
			gender = male
			dynasty = none
			stewardship = 4
			learning = 7
			intrigue = 1
			diplomacy = 8
			martial = 9
			prowess = 12
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_martial_4
			trait = lifestyle_blademaster
			trait = diligent
			trait = brave
			trait = just
			trait = one_legged
			trait = strategist
			trait = physique_good_2
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_thunder_gods_incarnation
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 100
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_tachibana_dosetsu
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0257 = { # spawn at Japan, Kyoto, 1481
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0257.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0257.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_forgiving
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ikkyu"
			age = 87
			gender = male
			dynasty = none
			stewardship = 6
			learning = 7
			intrigue = 3
			diplomacy = 8
			martial = 2
			prowess = 3
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_learning_4
			trait = intellect_good_2
			trait = lustful
			trait = arbitrary
			trait = gregarious
			trait = scholar
			trait = theologian
			trait = rakish
			trait = drunkard
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_ink_and_flame
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ikkyu
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0258 = { # spawn at Japan, 1351
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0258.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0258.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ko_no_Moronao"
			age = 52
			gender = male
			dynasty = none
			stewardship = 13
			learning = 7
			intrigue = 13
			diplomacy = 5
			martial = 12
			prowess = 10
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_martial_prowess_4
			trait = lifestyle_blademaster
			trait = brave
			trait = wrathful
			trait = greedy
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_cherryfire
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ko_no_moronao
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0259 = { # spawn at Japan, 1270
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0259.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0259.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_forgiving
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ben_no_Naishi"
			age = 41
			gender = female
			dynasty = none
			stewardship = 10
			learning = 9
			intrigue = 8
			diplomacy = 3
			martial = 3
			prowess = 2
			faith = faith:innocence
			culture = culture:japanese # change to Japanese when available
			trait = education_diplomacy_4
			trait = intellect_good_2
			trait = calm
			trait = temperate
			trait = compassionate
			trait = mortal
			trait = lifestyle_poet
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_still_water_scribe
				
			add_trait_xp = {
					trait = lifestyle_poet
					value = 70
				}	
				}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ben_no_naishi
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0260 = { # spawn in Indonesia at 1240
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0260.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0260.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Lohgawe"
			age = 61
			gender = male
			dynasty = none
			stewardship = 8
			learning = 8
			intrigue = 2
			diplomacy = 9
			martial = 3
			prowess = 2
			faith = faith:innocence
			culture = culture:sinhala
			trait = education_learning_4
			trait = theologian
			trait = patient
			trait = temperate
			trait = content
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_pembuat_raja
				}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_lohgawe
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0261 = { # spawn in Indonesia at 1252
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0261.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0261.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Ken_Dedes"
			age = 36
			gender = female
			dynasty = none
			stewardship = 4
			learning = 4
			intrigue = 8
			diplomacy = 13
			martial = 3
			prowess = 2
			faith = faith:innocence
			culture = culture:malay # Replace with malay
			trait = education_learning_3
			trait = beauty_good_3
			trait = seducer
			trait = patient
			trait = deceitful
			trait = vengeful
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_nareswari
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}

		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_ken_dedes
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0262 = { # spawn in Indonesia at 1295
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0262.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0262.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Mahisa_Anabrang"
			age = 45
			gender = male
			dynasty = none
			stewardship = 7
			learning = 8
			intrigue = 10
			diplomacy = 13
			martial = 10
			prowess = 10
			faith = faith:innocence
			culture = culture:malay # Replace with malay
			trait = education_martial_4
			trait = physique_good_1
			trait = forder
			trait = loyal
			trait = patient
			trait = ambitious
			trait = arrogant
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_kerbau_yang_menyeberang
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 50
				}
				add_trait_xp = {
					trait = forder
					value = 66
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_mahisa_anabrang
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0263 = { # spawn in Indonesia at 1319
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0263.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0263.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_dishonorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Dyah_Halayudah"
			age = 53
			gender = female
			dynasty = none
			stewardship = 11
			learning = 6
			intrigue = 3
			diplomacy = 16
			martial = 4
			prowess = 3
			faith = faith:innocence
			culture = culture:javanese # Replace with javanese
			trait = education_intrigue_3
			trait = schemer
			trait = ambitious
			trait = callous
			trait = deceitful
			trait = disloyal
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mahapati
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_dyah_halayudha
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0264 = { # spawn in Indonesia at 1357
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0264.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0264.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_bold
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Citra_Rashmi"
			age = 17
			gender = female
			dynasty = none
			stewardship = 12
			learning = 8
			intrigue = 5
			diplomacy = 9
			martial = 8
			prowess = 3
			faith = faith:innocence
			culture = culture:javanese # Replace with sundanese or javanese
			trait = education_martial_2
			trait = beauty_good_3
			trait = athletic
			trait = brave
			trait = gregarious
			trait = compassionate
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_pitaloka
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_citra_rashmi
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0265 = { # spawn in Indonesia at 1364
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0265.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0265.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = threatening
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Gajah_Mada"
			age = 74
			gender = male
			dynasty = none
			stewardship = 10
			learning = 12
			intrigue = 14
			diplomacy = 10
			martial = 12
			prowess = 15
			faith = faith:innocence
			culture = culture:javanese # Replace with javanese
			trait = education_martial_3
			trait = shrewd
			trait = aggressive_attacker
			trait = ambitious
			trait = impatient
			trait = arrogant
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_rakryan_mapatih_jirnodhara
				add_trait_xp = {
					trait = aggressive_attacker
					value = 33
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_gajah_mada
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0266 = { # spawn in Indonesia at 1377
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0266.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0266.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_callous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Urduja"
			age = 25
			gender = female
			dynasty = none
			stewardship = 14
			learning = 8
			intrigue = 6
			diplomacy = 7
			martial = 7
			prowess = 13
			faith = faith:innocence
			culture = culture:iloko # Replace with iloko
			trait = education_martial_3
			trait = beauty_good_2
			trait = physique_good_3
			trait = forder
			trait = gallant
			trait = honest
			trait = ambitious
			trait = gregarious
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_kinalakian_queen
				add_trait = lifestyle_reveler
				add_trait_xp = {
					trait = lifestyle_reveler
					value = 50
				}
				add_trait_xp = {
					trait = forder
					value = 35
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			set_sexuality = homosexual
			POD_flag_as_great_person = yes

		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_urduja
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0267 = { # spawn in Indonesia at 1386
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0267.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0267.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_compassionate
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tantular"
			age = 64
			gender = male
			dynasty = none
			stewardship = 8
			learning = 8
			intrigue = 8
			diplomacy = 9
			martial = 6
			faith = faith:innocence
			culture = culture:javanese # Replace with javanese
			trait = education_learning_4
			trait = scholar
			trait = lifestyle_poet
			trait = compassionate
			trait = gregarious
			trait = generous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_unwavering
			
				add_trait_xp = {
					trait = lifestyle_poet
					value = 65
				}			
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_tantular
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0268 = { # spawn in Indonesia at 1426
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0268.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0268.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sang_Adi_Putra"
			age = 59
			gender = male
			dynasty = none
			stewardship = 6
			learning = 7
			intrigue = 5
			diplomacy = 8
			martial = 10
			prowess = 15
			faith = faith:innocence
			culture = culture:senoi # Replace with senoi
			trait = education_learning_2
			trait = reclusive
			trait = scholar
			trait = brave
			trait = patient
			trait = eccentric
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_mahaguru
				add_trait = lifestyle_mystic
				add_trait_xp = {
					trait = lifestyle_mystic
					value = 60
				}
				add_trait = lifestyle_blademaster
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 55
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
				}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sang_adi_putra
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0269 = { # spawn in Indonesia at 1481
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0269.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0269.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_zealous
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Sayyid_Ali_Rahmatullah"
			age = 80
			gender = male
			dynasty = none
			stewardship = 6
			learning = 9
			intrigue = 5
			diplomacy = 10
			martial = 8
			prowess = 6
			faith = faith:innocence
			culture = culture:han # He's one of the chinese muslim that moved in the area
			trait = education_learning_4
			trait = lifestyle_mystic
			trait = sayyid
			trait = theologian
			trait = generous
			trait = just
			trait = temperate
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_sunan_ampel
				add_trait_xp = {
					trait = lifestyle_mystic
					value = 50
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
				}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sayyid_ali_rahmatullah
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0270 = { # spawn in Indonesia at 1486
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0270.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0270.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = steward
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Shi_Daniang"
			age = 62
			gender = female
			dynasty = none
			stewardship = 7
			learning = 9
			intrigue = 5
			diplomacy = 8
			martial = 4
			prowess = 6
			faith = faith:innocence
			culture = culture:han # She's a chinese
			trait = education_stewardship_3
			trait = shrewd
			trait = administrator
			trait = ambitious
			trait = arbitrary
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_nyai_gede_pinatih
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sayyid_shi_daniang
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0271 = { # spawn in Indonesia at 1498
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0271.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0271.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_rational
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tun_Perak"
			age = 72
			gender = male
			dynasty = none
			stewardship = 6
			learning = 9
			intrigue = 10
			diplomacy = 8
			martial = 12
			prowess = 6
			faith = faith:innocence
			culture = culture:malay # Replace with Malay
			trait = education_stewardship_4
			trait = logistician
			trait = shrewd
			trait = loyal
			trait = calm
			trait = arrogant
			trait = diligent
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_bendahara_paduka_raja
				add_trait_xp = {
					trait = logistician
					value = 65
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_sayyid_tun_perak
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0272 = { # spawn in Indonesia at 1521
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0272.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0272.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_cynical
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Tun_Fatimah"
			age = 41
			gender = female
			dynasty = none
			stewardship = 6
			learning = 5
			intrigue = 11
			diplomacy = 8
			martial = 12
			prowess = 10
			faith = faith:innocence
			culture = culture:malay # Replace with Malay
			trait = education_martial_2
			trait = lifestyle_blademaster
			trait = reckless
			trait = beauty_good_2
			trait = vengeful
			trait = brave
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_bitter_queen
				add_trait_xp = {
					trait = reckless
					value = 40
				}
				add_trait_xp = {
					trait = lifestyle_blademaster
					value = 45
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_tun_fatimah
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0273 = { # spawn in Indonesia at 1615
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0273.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0273.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = personality_honorable
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Laksamana_Malahayati"
			age = 65
			gender = female
			dynasty = none
			stewardship = 6
			learning = 7
			intrigue = 8
			diplomacy = 18
			martial = 10
			prowess = 15
			faith = faith:innocence
			culture = culture:malay # Replace with Malay
			trait = education_martial_4
			trait = forder
			trait = aggressive_attacker
			trait = vengeful
			trait = brave
			trait = callous
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_inong_balee
				add_trait_xp = {
					trait = forder
					value = 35
				}
				add_trait_xp = {
					trait = aggressive_attacker
					value = 33
				}
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_laksamna_malahayati
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

podgreatpersons.0274 = { # spawn in China at 1231
	type = character_event
	content_source = dlc_POD
	title = podgreatpersons.0274.t
	desc = {
		first_valid = {
			triggered_desc = {
				trigger = { POD_show_generic_gp_event_text = yes }
				desc = podgreatpersons.0001.generic
			}
			triggered_desc = {
				desc = podgreatpersons.0274.desc
			}
		}
	}
	theme = greatperson
	left_portrait = {
		character = scope:greatperson
		animation = storyteller
	}
	
	trigger = {
	}
	
	immediate = {
		create_character = {
			name = "Zhao_Rukuo"
			age = 61
			gender = male
			dynasty = none
			stewardship = 10
			learning = 6
			intrigue = 8
			diplomacy = 6
			martial = 6
			prowess = 5
			faith = faith:innocence
			culture = culture:han 
			trait = education_learning_4
			trait = intellect_good_1
			trait = diligent
			trait = content
			trait = patient
			trait = mortal
			random_traits = no
			location = root.capital_province
			save_scope_as = greatperson
			after_creation = {
				POD_set_resonance_effect = yes
				give_nickname = nick_the_great_ethnographer
			}
		}
		
		scope:greatperson = {
			#POD_clear_resonance_effect = yes
			POD_flag_as_great_person = yes
		}
		if = {
			limit = {
				has_ep1_dlc_trigger = yes
			}
			scope:greatperson = {
					create_inspiration = book_inspiration
			}
		}
	
		add_to_global_variable_list = {
			name = special_character_list
			target = flag:spawned_gp_zhao_rukuo
		}
		play_music_cue = "mx_cue_positive_effect"
	}
	
	option = {
		name = podgreatpersons.0001.a
		
		POD_invite_gp_for_gold = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.b
		
		POD_invite_gp_for_prestige = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.c
		
		POD_gp_gets_embraced_by_neighbor = yes
		
		ai_chance = {
			base = 0
		}
	}
	
	option = {
		name = podgreatpersons.0001.d
		
		trigger = {
			is_ai = yes
		}
		
		POD_gp_auto_embrace_option_for_ai = yes
		
		ai_chance = {
			base = 100
		}
	}
}

