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_eng.225 托马斯·潘恩的激进思想

时间范围

1780.1.1 - 1800.1.1,每月有 10% 的概率触发。

触发条件

  • 人物 托马斯·潘恩 (eng_thomas_paine) 必须存活。
  • 国家政府类型必须是 君主制 (government_type:monarchy)
  • 满足以下条件之一:
    • 拥有 议会制度 (modifier:has_a_parliamentary_system)
    • 社会价值:贵族 vs 财阀 (societal_value:aristocracy_vs_plutocracy) 的值既 不高于 40,也 不低于 -40

关键效果

选项 A (历史选项)

  • 名称: flavor_eng.225.a
  • 核心结果:
    • 将人物 托马斯·潘恩 移居至一个随机选定的西欧国家 (target_country)。
    • 在大不列颠地区 (region:great_britain_region) 内,所有由本国 (root) 控制的省份中,所有 农民阶层 (pop_type:peasants) 的满意度将受到 极端惩罚 (pop_satisfaction_ultimate_penalty)
    • 国家 稳定度 受到 轻微惩罚 (stability_weak_penalty)
    • 国家 政府力量 受到 严重惩罚 (government_power_severe_penalty)

选项 B

  • 名称: flavor_eng.225.b
  • 核心结果:
    • 贵族阶层 (estate_type:nobles_estate)市民阶层 (estate_type:burghers_estate) 的满意度受到 严重惩罚 (estate_satisfaction_severe_penalty)
    • 国家 政府力量 获得 轻微增益 (government_power_mild_bonus)
    • 启用 代议制议会改革,设置变量 representative_government = 1

背景介绍

该事件模拟了18世纪末,美国独立战争与法国大革命思想背景下,英国激进思想家托马斯·潘恩(《常识》、《人的权利》作者)对君主制国家可能造成的冲击。潘恩的共和主义与民主思想挑战了传统君主与贵族权威,可能在国内引发农民阶层的不满,或迫使政府进行宪政改革以安抚精英阶层。

完整事件代码

flavor_eng.225 = {
	type = country_event

	fire_only_once = yes

	title = flavor_eng.225.title
	desc = flavor_eng.225.desc

	dynamic_historical_event = {
		tag = ENG
		tag = GBR
		from = 1780.1.1
		to = 1800.1.1
		monthly_chance = 10
	}

	trigger = {

		character:eng_thomas_paine ?= { is_alive = yes }

		government_type = government_type:monarchy

		OR = {
			modifier:has_a_parliamentary_system = yes
			NOR = {
				societal_value:aristocracy_vs_plutocracy >= 40
				societal_value:aristocracy_vs_plutocracy <= -40
			}
		}

	}
	illustration_tags = {
		10 = angry
		10 = exterior
	}
	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		capital = { save_scope_as = target_location }

		character:eng_thomas_paine ?= { save_scope_as = thomas_paine }

		character:eng_thomas_paine ?= {
			if = {
				limit = {
					NOT = { owner = root }
				}
				character:eng_thomas_paine ?= { move_country = root }
			}
		}

		sub_continent:western_europe = {
			random_location_in_sub_continent = {
				limit = {
					has_owner = yes
					NOT = { owner ?= root }
				}
				owner = {
					save_scope_as = target_country
				}
			}
		}

		root = { save_scope_as = target_root_country }

	}

	option = {
		name = flavor_eng.225.a
		historical_option = yes

		scope:target_country = {
			character:eng_thomas_paine ?= { move_country = prev }
		}

		custom_tooltip = flavor_eng.225.tt1

		custom_tooltip = {
			text = flavor_eng.225.a.custom
			region:great_britain_region = {
				every_location_in_region = {
					limit = {
						owner ?= root
					}
					every_pop = {
						limit = {
							owner = root
							pop_type = pop_type:peasants
						}
						add_pop_satisfaction = pop_satisfaction_ultimate_penalty
					}
				}
			}
		}

		add_stability = stability_weak_penalty

		add_government_power = government_power_severe_penalty

	}

	option = {
		name = flavor_eng.225.b

		add_estate_satisfaction = { type = estate_type:nobles_estate value = estate_satisfaction_severe_penalty }
		add_estate_satisfaction = { type = estate_type:burghers_estate value = estate_satisfaction_severe_penalty }

		add_government_power = government_power_mild_bonus

		custom_tooltip = {
			text = enable_representative_parliament_reform
			set_variable = { name = representative_government value = 1 }
		}

		custom_tooltip = flavor_eng.225.tt2

	}

	historical_info = flavor_eng.225.historical_info

}