• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
Showing developer posts only. Show all posts in this thread.
Sute]{h said:
A major obstacle I hope VV solves is the gender issue. The default gender settings of Rome only really matches the western part of creation in the Exalted setting. However this is really outside the scope of modding unless Paradox decides to open the door for modding in female rulers and commanders.

Now what do we have here...

Code:
title_general = {
	allow = {
		is_female = no
		age = 18
		in_command = no
		is_governor = no
		has_tech_office = no
		OR = {
			country = { government = monarchy }
			country = { government = tribal }
			is_ruler = yes
			has_title = title_ex_general
			has_title = title_ex_ruler
			has_title = title_pro_ruler
			has_title = title_ex_civic_tech
			has_title = title_pro_civic_tech
			has_title = title_ex_censor
		}
	}
	lose_trigger = {
		is_general = no
		prisoner = yes
	}
	gain_effect = {
		loyalty = 20
		family_prestige = 1
	}
	dismissal_trigger = {
		NOT = { title_general = full_term }
	}
	dismissal_effect = {
		loyalty = -30
		family_prestige = -1
		give_title = title_ex_general
	}
	lose_effect = {
		give_title = title_ex_general
	}
	monthly_character_wealth = 0.5
	prominence = 30
	monthly_character_prominence = 0.25
	military_conviction = 10
	monthly_military_conviction = 1
}

In titles.txt, so you can mod away to your hearts content.