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_rus.69 亚历山大·普希金与《自由颂》

时间范围:1815.1.1 - 1840.1.1(每月 5% 概率触发)

触发条件

  • 人物 rus_alexander_pushkin 必须存活。
  • 国家政策为 absolute_rule_policy 政府改革为 government_reform:autocracy
  • 省份 moscow 的所有者与控制者均为触发国(俄罗斯)。

关键效果

  • 选项 A (历史选项)

    • moscow 创建一件艺术作品:
      • 类型:诗歌 (work_of_art_type:poem)
      • 关键标识:ode_to_liberty
      • 质量:90
      • 艺术家:亚历山大·普希金
    • 为亚历山大·普希金:
      • 增加 0.03 艺术家技能。
      • 添加 exiled 人物修正,持续时间为 -1 年(模式为 add_and_extend)。
    • 若国家拥有 strict_censorship 政策:
      • 增加少量政府权力惩罚 (government_power_mild_penalty)。
    • 否则:
      • 增加严重政府权力惩罚 (government_power_severe_penalty)。
    • 社会价值观 serfdom_vs_free_subjects 向左移动 (societal_value_move_to_left)。
    • AI 选择权重因子:1。
  • 选项 B

    • moscow 创建与选项 A 相同的艺术作品。
    • 为亚历山大·普希金增加 0.03 艺术家技能。
    • 社会价值观 serfdom_vs_free_subjects 向右移动 (societal_value_move_to_right)。
    • 社会价值观 spiritualist_vs_humanist 向右移动 (societal_value_move_to_right)。
    • 稳定性遭受严重惩罚 (stability_severe_penalty)。
    • AI 选择权重因子:0.5。
  • 选项 C

    • 触发前提:国家拥有 secretnoye_byuro_policy 政策,且 moscow 至少拥有一级 printing_press_shop 建筑。
    • 秘密处决亚历山大·普希金 (kill_character_silently)。
    • 摧毁 moscowprinting_press_shop 建筑。
    • AI 选择权重因子:0.5。

背景介绍: 该事件模拟了沙皇俄国时期,著名诗人亚历山大·普希金创作具有自由思想诗歌《自由颂》的历史情境。在专制统治与严格审查制度下,此类作品的传播可能引发政府的不同反应,从默许、压制到严厉镇压,反映了当时知识分子与政权之间的紧张关系,以及社会价值观(如农奴制与自由、灵性与人文主义)的潜在冲突。

完整事件代码

flavor_rus.69 = {
	type = country_event
	title = flavor_rus.69.title
	desc = flavor_rus.69.desc
	image = "gfx/interface/illustrations/institutions/printing_press.dds"

	fire_only_once = yes
	dynamic_historical_event = {
		tag = RUS
		from = 1815.1.1
		to = 1840.1.1
		monthly_chance = 5
	}

	trigger = {

		character:rus_alexander_pushkin ?= {
			is_alive = yes
		}

		OR = {
			has_policy = absolute_rule_policy
			has_reform = government_reform:autocracy
		}

		location:moscow = {
			owner = root
			controller = root
		}

	}

	immediate = {

		character:rus_alexander_pushkin ?= {
			save_scope_as = alexander_pushkin
		}

		location:moscow = {
			save_scope_as = target_location
		}

	}

	option = {
		name = flavor_rus.69.a
		historical_option = yes

		location:moscow = {
			create_art = {
				quality = 90
				artist = scope:alexander_pushkin
				type = work_of_art_type:poem
				key = ode_to_liberty
			}
		}

		scope:alexander_pushkin = {
			add_artist_skill = 0.03
			add_character_modifier = {
				modifier = exiled
				years = -1
				mode = add_and_extend
			}
		}

		if = {
			limit = {
				has_policy = strict_censorship
			}
			add_government_power = government_power_mild_penalty
			custom_tooltip = flavor_rus.69.tt1
		}
		else = {
			add_government_power = government_power_severe_penalty
		}

		change_societal_value = {
			type = serfdom_vs_free_subjects
			value = societal_value_move_to_left
		}

		ai_chance = {
			factor = 1
		}

	}

	option = {
		name = flavor_rus.69.b

		location:moscow = {
			create_art = {
				quality = 90
				artist = scope:alexander_pushkin
				type = work_of_art_type:poem
				key = ode_to_liberty
			}
		}

		scope:alexander_pushkin = {
			add_artist_skill = 0.03
		}

		change_societal_value = {
			type = serfdom_vs_free_subjects
			value = societal_value_move_to_right
		}

		change_societal_value = {
			type = spiritualist_vs_humanist
			value = societal_value_move_to_right
		}

		add_stability = stability_severe_penalty

		custom_tooltip = flavor_rus.69.tt2

		ai_chance = {
			factor = 0.5
		}

	}

	option = {
		name = flavor_rus.69.c
		trigger = {
			has_policy = secretnoye_byuro_policy
			location:moscow = {
				has_building_with_at_least_one_level = printing_press_shop
			}
		}

		hidden_effect = { kill_character_silently = scope:alexander_pushkin }

		location:moscow = {
			destroy_building = "building(building_type:printing_press_shop|owner)"
		}

		custom_tooltip = flavor_rus.69.tt3

		ai_chance = {
			factor = 0.5
		}

	}

	historical_info = flavor_rus.69.historical_info

}