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

Lord Boreal

Pangalactic Gargleblaster
73 Badges
May 22, 2004
2.808
5
  • Knights of Pen and Paper 2
  • Semper Fi
  • Sword of the Stars
  • Victoria 2
  • 200k Club
  • 500k Club
  • Cities: Skylines
  • Cities: Skylines Deluxe Edition
  • Mount & Blade: With Fire and Sword
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Crusader Kings II: Horse Lords
  • Cities: Skylines - After Dark
  • Europa Universalis: Rome
  • Crusader Kings II: Conclave
  • Cities: Skylines - Snowfall
  • Stellaris
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Colonel
  • Crusader Kings II: Reapers Due
  • Tyranny: Archon Edition
  • Stellaris: Leviathans Story Pack
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Cities: Skylines - Mass Transit
  • Stellaris: Nemesis
  • Europa Universalis III Complete
  • Cities in Motion
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sword of Islam
  • Deus Vult
  • Diplomacy
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Hearts of Iron II: Armageddon
  • Divine Wind
  • Europa Universalis IV
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III Collection
  • Heir to the Throne
  • Europa Universalis III Complete
  • Magicka
  • Europa Universalis III Complete
Is there a mod/list somewhere that adds events to spice up the post WW2 years? For example, its now 1949 in my current game, and after winning the war as the US, I decided to attack the Soviets out of sheer boredom, dragging my European (UK, France, FRG, Italy and Austria) and Asian (Japan and Korea) allies along with me. Any events that add a bit more depth, say EU/UN related, or events that add resources to the map for developing nations (India, Brazil, China etc).

Any help with locating them is appreciated. Cheers.
 
There are probably a few post-war events in the grand event request thread. I think SMEP might also have some post-war events; I thought it started with HOI2, but maybe it's only for AOD - although events are pretty transferrable (AOD only adds a few new commands).

The problem with post-war events is that it's incredibly difficult to determine what will happen.

The only event I created for the post war were based on geographical happenings that would be impossible to change.

This is an event portraying the grain shortage in the USSR in 1947. Even then I had to write it for SOV or RUS (in case SOV is defeated). But even then, Germany could control the Volga Basin (or some other random country) and it still wouldn't fit.

It's also for 1947, so even it is outside your timeframe.

Code:
### - FLAGS - ###
# GrainSecretDecree - RUS or SOV have issued a secret decree

###########################################
#1237005  1947 Agricultural Shortage SOV  #
###########################################
event = {
	id = 1237005
	random = no
	country = SOV


	trigger = {
		event = 1236005
	}

	name = "Crop Shortage"
	desc = "Despite a severe drought the preceding year, crop shortages occured through the Soviet Union. By secret decree, much of the country's grain storage was not opened for public consumption. This was done in order to allow more seed for subsequent planting and to ensure national security (by not relying on imported grain). The subsequent famine killed nearly 1.5 million people."
	style = 0
	picture = "volgabasin"

	date = { day = 10 month = july  year = 1947 }
	offset = 7
	deathdate = { day = 30 month = december year = 1946 }

	action_a = {
		name = "Issue the Secret Decree"
		command = { type = supplies value = 1000 }
		command = { type = manpowerpool value = -5 }
		command = { type = setflag which = GrainSecretDecree }
	}
	action_b = {
		name = "Release the Grain Reserves"
		command = { type = domestic which = freedom value = 2 }
		command = { type = dissent value = 4 }
		command = { type = supplies value = -12000 }
		command = { type = money value = -1000 }

	}
}

###########################################
#1237006  1947 Agricultural Shortage RUS  #
###########################################
event = {
	id = 1237006
	random = no
	country = RUS


	trigger = {
		NOT = { government = democratic } 
		event = 1236006
	}

	name = "Crop Shortage"
	desc = "Despite a severe drought the preceding year, crop shortages occured through the Soviet Union in 1947. By secret decree on July 11th, much of the country's grain storage was not opened for public consumption. This was done in order to allow more seed for planting and to ensure national security (by not relying on imported grain). The subsequent famine killed nearly 1.5 million people."
	style = 0
	picture = "volgabasin"

	date = { day = 10 month = july  year = 1947 }
	offset = 7
	deathdate = { day = 30 month = december year = 1946 }

	action_a = {
		name = "Issue the Secret Decree"
		ai_chance = 90
		command = { type = supplies value = 1000 }
		command = { type = manpowerpool value = -5 }
		command = { type = setflag which = GrainSecretDecree }
	}
	action_b = {
		name = "Release the Grain Reserves"
		ai_chance = 10
		command = { type = domestic which = freedom value = 2 }
		command = { type = dissent value = 4 }
		command = { type = supplies value = -8000 } #likely recently released; may not have as many supplies
		command = { type = money value = -1000 }

	}
}

###########################################
#1237007  1947 Demo. Shortage Relief RUS  #
###########################################
event = {
	id = 1237007
	random = no
	country = RUS


	trigger = {
		government = democratic
		event = 1236006
	}

	name = "Crop Shortage"
	desc = "Despite a severe drought the preceding year, crop shortages occured through the Soviet Union in 1947. As a democratic nation our people expect the government to do all in its power to help the people (and to avoid letting up to 1.5 million people die to ensure stronger crop yields the following year as the USSR historically did)."
	style = 0
	picture = "volgabasin"

	date = { day = 10 month = july  year = 1947 }
	offset = 7
	deathdate = { day = 30 month = december year = 1946 }

	action_a = {
		name = "Release the Grain Reserves"
		command = { type = dissent value = -1 }
		command = { type = supplies value = -4000 }
		command = { type = money value = -300 }

	}
}

###########################################
#1237010  1947 Famine - SOV		  #
###########################################
event = {
	id = 1237010
	random = no
	country = SOV


	trigger = {
		flag = GrainSecretDecree
		event = 1237005 #SOV Crop Shortage
	}

	name = "Great Famine"
	desc = "The Soviet Union refused to release its grain reserves in order to bolster future crop yields and to ensure national security. Unfortunately for the people of the USSR, this resulted in severe famine. The famine killed between 1 and 1.5 million people, while also stunting the Soviet 'baby boom.'"
	style = 0
	picture = "volgabasin"

	date = { day = 15 month = september  year = 1947 }

	action_a = {
		name = "Reap What is Sown"
		command = { type = dissent value = 4 }
		command = { type = manpowerpool value = -275 }
		command = { type = money value = 1000 }

	}
}

###########################################
#1237011  1947 Small Famine - SOV	  #
###########################################
event = {
	id = 1237011
	random = no
	country = SOV


	trigger = {
		NOT = { flag = GrainSecretDecree }
		event = 1237005 			#SOV Crop Shortage
	}

	name = "Great Famine"
	desc = "Analysts claim we have saved over a million lives by releasing the nation's grain reserves to aid the populace. Many have still ended up malnourished, and some have starved, but the damage was much less than it may have been otherwise."
	style = 0
	picture = "volgabasin"

	date = { day = 15 month = september  year = 1947 }

	action_a = {
		name = "Reap What is Sown"
		command = { type = dissent value = -1 }
		command = { type = manpowerpool value = -30 }
	}
}

###########################################
#1237015  1947 Famine - SOV		  #
###########################################
event = {
	id = 1237015
	random = no
	country = RUS


	trigger = {
		flag = GrainSecretDecree
		event = 1237006 		#SOV Crop Shortage
	}

	name = "Great Famine"
	desc = "The Soviet Union refused to release its grain reserves in order to bolster future crop yields and to ensure national security. Unfortunately for the people of the USSR, this resulted in severe famine. The famine killed between 1 and 1.5 million people, while also stunting the Soviet 'baby boom.'"
	style = 0
	picture = "volgabasin"

	date = { day = 15 month = september  year = 1947 }

	action_a = {
		name = "Reap What is Sown"
		command = { type = dissent value = 4 }
		command = { type = manpowerpool value = -275 }
		command = { type = money value = 1000 }

	}
}

###########################################
#1237016  1947 Small Famine - RUS	  #
###########################################
event = {
	id = 1237016
	random = no
	country = RUS


	trigger = {
		OR = {
			AND = {
				NOT = { flag = GrainSecretDecree }
				event = 1237006 #RUS Crop Shortage
			}
			event = 1237007 #RUS democratic
		}
	}

	name = "Great Famine"
	desc = "Analysts claim we have saved over a million lives by releasing the nation's grain reserves to aid the populace. Many have still ended up malnourished, and some have starved, but the damage was much less than it may have been otherwise."
	style = 0
	picture = "volgabasin"

	date = { day = 15 month = september  year = 1947 }

	action_a = {
		name = "Reap What is Sown"
		command = { type = dissent value = -1 }
		command = { type = manpowerpool value = -30 }
	}
}

I know I have a few "randomly add some more resources so people can get more as the game progresses" I could potentially put in a zip for you if you want.

I also have a Gran Chaco War continuation event chain (although that would be war between Bolivia and Paraguay (and potentially then Argentina and Brazil). It is designed to fire before WW2, but it could conceivably be tweaked to be more than 1% likely in the post-war era.

I could also add another event or two to embroil USA/GER supporting Argentina/Paraguay and USSR supporting Brazil/Bolivia if you want a rationale for a USSR versus USA scenario.