Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

flavor_chi.22 郑和登场

时间范围:1390.5.5 - 1435.12.30(每月 1% 概率触发)

触发条件

  • 国家未处于战争状态 (at_war = no)
  • 国家未处于破产状态 (is_during_bankruptcy = no)

关键效果

  • 选项 A (flavor_chi.22.a)
    • 将创建的郑和人物移动至本国。
    • 减少金钱(规模系数 -3)。
    • 增加少量天命值 (celestial_authority_very_weak_bonus)。
    • 若允许和谐度,则增加少量和谐度 (harmony_weak_bonus)。
  • 选项 B (flavor_chi.22.b)
    • 减少大量威望 (prestige_extreme_penalty)。
    • 减少少量天命值 (celestial_authority_weak_penalty)。
    • 若允许和谐度,则减少少量和谐度 (harmony_weak_penalty)。
    • 若允许正义度,则减少少量正义度 (righteousness_weak_penalty)。

背景介绍: 该事件模拟了明朝著名航海家、外交官郑和登上历史舞台的契机。郑和原姓马,云南昆阳人,回族,穆斯林。他在明成祖朱棣时期受命率领庞大的宝船队七下西洋,远达东非,促进了明朝与沿途各国的贸易和文化交流,展现了明朝鼎盛时期的海上实力与外交雄心。事件反映了明朝在永乐年间推动大规模航海探索的决策点。

完整事件代码

flavor_chi.22 = {	#Zheng He
	type = country_event
	title = flavor_chi.22.title
	desc = flavor_chi.22.desc
	fire_only_once = yes
	dynamic_historical_event = {
		tag = CHI
		from = 1390.5.5
		to = 1435.12.30
		monthly_chance = 1
	}
	trigger = {
		at_war = no
		is_during_bankruptcy = no
	}

	illustration_tags = {
		10 = regular
		10 = exterior
	}

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		create_character = {
			first_name = name_he
			last_name = name_zheng
			trait_category = explorer
			add_trait = trait:eunuch
			adm = {
				value = { 60 90 }
				if = {
					limit = {
						international_organization:middle_kingdom.leader_country = root
						international_organization:middle_kingdom = {
							international_organization_has_policy = policy:new_keju_formats_policy
						}
					}
					add = { value = 10 }
				}
			}
			dip = {
				value = { 60 90 }
				if = {
					limit = {
						international_organization:middle_kingdom.leader_country = root
						international_organization:middle_kingdom = {
							international_organization_has_policy = policy:new_keju_formats_policy
						}
					}
					add = { value = 10 }
				}
			}
			mil = {
				value = { 60 90 }
				if = {
					limit = {
						international_organization:middle_kingdom.leader_country = root
						international_organization:middle_kingdom = {
							international_organization_has_policy = policy:new_keju_formats_policy
						}
					}
					add = { value = 10 }
				}
			}
			birth_date = 1371.6.1
			birth_location = location:kunming
			estate = estate_type:peasants_estate
			culture = culture:hui_muslim_culture
			religion = religion:sunni
			create_in_limbo = yes
			save_scope_as = target_character
			script = chi_zheng_he
		}
		ruler_or_regent ?= { save_scope_as = target_character2 }
	}

	option = {
		name = flavor_chi.22.a

		scope:target_character = {
			move_country = root
		}
		change_gold_effect = { scale = -3 }
		change_celestial_authority = { value = celestial_authority_very_weak_bonus }
		if = {
			limit = { modifier:allow_harmony = yes }
			add_harmony = harmony_weak_bonus
		}
	}

	option = {
		name = flavor_chi.22.b

		add_prestige = prestige_extreme_penalty
		change_celestial_authority = { value = celestial_authority_weak_penalty }
		if = {
			limit = { modifier:allow_harmony = yes }
			add_harmony = harmony_weak_penalty
		}
		if = {
			limit = { modifier:allow_righteousness = yes }
			add_righteousness = righteousness_weak_penalty
		}
	}
}