• 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.

unmerged(28270)

Private
Apr 24, 2004
14
0
I wrote the following event to make things interesting if the USA elects a socialist party:

Code:
#########################################################################
#  The Robber Barons
#########################################################################
event = {
	id = 14186
	random = no
	country = USA

	trigger = {
		invention = 326 # Karl Marx
		OR = {
			ruling_party = 14111
			ruling_party = 14107
		}
	}

	name = "EVT_14186_NAME"
	desc = "EVT_14186_DESC"
	style = 0

	date = { day = 1 month = january year = 1877 }
	offset = 30
	deathdate = { day = 30 month = december year = 2000 }

	action_a = {
		name = "ACTIONNAME14186A" # Retain Democracy
		command = { type = maximum_workhours which = 12 }
		
		command = { type = pop_militancy which = aristocrats value = -3 } #Upper Class Relief
		command = { type = pop_militancy which = clergymen   value = -3 }
		command = { type = pop_militancy which = capitalists value = -3 }

		command = { type = pop_consciousness which = socialist value = 3 }
	}
	action_b = {
		name = "ACTIONNAME14186B" # Democracy, but Equality
		command = { type = national_value  which = equality }
		command = { type = party_system  which = multi_party }
		command = { type = maximum_workhours which = 10 }

		command = { type = pop_ideology which = 50 value = socialist }
		command = { type = pop_consciousness which = socialist value = 3 }	

		command = { type = pop_consciousness which = capitalists value = 2 } # Nervous Upper Class
		command = { type = pop_consciousness which = aristocrats value = 2 }
		command = { type = pop_consciousness which = clergymen   value = 2 }
		command = { type = pop_consciousness which = officers    value = 2 }
	}
	action_c = {
		name = "ACTIONNAME14186C" # Workers of the World Unite!
		command = { type = trigger which = 23100 } # Communist Revolution
	}
}

My question is, if action b is selected, will the game accept constitution = democracy where value != liberty?

If yes, can you also have constitution = democracy and executive designation = rules by decree?