add_namespace = czd_land

# ==========================================
# 第一幕：法令颁布 (震惊与怀疑)
# ==========================================
country_event = {
	id = czd_land.1
	title = czd_land.1.t
	desc = czd_land.1.d
	picture = GFX_report_event_communist_propaganda
	
	is_triggered_only = yes
	
	option = {
		name = czd_land.1.a
		add_political_power = 20
		# 20天后进入第二幕
		country_event = { id = czd_land.2 days = 20 }
	}
}

# ==========================================
# 第二幕 (新增)：插上木桩 (确权与尊严)
# ==========================================
country_event = {
	id = czd_land.2
	title = czd_land.2.t
	desc = czd_land.2.d
	picture = GFX_report_event_gathering_party # 或者是农民在田间
	
	is_triggered_only = yes
	
	option = {
		name = czd_land.2.a
		# 获得人力 (农民开始支持政权)
		add_manpower = 2000
		add_stability = 0.05
		# 20天后进入第三幕
		country_event = { id = czd_land.3 days = 20 }
	}
}

# ==========================================
# 第三幕 (原第二幕)：焚烧地契 (彻底决裂)
# ==========================================
country_event = {
	id = czd_land.3
	title = czd_land.3.t
	desc = czd_land.3.d
	picture = GFX_report_event_fire # 火灾或篝火图
	
	is_triggered_only = yes
	
	option = {
		name = czd_land.3.a
		# 获得更多人力
		add_manpower = 3000
		# 20天后进入第四幕
		country_event = { id = czd_land.4 days = 20 }
	}
}

# ==========================================
# 第四幕 (新增)：春耕的歌声 (为自己劳动)
# ==========================================
country_event = {
	id = czd_land.4
	title = czd_land.4.t
	desc = czd_land.4.d
	picture = GFX_report_event_famine_farmers # 或者是耕作图
	
	is_triggered_only = yes
	
	option = {
		name = czd_land.4.a
		# 生产效率提升 (工农积极性)
		add_production_efficiency_cap_factor = 0.05
		# 20天后进入终章
		country_event = { id = czd_land.5 days = 20 }
	}
}

# ==========================================
# 第五幕 ：白米饭 (生存的实感)
# ==========================================
country_event = {
	id = czd_land.5
	title = czd_land.5.t
	desc = czd_land.5.d
	picture = GFX_report_event_korean_family # 或者是吃饭图
	
	is_triggered_only = yes
	
	option = {
		name = czd_land.5.a
		add_stability = 0.10
		add_war_support = 0.10
		# 完美结局
	}
}