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_kni.9] 罗德岛防御工事

时间范围

1450.1.1 - 1500.1.1,每月有 5% 的概率触发。

触发条件

  • 国家标签为 KNI(医院骑士团)。
  • 拥有省份 罗德岛(location:rodos)
  • 罗德岛上至少存在一个属于 防御类别(defense_category) 的建筑。

关键效果

选项 A:flavor_kni.9.a

  • 历史选项:是。
  • 在罗德岛(target_location)上增加 少量发展度(development_weak_bonus)
  • 扣除金币,数额为 罗德岛基础税收的 6 倍
  • 增加 少量威望(prestige_mild_bonus)
  • 使社会价值观 进攻 vs 防御(offensive_vs_defensive)右侧(进攻) 移动。

选项 B:flavor_kni.9.b

  • 使社会价值观 进攻 vs 防御(offensive_vs_defensive)左侧(防御) 移动。
  • 增加 少量陆军传统(army_tradition_weak_bonus)

背景介绍

1453年君士坦丁堡陷落后,医院骑士团控制的罗德岛成为东地中海抵御奥斯曼帝国扩张的关键前哨。该事件反映了骑士团在罗德岛强化防御工事后,面临的发展抉择:是投入更多资源巩固防御、发展岛屿,还是将重心转向更具进攻性的军事策略以应对持续的威胁。

完整事件代码

flavor_kni.9 = {
	type = country_event
	title = flavor_kni.9.title
	desc = flavor_kni.9.desc
	fire_only_once = yes
	
	dynamic_historical_event = {
		tag = KNI
		from = 1450.1.1
		to = 1500.1.1
		monthly_chance = 5
	}

	trigger = {
		owns = location:rodos
		location:rodos = {
			any_buildings_in_location = {
				building_category = defense_category
			}
		}
	}

	illustration_tags = {
        10 = regular
        10 = exterior
    }

	immediate = {
		event_illustration_poptype_effect = { foreground = pop_type:soldiers background = pop_type:soldiers }
		location:rodos = {
			save_scope_as = target_location
		}
	}

	option = {
		name = flavor_kni.9.a

		historical_option = yes
		scope:target_location = {
			change_development = development_weak_bonus
		}
		add_gold = { value = scope:target_location.location_tax_base multiply = -6 }
		add_prestige = prestige_mild_bonus
		change_societal_value = { type = offensive_vs_defensive value = societal_value_move_to_right }
	}

	option = {
		name = flavor_kni.9.b

		change_societal_value = { type = offensive_vs_defensive value = societal_value_move_to_left }
		add_army_tradition = army_tradition_weak_bonus
	}
}