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.14] 国家银行建立

时间范围
该事件为一次性事件,无具体起止日期。触发后仅发生一次。

触发条件

  • 当前国家处于“殖民革命”局势(situation:colonial_revolution)中
  • 国家主流文化属于不列颠文化组(culture_group:british_group
  • 国家不是附庸国(is_subject = no
  • 国家拥有首都(exists = capital
  • 首都位于东海岸地区(region:east_coast_region

关键效果

  • 选项 Aflavor_usa.14.a):
    在首都(target_location)建造一座“美国国家银行”建筑(building_type:usa_national_bank)。

  • 选项 Bflavor_usa.14.b):
    将社会价值观“资本经济 vs 传统经济”(capital_economy_vs_traditional_economy)向右移动(societal_value_move_to_right)。

背景介绍
在殖民革命时期,新兴国家面临建立稳定金融体系的关键抉择。是选择建立国家银行以规范货币与信贷,还是推动社会价值观向资本经济倾斜,以不同的方式奠定国家经济基础。

完整事件代码

flavor_usa.14 = {
	type = country_event
	title = flavor_usa.14.title
	desc = flavor_usa.14.desc

	fire_only_once = yes

	illustration_tags = {
		10 = regular
		10 = interior
	}

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

		capital = {
			save_scope_as = target_location
		}
	}

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

	option = {
		name = flavor_usa.14.a

		scope:target_location = {
			construct_building = {
				building_type = building_type:usa_national_bank
			}
		}
	}
	option = {
		name = flavor_usa.14.b

		change_societal_value = { type = capital_economy_vs_traditional_economy value = societal_value_move_to_right }
	}
}