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.1 威克里夫与罗拉德派兴起

时间范围:1385年1月1日 - 1410年1月1日,每月有5%概率触发。

触发条件

  • 国家宗教为天主教 (religion = religion:catholic)。
  • 拥有至少5个非农村地区 (num_of_non_rural >= 5)。
  • 至少拥有一个核心省份,且该省份满足 location_eng_1_trigger 条件 (any_core_location = { location_eng_1_trigger = yes })。

关键效果

  • 选项 A (历史选项)
    • 罗拉德派 (religion:lollardy) 与天主教 (religion:catholic) 互相将对方视为敌人 (value = enemy)。
    • 教宗国 (c:PAP) 将对我国产生负面看法 (add_opinion,修饰符 eng_opposes_lollards)。
    • 人物约翰·威克里夫 (scope:john_wycliffe) 加入我国 (move_country = root)。
  • 选项 B
    • 天主教增加大量改革意愿 (add_reform_desire = reform_desire_extreme_increase)。
    • 所有天主教国家中,王国 (country_rank:rank_kingdom)、帝国 (country_rank:rank_empire) 等级的国家以及教宗国 (tag = PAP) 将对我国产生负面看法 (add_opinion,修饰符 eng_tolerates_lollards)。
    • 人物约翰·威克里夫 (scope:john_wycliffe) 加入我国 (move_country = root)。

背景介绍: 该事件模拟了14世纪末至15世纪初,英国神学家约翰·威克里夫及其追随者罗拉德派兴起的历程。威克里夫批判教会腐败,主张《圣经》权威高于教宗,并支持将《圣经》翻译成英文。他的思想在英国社会,特别是知识分子和部分教士中传播,挑战了天主教会的正统地位,为后来的宗教改革埋下了伏笔。

完整事件代码

flavor_eng.1 = {
	type = country_event
	fire_only_once = yes
	title = flavor_eng.1.title
	desc = flavor_eng.1.desc
	historical_info = flavor_eng.1.historical_info

	illustration_tags = {
		10 = exterior
		10 = angry
	}

	dynamic_historical_event = {
		tag = ENG
        tag = GBR
		from = 1385.1.1
		to = 1410.1.1
		monthly_chance = 5
	}

	trigger = {
		religion = religion:catholic
		num_of_non_rural >= 5
		any_core_location = {
			location_eng_1_trigger = yes
		}

	}

	immediate = {
		event_illustration_estate_effect = { foreground = estate_type:clergy_estate background = estate_type:clergy_estate }
		religion:lollardy = {
			enable_religion = yes
		}

		if = {
			limit = {
				location:oxford = {
					owner ?= root
					is_core_of = root
					location_eng_1_trigger = yes
				}
			}
			location:oxford = {
				save_scope_as = target_location
			}
		}
		else = {
			random_core_location = {
				limit = { location_eng_1_trigger = yes }
				save_scope_as = target_location
			}
		}

		scope:target_location = {
			every_pop = {
				limit = {
					owner = root
					pop_type = pop_type:clergy
					religion = religion:catholic
					culture = root.culture
				}
				change_pop_religion = religion:lollardy
			}
		}

		every_owned_location = {
			limit = { region = region:great_britain_region }
			every_pop = {
				limit = {
					owner = root
					religion = religion:catholic
					dialect = dialect:english_dialect
				}
				split_pop = {
					fraction = {
						value = 0
						add = {
							value = 1
							subtract = pop_satisfaction
							multiply = 0.5
						}
						add = {
							value = location.development
							divide = 100 # scale is 0 to 100
							multiply = 0.5
						}
						add = {
							value = pop_literacy
							divide = 100 # scale is 0 to 100
							multiply = 0.5
						}
						add = { -0.6 0.2 }
					}
					religion = religion:lollardy
				}
			}
		}

		if = {
			limit = {
				religion:hussite = {
					is_religion_enabled = yes
				}
			}
			religion:lollardy = {
				set_religious_view = {
					target = religion:hussite
					value = positive
				}
			}
			religion:hussite = {
				set_religious_view = {
					target = religion:lollardy
					value = positive
				}
			}
		}

		create_character = {
			first_name = name_john
			last_name = Wycliffe
			adm = { 33 100 }
			dip = { 33 100 }
			mil = { 50 100 }
			birth_date = 1328
			birth_location = location:richmond # Hipswell
			culture = culture:northumbrian
			religion = religion:lollardy
			artist_skill = 0.75
			artist = philosopher
			estate = estate_type:clergy_estate
			script = eng_john_wycliffe
			save_scope_as = john_wycliffe
			create_in_limbo = yes

		}

		root = { save_scope_as = target_root_country }

	}

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

		custom_tooltip = lots_of_lollards

		c:PAP ?= {
			add_opinion = {
				target = root
				modifier = eng_opposes_lollards
			}
		}

		religion:lollardy = {
			set_religious_view = {
				target = religion:catholic
				value = enemy
			}
		}

		religion:catholic = {
			set_religious_view = {
				target = religion:lollardy
				value = enemy
			}
		}

		scope:john_wycliffe = { move_country = root }
		custom_tooltip = flavor_eng.1.tt2

	}

	option = {
		name = flavor_eng.1.b

		custom_tooltip = lots_of_lollards

		religion:catholic = {
			add_reform_desire = reform_desire_extreme_increase
			every_country_in_religion = {
				limit = {
					this != root
					OR = {
						country_rank = country_rank:rank_kingdom
						country_rank = country_rank:rank_empire
						tag = PAP
					}
				}
				add_opinion = {
					target = root
					modifier = eng_tolerates_lollards
				}
			}
		}

		scope:john_wycliffe = { move_country = root }
		custom_tooltip = flavor_eng.1.tt3

	}
}