• 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.
Feb 16, 2008
245
0
Ok, many minors have crappy or no events so I'll make some.

Let's start with Sweden:

Code:
######################
#  Relations with Germany
######################
event = {
        id = 100010
        random = no
        country = SWE

        trigger = { 
                 event = 29 #Germany delcares war on Norway
                 atwar = no
                 NOT = {
                        alliance = { country = SWE country = GER }
                       
                       }

                 }
                 name = "Relations with Germany"
                 desc = "With Germany now at war with Denmark and Norway, we must decide how we will respond to their aggression."
                 style = 0
                 date = {day = 1 month = January year = 1947}
                 offset = 0
                 deathdate = { day = 30 month = December year = 1963}
        action_a = "Ally them. Perhaps we can also get some spoils"
                 ai_chance = 1
                 command = { type = addcore which = 128 }
                 command = { type = addcore which = 129 }
                 command = { type = addcore which = 125 }
                 command = { type = alliance which = GER }
                 command = { type = relation which = FIN value = -25 }
                 command = { type = dissent value = 5 }
        action_b = "Stay neutral"
                 ai_chance = 98
                 command = { type = relation which = FIN value = 10 }
        action_c = "Fight with the Allies"
                 ai_chance = 1
                 command = { type = alliance which = ENG }
                 command = { type = relation which = FIN value = 5 }


#########################################################################
#  The Finnish Winter War - Swedish Direct Intervention
#########################################################################
event = {
	id = 3300
	random = no
	country = SWE

	trigger = {
		war = { country = SOV country = FIN }
		event = 2621 #Finnish Winter War-Demands rejected
		OR = {
			ideology = social_conservative
			ideology = paternal_autocrat
			ideology = fascist
			ideology = nazi
		}
		NOT = {
			alliance = { country = FIN country = GER }
			alliance = { country = SWE country = GER }
			alliance = { country = SWE country = ENG }
			alliance = { country = SWE country = SOV }
		}
	}

	name = "EVT_3300_NAME"
	desc = "EVT_3300_DESC"
        picture = "sweden_helps_finland"
	style = 0

	date = { day = 17 month = july year = 1936 }
	offset = 7
	deathdate = { day = 31 month = december year = 1963 }

	action_a = {
		name = "ACTIONNAME3300A" # Intervene for our brother people!
		ai_chance = 90
		command = { type = belligerence which = SWE value = 1 }
		command = { type = alliance which = FIN }
#		command = { type = war which = SOV }
		command = { type = domestic which = interventionism value = 1 }
		command = { type = domestic which = political_left value = -1 }
		command = { type = relation which = FIN value = 25 }
		command = { type = relation which = NOR value = 10 }
		command = { type = trigger which = 3202 } # FIN
		command = { type = setflag which = anti_bolshevik_sweden }
	}
	action_b = {
		name = "ACTIONNAME3300B" # Send volunteers and materiel
		ai_chance = 9
		command = { type = manpowerpool value = -10 }
		command = { type = supplies value = -1000 }
		command = { type = relation which = SOV value = -20 }
		command = { type = relation which = FIN value = 10 }
		command = { type = relation which = NOR value = 5 }
		command = { type = trigger which = 3201 } # FIN
	}
        action_c = {
                name = "It's not our problem"
                ai_chance = 1
                command = { type = relation which = SOV value = 20 }
                command = { type = relation which = FIN value = -20 }
                command = { type = relation which = NOR value = -5 }
                command = { type = domestic which = interventionism value = -1 }
                command = { type = domestic which = defense_lobby value = -1 }
                command = { type = dissent value = 5}
}


#########################################################################
#  The Finnish Winter War - Swedish Non-Intervention
#########################################################################
event = {
	id = 3301
	random = no
	country = SWE

	trigger = {
		war = { country = SOV country = FIN }
		event = 2621 #Finnish Winter War-Demands rejected
		atwar = no
		NOT = {
			OR = {
				ideology = social_conservative
				ideology = paternal_autocrat
				ideology = fascist
				ideology = nazi
			}
		}
		NOT = {
			alliance = { country = FIN country = GER }
		}
	}

	name = "EVT_3301_NAME"
	desc = "EVT_3301_DESC"
        picture = "per_albin"
	style = 0

	date = { day = 17 month = july year = 1936 }
	offset = 7
	deathdate = { day = 31 month = december year = 1963 }

	action_a = {
		name = "ACTIONNAME3301A" # Send volunteers and materiel
		ai_chance = 98
		command = { type = relation which = SOV value = -20 }
		command = { type = relation which = FIN value = 10 }
		command = { type = relation which = NOR value = 5 }
		command = { type = manpowerpool value = -10 }
		command = { type = supplies value = -1000 }
		command = { type = trigger which = 3201 } # FIN
	}
	action_b = {
		name = "ACTIONNAME3301B" # Intervene for our brother people!
		ai_chance = 2
		command = { type = belligerence which = SWE value = 1 }
		command = { type = alliance which = FIN }
#		command = { type = war which = SOV }
		command = { type = domestic which = interventionism value = 1 }
		command = { type = domestic which = political_left value = -1 }
		command = { type = relation which = FIN value = 25 }
		command = { type = relation which = NOR value = 10 }
		command = { type = access which = FIN }
		command = { type = trigger which = 3202 } # FIN
		command = { type = setflag which = anti_bolshevik_sweden }
	action_c = {
                name = "It's not our problem"
                ai_chance = 1
                command = { type = relation which = SOV value = 20 }
                command = { type = relation which = FIN value = -20 }
                command = { type = relation which = NOR value = -5 }
                command = { type = domestic which = interventionism value = -1 }
                command = { type = domestic which = defense_lobby value = -1 }
                command = { type = dissent value = 5}       
        }
}
 
Last edited: