namespace=HF

#Time has passed, ruler is believed to have actually been a Dragon.
province_event = {
	id = HF.24233
	hide_window = yes
	is_triggered_only = yes

	immediate = {
		if = {
			limit = { has_alternate_start_parameter = { key = special_culture value = animal_kingdoms } }
			FROM = { 
				set_graphical_culture = dragon_culture
				culture = dragon_culture
			}
		}
		else = {
			FROM = { 
				set_graphical_culture = dragon_fantasy
				culture = dragon_fantasy
			}
		}
	}
}

#Executing people by (dragon) burning.
character_event = {
	id = HF.24234
	desc = EVTDESCHF24234
	picture = GFX_evt_burning_man_hf
	border = GFX_event_normal_frame_intrigue
	
	is_triggered_only = yes
	
	option = {
		name = EVTOPTAHF24234
	}
}

# Killed by (dragon) burning.
character_event = {
	id = HF.24235
	desc = EVTDESCHF24235
	picture = GFX_evt_burning_man_hf
	border = GFX_event_normal_frame_intrigue
	
	is_triggered_only = yes
	
	option = {
		name = EVTOPTAHF24235
		if = {
			limit = {
				FROMFROM = {
					OR = {
						culture = dragon_culture #Animal World.
						culture = dragon_fantasy #Fantasy World.
					}
				}
			}
			death = {
				death_reason = death_execution_burning_personal
				killer = FROMFROM
			}
		}
		else = {
			death = {
				death_reason = death_execution_burning
				killer = FROMFROM
			}
		}
	}
}