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

Pang Bingxun

Field Marshal
2 Badges
Nov 22, 2011
5.596
185
  • Arsenal of Democracy
  • 500k Club
Code:
#	Standing Army
#############################################
event = { # Standing Army
	id = 27032
	random = no
	country = CHI
	persistent = yes

	trigger = {
		ai = yes
		can_change_policy = {type = professional_army value = 1}
		NOT = { domestic = { type = professional_army value = 9 } }
	}

	name = "AI_EVENT"
	style = 0

	date = { day = 1 month = january year = 1936 }
	offset = 7
	deathdate = { day = 29 month = december year = 1955 }

	action_a = {
		command = { type = change_policy which = professional_army value = 1 }
	}
}

This event ensures that china will increase the costs of sustaining an army and decreases the costs for upgrading it to a modern standard. So if china has enough ic its army tends to be more modern than it was during the historic war. If china lacks IC it will not be able to supply and reinforce its troops. If this event is changed to make china go for a drafted army it will save expenses of 24.1 IC - 17.5 IC = 6.6 IC if paying 2000 MP in the army. As china tends to have more than 2000 MP in the army but less than 40 IC available at total i plead to change it.

Code:
#	Drafted Army
#############################################
event = { # Drafted Army
	id = 27032
	random = no
	country = CHI
	persistent = yes

	trigger = {
		ai = yes
		can_change_policy = {type = professional_army value = -1}
		#NOT = { domestic = { type = professional_army value = 9 } }
	}

	name = "AI_EVENT"
	style = 0

	date = { day = 1 month = january year = 1936 }
	offset = 7
	deathdate = { day = 29 month = december year = 1955 }

	action_a = {
		command = { type = change_policy which = professional_army value = -1 }
	}
}


Edit: On the other hand china has enough money anyway.
 
Last edited:
Upvote 0