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_usa.4 常识的出版

时间范围
1760.1.1 - 游戏结束(无明确结束日期,current_year >= 1760 触发)
触发概率
一次性事件(fire_only_once = yes),满足条件后触发,无月度概率。

触发条件

  • 国家处于“殖民地革命”局势(is_situation_active = situation:colonial_revolution)。
  • 当前年份 ≥ 1760年(current_year >= 1760)。
  • 国家主流文化属于不列颠文化组(culture_group:british_group)。
  • 国家不是附庸国(is_subject = no)。
  • 国家首都存在(exists = capital)。
  • 首都位于东海岸地区(capital.region = region:east_coast_region)。

关键效果

  • 选项:flavor_usa.4.a
    • 增加政府权力(add_government_power = government_power_mild_bonus)。
    • 增加威望(add_prestige = prestige_mild_bonus)。
    • 历史选项:若人物“托马斯·潘恩”(character:eng_thomas_paine)存在、存活且为国家所有,则:
      • 提升该人物艺术家技能0.1点(add_artist_skill = 0.1)。
      • 在首都创建一件艺术品:
        • 艺术家:托马斯·潘恩(artist = scope:target_artist)。
        • 品质:90(quality = 90)。
        • 类型:论文(type = work_of_art_type:treatise)。
        • 关键标识:common_sense

背景介绍
该事件模拟了托马斯·潘恩于1776年1月出版的政治宣传册《常识》的历史时刻。这本小册子以通俗的语言论证了北美殖民地独立的正当性,批判了君主世袭制,极大地鼓舞了殖民地民众的革命热情,为美国独立战争的爆发提供了重要的思想动员。

完整事件代码

flavor_usa.4 = {
	hide_portraits = yes
	type = country_event
	title = flavor_usa.4.title
	desc = flavor_usa.4.desc

	fire_only_once = yes

	illustration_tags = {
		10 = regular
		10 = interior
	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:nobles_estate background = estate_type:nobles_estate }

		character:eng_thomas_paine ?= {
			save_scope_as = target_artist
		}
	}

	trigger = {
		is_situation_active = situation:colonial_revolution
		current_year >= 1760
		culture = {
			has_culture_group = culture_group:british_group
		}
		is_subject = no
		exists = capital
		capital.region = region:east_coast_region

		
	}

	option = {
		name = flavor_usa.4.a

		add_government_power = government_power_mild_bonus
		add_prestige = prestige_mild_bonus

		if = {
			limit = {
				exists = scope:target_artist
				scope:target_artist = {
					is_alive = yes
					owner = root
				}
			}
			scope:target_artist = {
				add_artist_skill = 0.1
			}
			capital = {
				create_art = {
					artist = scope:target_artist
					quality = 90
					type = work_of_art_type:treatise
					key = common_sense
				}
			}
		}
	}
}