﻿# Force convert
# Converts county to Regula on finish
# Returns less loot, but adds a little prestige and some piety
# Much slower to raid (similar to raze)
regula_force_convert_intent = {
	on_return_raid_loot = {
		scope:raider = {
			send_interface_message = {
				type = event_raid_good
				title = raiding.0011.t

				right_icon = root.army_commander
				add_gold = {
					value = scope:raid_loot
					multiply = 0.25
				}
				add_prestige = {
					value = scope:raid_loot
					multiply = 0.25
				}
				add_piety = scope:raid_loot
			}
		}
	}

	modifier = { 
		raid_speed = -0.3
	}

	ai_will_do = {
		value = 100
		if = {
			limit = {
				has_trait = zealous
			}
			multiply = 5
		}
	}

	is_shown = {
		is_regula_trigger = yes
	}
}