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_sco.17 罗伯特·彭斯

时间范围:1770.1.1 - 1800.1.1(每月 2% 概率)

触发条件

  • 国家拥有至少 2 个地块。
  • 国家拥有艾尔(Ayr)地区,且该地区存在文化为苏格兰(Scottish)的农民(Peasants)人口。
  • 加勒比(Caribbean)地区存在至少一个满足 sco_17_location_trigger 条件的地块。

关键效果

  • 选项 A (flavor_sco.17.a)

    • destination 地点,由罗伯特·彭斯创作一件质量为 75 的诗歌艺术作品,其唯一标识为 robert_burns_poems_chiefly_in_the_scottish_dialect
  • 选项 B (flavor_sco.17.b)

    • destination 地点,由罗伯特·彭斯创作三件诗歌艺术作品:
      1. 质量为 75,唯一标识为 robert_burns_poems_chiefly_in_the_scottish_dialect
      2. 质量为 60。
      3. 质量为 50。
    • 将罗伯特·彭斯迁移至加勒比地区中一个满足 sco_17_location_trigger 条件的地块所属的国家。
    • 国家黄金减少 6。

背景介绍: 罗伯特·彭斯是苏格兰的民族诗人,以其用苏格兰方言创作的诗歌而闻名,这些作品深刻反映了18世纪苏格兰普通民众的生活、情感与民族精神。本事件模拟了这位伟大诗人的诞生及其艺术创作对国家文化的影响,同时也反映了当时苏格兰与加勒比殖民地之间可能存在的联系。

完整事件代码

flavor_sco.17 = { # Robert Burns
	hide_portraits = yes
	type = country_event
	title = flavor_sco.17.title
	desc = flavor_sco.17.desc

	dynamic_historical_event = {
		tag = SCO
		tag = GBR
		from = 1770.1.1
		to = 1800.1.1
		monthly_chance = 2
	}

	fire_only_once = yes

	trigger = {
		any_owned_location = { count >= 2 }
		location:ayr = {
			owner ?= root
			any_pop = {
				pop_type = pop_type:peasants
				culture = culture:scottish
			}
		}
		region:caribbean_region = {
			any_location_in_region = {
				sco_17_location_trigger = yes
			}
		}
	}

	illustration_tags = {
        10 = regular
        10 = interior
    }

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:peasants_estate background = estate_type:peasants_estate }
		region:caribbean_region = {
			save_scope_as = west_indies
		}
		random_owned_location = {
			limit = { this = location:ayr }
			save_scope_as = origin
		}
		create_character = {
			first_name = name_robert
			last_name = name_burns
			female = no
			artist = writer
			artist_skill = 0.85
			culture = culture:scottish
			birth_location = scope:origin
			religion = scope:origin.dominant_religion
			birth_date = 1759.1.25
			save_scope_as = burns
			estate = estate_type:peasants_estate
		}
		if = {
			limit = {
				location:edinburgh = {
					owner ?= root
				}
			}
			location:edinburgh = { save_scope_as = destination }
		}
		else_if = {
			limit = {
				any_owned_location = {
					NOT = { this = scope:origin }
					is_core_of = root
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
				}
			}
			random_owned_location = {
				limit = {
					NOT = { this = scope:origin }
					is_core_of = root
					OR = {
						location_rank = location_rank:town
						location_rank = location_rank:city
					}
				}
				save_scope_as = destination
			}
		}
		else = {
			random_owned_location = {
				limit = {
					NOT = { this = scope:origin }
				}
				save_scope_as = destination
			}
		}
	}

	option = {
		name = flavor_sco.17.a

		scope:origin = {
			create_art = {
				artist = scope:burns
				quality = 75
				location = scope:destination
				type = work_of_art_type:poem
				key = robert_burns_poems_chiefly_in_the_scottish_dialect
			}
		}
	}

	option = {
		name = flavor_sco.17.b

		scope:origin = {
			create_art = {
				artist = scope:burns
				quality = 75
				location = scope:destination
				type = work_of_art_type:poem
				key = robert_burns_poems_chiefly_in_the_scottish_dialect
			}
			create_art = {
				artist = scope:burns
				quality = 60
				location = scope:destination
				type = work_of_art_type:poem
			}
			create_art = {
				artist = scope:burns
				quality = 50
				location = scope:destination
				type = work_of_art_type:poem
			}
		}

		scope:west_indies = {
			random_location_in_region = {
				limit = {
					sco_17_location_trigger = yes
				}
				owner ?= {
					scope:burns = { move_country = prev }
				}
			}
		}

		change_gold_effect = { scale = -6 }
	}
}