• 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.
I don't know if this has been brought up before, but was playing along and checking out the formation of Germany through imperial reform event and something horrible dawned on me.

What happens when you manage to perform this fantastic feat as Hanover... when it comes time for the Gelfs to become Kings of England.

Not that it is going to happen often with the AI, but there is room here for another alternate history event to be written to handle a player doing it. Would Britain allow the King of Germany to take the thrown, or would they go with another choice and if so what.
 
bobtdwarf said:
I don't know if this has been brought up before, but was playing along and checking out the formation of Germany through imperial reform event and something horrible dawned on me.

What happens when you manage to perform this fantastic feat as Hanover... when it comes time for the Gelfs to become Kings of England.

Not that it is going to happen often with the AI, but there is room here for another alternate history event to be written to handle a player doing it. Would Britain allow the King of Germany to take the thrown, or would they go with another choice and if so what.

I don't think this is a problem because the country that becomes Germany loses the rest of its historical events. So when the time comes around, Hannover no longer exists since it has become Germany, so the English event never fires.
 
tuesday4am said:
I don't think this is a problem because the country that becomes Germany loses the rest of its historical events. So when the time comes around, Hannover no longer exists since it has become Germany, so the English event never fires.

Good game answer, but bad history. There is going to have to be an event to handle this, not right now mind you, but eventually since it is a major historical problem that can have a major impact on the game.
 
Hi,

I am working on the bugs from 1.38 and especially on the missing events.
In the Germany sequence, there are some missing events (in bold and in orange in the exemple).

Code:
###############################################################################
#Unification of Germany through a successful Imperial reform around 1500
###############################################################################
#Reichstag at Worms
#powerful Emperor version, chance on unification of Germany
event = {
      id = 235700
      trigger = {
              emperor = yes
              countrysize = 6 
              NOT = { badboy = 3 }            
              OR = {
                 AND = { #any combination of 4 of the 5 electors
                     vassal = { country = MUN country = KOL }
                     relation = { country = KOL data = 100 }
                     vassal = { country = MUN country = MAI }
                     relation = { country = MAI data = 100 }
                     vassal = { country = MUN country = PFA }
                     relation = { country = PFA data = 100 }
                     vassal = { country = MUN country = BRA }
                     relation = { country = BRA data = 100 }
                       }
                 AND = {
                     vassal = { country = MUN country = KOL }
                     relation = { country = KOL data = 100 }
                     vassal = { country = MUN country = MAI }
                     relation = { country = MAI data = 100 }
                     vassal = { country = MUN country = PFA }
                     relation = { country = PFA data = 100 }
                     vassal = { country = MUN country = SAC }
                     relation = { country = SAC data = 100 }
                       }
                 AND = {
                     vassal = { country = MUN country = KOL }
                     relation = { country = KOL data = 100 }
                     vassal = { country = MUN country = MAI }
                     relation = { country = MAI data = 100 }
                     vassal = { country = MUN country = BRA }
                     relation = { country = BRA data = 100 }
                     vassal = { country = MUN country = SAC }
                     relation = { country = SAC data = 100 }
                       }
                 AND = {
                     vassal = { country = MUN country = KOL }
                     relation = { country = KOL data = 100 }
                     vassal = { country = MUN country = PFA }
                     relation = { country = PFA data = 100 }
                     vassal = { country = MUN country = BRA }
                     relation = { country = BRA data = 100 }
                     vassal = { country = MUN country = SAC }
                     relation = { country = SAC data = 100 }
                       }
                 AND = {
                     vassal = { country = MUN country = MAI }
                     relation = { country = MAI data = 100 }
                     vassal = { country = MUN country = PFA }
                     relation = { country = PFA data = 100 }
                     vassal = { country = MUN country = BRA }
                     relation = { country = BRA data = 100 }
                     vassal = { country = MUN country = SAC }
                     relation = { country = SAC data = 100 }
                       }
                   } 
              }                
       random = no
       country = MUN
       name = "Imperial Diet at Worms"
       desc = "EVENTHIST179700"
       style = 1
       
       date = { day = 1 month = january year = 1495 } 
       offset = 300
       deathdate = { day = 31 month = december year = 1505 }
       
       action_a = {
                name = "Compromise with the Princes' party"
                command = { type = relation which = PFA value = 50 }
                command = { type = relation which = BRA value = 50 }
                command = { type = relation which = MAI value = 50 }
                command = { type = relation which = KOL value = 50 }
                command = { type = relation which = SAC value = 50 }
                  }
       action_b = {
                name = "Impose the ideas of the Emperor's party"
                command = { type = setflag which = Germany_reform }
                command = { type = stability value = -3 }
                command = { type = relation which = FRA value = -100 } 
                [COLOR=ORANGE][B]command = { type = trigger which = 170700 } #FRA: Reforms in the Holy Roman Empire [/B][/COLOR]
                command = { type = relation which = POL value = -100 }
                [COLOR=ORANGE][B]command = { type = trigger which = 258700 } #POL: Reforms in the Holy Roman Empire[/B][/COLOR] 
                command = { type = relation which = BOH value = -100 }
                [COLOR=ORANGE][B]command = { type = trigger which = 129700 } #BOH: Reforms in the Holy Roman Empire[/B][/COLOR] 
                command = { type = relation which = HUN value = -100 } 
                [COLOR=ORANGE][B]command = { type = trigger which = 188700 } #HUN: Reforms in the Holy Roman Empire[/B][/COLOR] 
                command = { type = relation which = DAN value = -100 } 
                [COLOR=ORANGE][B]command = { type = trigger which = 159700 } #DAN: Reforms in the Holy Roman Empire[/B][/COLOR] 
                command = { type = relation which = BUR value = -100 } 
                [COLOR=ORANGE][B]command = { type = trigger which = 137700 } #BUR: Reforms in the Holy Roman Empire[/B][/COLOR] 
                  }
}

All these events are missing (170700, 258700, 129700, 188700, 159700, 137700) for all events "Imperial Diet at Worms" and despite I've read all the thread (a looooong thread :eek: ) and the thread with the events, I haven't founded these events.
Does anyone know what they are ?
 
Last edited:
I wanted to propose my military unification of Germany sequence. Overall, the I think the sequence is about finished. It does work ingame and links up with Twoflower's monarch and leader file for Hohenzollerns. Right now, it's just a sequence for Brandenburg, but other minors can be done pretty simply by adapting this. Here's what I got so far:

Code:
##################################
# The German Crown (durch Kraft) #
##################################
event = {
id = 132027
random = no
country = BRA
trigger = { 	
		owned = { province = 346 data = -1 } #Mainz
		owned = { province = 345 data = -1 } #Pfalz
		owned = { province = 328 data = -1 } #Bohemia
		owned = { province = 312 data = -1 } #Brandenburg
		owned = { province = 331 data = -1 } #Sachsen
		owned = { province = 344 data = -1 } #Koln
		owned = { province = 349 data = -1 } #Bayern
		owned = { province = 310 data = -1 } #Hannover
		emperor = yes
		atwar = no #must be at peace
            NOT = { badboy = 10
			  exists = GER
		 	  flag = Germany_reform } 
	  }

name = "The German Crown"
desc = "Through a sustained campaign of military conquest, clever diplomatic 
maneuver, and stalwart will, Brandenburg has positioned itself, so that the 
Crown of Germany is now within reach. By overcoming all of the Imperial 
Electors and major rivals in Germany, and in particular, humbling the Emperor 
himself, Brandenburg now has a claim to the German Crown that, if anathema 
to the nations of Europe, is clearly established by force."
style = 0

date = { day = 1 month = january year = 1419 }
deathdate = { day = 31 month = december year = 1820 }
offset = 800
action_a = {
name = "The Crown is Mine"
                 command = { type = badboy value = 8 } 
                 command = { type = revoltrisk which = 60 value = 5 }
                 command = { type = revolt which = -1 } 
                 command = { type = revolt which = -1 } 
                 command = { type = revolt which = -1 } 
                 command = { type = revolt which = -1 } 
                 command = { type = revolt which = -1 } 
                 command = { type = revolt which = -1 } 
                 command = { type = revolt which = -1 } 
                 command = { type = revolt which = -1 }
                 command = { type = stability value = -5 }
                 command = { type = treasury value = -500 } #extravagant coronation
                 command = { type = domestic which = aristocracy value = 3 } 
                 command = { type = domestic which = centralization value = -3 } 
                 command = { type = trigger which = 132028 } #Saxony's per. casus belli, -250 rel.
		 command = { type = breakvassal which = SAC }
              	 command = { type = breakdynastic which = SAC }
                 command = { type = trigger which = 132029 } #Baden's Reaction
		 command = { type = breakvassal which = BAD }
              	 command = { type = breakdynastic which = BAD }
                 command = { type = trigger which = 132030 } #Bavaria's Reaction
		 command = { type = breakvassal which = BAY }
              	 command = { type = breakdynastic which = BAY }
                 command = { type = trigger which = 132031 } #Berg's Reaction
		 command = { type = breakvassal which = MUN }
              	 command = { type = breakdynastic which = MUN }
                 command = { type = trigger which = 132032 } #Bremen's Reaction
		 command = { type = breakvassal which = BRE }
              	 command = { type = breakdynastic which = BRE }
                 command = { type = trigger which = 132033 } #Tyrol's Reaction
		 command = { type = breakvassal which = U19 }
              	 command = { type = breakdynastic which = U19 }
                 command = { type = trigger which = 132034 } #Hessen's Reaction
		 command = { type = breakvassal which = HES }
              	 command = { type = breakdynastic which = HES }
                 command = { type = trigger which = 132035 } #Pommerania's Reaction
		 command = { type = breakvassal which = POM }
              	 command = { type = breakdynastic which = POM }
                 command = { type = trigger which = 132036 } #Holstein's Reaction
		 command = { type = breakvassal which = SHL }
              	 command = { type = breakdynastic which = SHL }
                 command = { type = trigger which = 132037 } #Cleves' Reaction
		 command = { type = breakvassal which = KLE }
              	 command = { type = breakdynastic which = KLE }
                 command = { type = trigger which = 132038 } #Strassburg's Reaction
		 command = { type = breakvassal which = STR }
              	 command = { type = breakdynastic which = STR }
                 command = { type = trigger which = 132039 } #Lorraine's Reaction
		 command = { type = breakvassal which = LOR }
              	 command = { type = breakdynastic which = LOR }
                 command = { type = trigger which = 132040 } #Mecklenburg's Reaction
		 command = { type = breakvassal which = MEC }
              	 command = { type = breakdynastic which = MEC }
                 command = { type = trigger which = 132041 } #Oldenburg's Reaction
		 command = { type = breakvassal which = OLD }
              	 command = { type = breakdynastic which = OLD }
                 command = { type = trigger which = 132042 } #Palatinate's Reaction
		 command = { type = breakvassal which = PFA }
              	 command = { type = breakdynastic which = PFA }
                 command = { type = trigger which = 132043 } #Stettin's Reaction
		 command = { type = breakvassal which = SLZ }
              	 command = { type = breakdynastic which = SLZ }
                 command = { type = trigger which = 132044 } #Wurttemberg's Reaction
		 command = { type = breakvassal which = WUR }
              	 command = { type = breakdynastic which = WUR }
                 command = { type = trigger which = 132045 } #Bayreuth's Reaction
		 command = { type = breakvassal which = THU }
              	 command = { type = breakdynastic which = THU }
                 command = { type = trigger which = 132067 } #Luxembourg's Reaction
		 command = { type = breakvassal which = LUX }
              	 command = { type = breakdynastic which = LUX }
                 command = { type = trigger which = 132046 } #England's Reaction 
              	 command = { type = breakdynastic which = ENG }
                 command = { type = trigger which = 132047 } #France's Reaction
              	 command = { type = breakdynastic which = FRA }
                 command = { type = trigger which = 132048 } #Spain's Reaction
              	 command = { type = breakdynastic which = SPA }
                 command = { type = trigger which = 132049 } #Castille's Reaction
              	 command = { type = breakdynastic which = CAS }
                 command = { type = trigger which = 132050 } #Aragon's Reaction
              	 command = { type = breakdynastic which = ARG }
                 command = { type = trigger which = 132051 } #Portugal's Reaction
              	 command = { type = breakdynastic which = POR }
                 command = { type = trigger which = 132052 } #Burgundy's Reaction
              	 command = { type = breakdynastic which = BUR }
                 command = { type = trigger which = 132053 } #Papacy's Reaction
              	 command = { type = breakdynastic which = PAP }
                 command = { type = trigger which = 132054 } #Austria's Reaction
              	 command = { type = breakdynastic which = HAB }
                 command = { type = trigger which = 132055 } #Poland's Reaction
              	 command = { type = breakdynastic which = POL }
                 command = { type = trigger which = 132056 } #Lithuania's Reaction
              	 command = { type = breakdynastic which = LIT }
                 command = { type = trigger which = 132057 } #Denmark's Reaction
              	 command = { type = breakdynastic which = DAN }
                 command = { type = trigger which = 132058 } #Sweden's Reaction
              	 command = { type = breakdynastic which = SWE }
                 command = { type = trigger which = 132059 } #Teutonic Order's Reaction
              	 command = { type = breakdynastic which = LAT }
                 command = { type = trigger which = 132060 } #Prussia's Reaction
              	 command = { type = breakdynastic which = PRU }
                 command = { type = trigger which = 132061 } #Italy's Reaction
              	 command = { type = breakdynastic which = ITA }
                 command = { type = trigger which = 132066 } #Bohemia's Reaction
              	 command = { type = breakdynastic which = BOH }
                 command = { type = trigger which = 132068 } #Styria's Reaction
              	 command = { type = breakdynastic which = PRM }
		 command = { type = setflag which = Force_Germany }#we are trying to form GER
}

action_b = {
name = "We will reject this burden"
command = { type = stability value = -1 }
command = { type = relation which = BAD value = 200 }
command = { type = relation which = BAY value = 200 }
command = { type = relation which = MUN value = 200 }
command = { type = relation which = BRE value = 200 }
command = { type = relation which = HAN value = 200 }
command = { type = relation which = HES value = 200 }
command = { type = relation which = POM value = 200 }
command = { type = relation which = HOL value = 200 }
command = { type = relation which = KLE value = 200 }
command = { type = relation which = KOL value = 200 }
command = { type = relation which = LOR value = 200 }
command = { type = relation which = MEC value = 200 }
command = { type = relation which = OLD value = 200 }
command = { type = relation which = PFA value = 200 }
command = { type = relation which = SLZ value = 200 }
command = { type = relation which = WUR value = 200 }
command = { type = relation which = THU value = 200 }
command = { type = sleepevent which = 132062 }
}
}

#NEW EVENTS
event = { 
id = 132062
random = no
country = BRA
trigger = { 
               event = 132027
                NOT = { event = 132063 }
               stability = 3
               atwar = no #must be at peace
               owned = { province = 346 data = -1 } #Mainz
           	owned = { province = 345 data = -1 } #Pfalz
		owned = { province = 328 data = -1 } #Bohemia
		owned = { province = 312 data = -1 } #Brandenburg
		owned = { province = 331 data = -1 } #Sachsen
		owned = { province = 344 data = -1 } #Koln
		owned = { province = 349 data = -1 } #Bayern
		owned = { province = 310 data = -1 } #Hannover
                         emperor = yes
	  }

name = "The German Crown"
desc = "The world is forced to acknowledge our imperial claims to all of Germany."
style = 0

date = { day = 1 month = january year = 1419 }
deathdate = { day = 31 month = december year = 1820 }
offset = 800

action_a = {
name = "Excellent" #Excellent
#command = { type = remove_countryculture which = french } #if Lorraine, magyar czech if Austria, etc.
command = { type = addcore which = 374 } #Alsace
command = { type = addcore which = 332 } #Anhalt
command = { type = addcore which = 348 } #Ansbach
command = { type = addcore which = 351 } #Austria
command = { type = addcore which = 373 } #Baden
command = { type = addcore which = 349 } #Bayern
command = { type = addcore which = 312 } #Brandenburg
command = { type = addcore which = 336 } #Bremen
command = { type = addcore which = 310 } #Hannover
command = { type = addcore which = 333 } #Hessen
command = { type = addcore which = 302 } #Hinterpommern
command = { type = addcore which = 306 } #Holstein
command = { type = addcore which = 343 } #Kleves
command = { type = addcore which = 313 } #Kustrin
command = { type = addcore which = 344 } #Koln
command = { type = addcore which = 375 } #Lorraine
command = { type = addcore which = 311 } #Magdeburg
command = { type = addcore which = 346 } #Mainz
command = { type = addcore which = 305 } #Mecklenburg
command = { type = addcore which = 334 } #Munster
command = { type = addcore which = 335 } #Oldenburg
command = { type = addcore which = 327 } #Ostmarch
command = { type = addcore which = 345 } #Pfalz
command = { type = addcore which = 331 } #Sachsen
command = { type = addcore which = 351 } #Salzburg
command = { type = addcore which = 371 } #Tirol
command = { type = addcore which = 304 } #Vorpommern
command = { type = addcore which = 372 } #Wurttemberg
command = { type = addcore which = 347 } #Wurzburg
command = { type = clrflag which = Force_Germany }
command = { type = country which = GER }
command = { type = trigger which = 132065 }
}
}

event = { 
id = 132063
random = no
country = BRA
trigger = { 
               event = 132027
                NOT = {
                    OR = {
                        owned = { province = 346 data = -1 } #Mainz
                      	owned = { province = 345 data = -1 } #Pfalz
		        owned = { province = 328 data = -1 } #Bohemia
		        owned = { province = 312 data = -1 } #Brandenburg
		        owned = { province = 331 data = -1 } #Sachsen
		        owned = { province = 344 data = -1 } #Koln
		        owned = { province = 349 data = -1 } #Bayern
		        owned = { province = 310 data = -1 } #Hannover
                            }
                     }
	  }
name = "The German Crown"
desc = "We have failed to force the world to acknowledge our imperial claims to all of Germany."
style = 0

date = { day = 1 month = january year = 1419 }
deathdate = { day = 31 month = december year = 1820 }
offset = 50#must be shorter than the other one

action_a = {
name = "Alas" #Alas
command = { type = sleepevent which = 132062 }
command = { type = clrflag which = Force_Germany }
}
}

################################
# Saxony's Reaction to Germany #
################################
event = { 
id = 132028
random = no
country = SAC
#Triggered by The German Crown (durch Kraft) event

name = "Saxony's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = INF which = 5 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

###############################
# Baden's Reaction to Germany #
###############################
event = { 
id = 132029
random = no
country = BAD
#Triggered by The German Crown (durch Kraft) event

name = "Baden's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#################################
# Bavaria's Reaction to Germany #
#################################
event = { 
id = 132030
random = no
country = BAY
#Triggered by The German Crown (durch Kraft) event

name = "Bavaria's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##############################
# Berg's Reaction to Germany #
##############################
event = { 
id = 132031
random = no
country = MUN
#Triggered by The German Crown (durch Kraft) event

name = "Berg's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

################################
# Bremen's Reaction to Germany #
################################
event = { 
id = 132032
random = no
country = BRE
#Triggered by The German Crown (durch Kraft) event

name = "Bremen's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##################################
# Tyrol's Reaction to Germany #
##################################
event = { 
id = 132033
random = no
country = U19
#Triggered by The German Crown (durch Kraft) event

name = "Tyrol's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

###############################
# Hesse's Reaction to Germany #
###############################
event = { 
id = 132034
random = no
country = HES
#Triggered by The German Crown (durch Kraft) event

name = "Hesse's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

####################################
# Pommerania's Reaction to Germany #
####################################
event = { 
id = 132035
random = no
country = POM
#Triggered by The German Crown (durch Kraft) event

name = "Pommerania's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##################################
# Holstein's Reaction to Germany #
##################################
event = { 
id = 132036
random = no
country = SHL
#Triggered by The German Crown (durch Kraft) event

name = "Holstein's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}
 
Last edited:
Code:
###############################
# Cleve's Reaction to Germany #
###############################
event = { 
id = 132037
random = no
country = KLE
#Triggered by The German Crown (durch Kraft) event

name = "Cleve's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

####################################
# Strassburg's Reaction to Germany #
####################################
event = { 
id = 132038
random = no
country = STR
#Triggered by The German Crown (durch Kraft) event

name = "Strassburg's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##################################
# Lorraine's Reaction to Germany #
##################################
event = { 
id = 132039
random = no
country = LOR
#Triggered by The German Crown (durch Kraft) event

name = "Lorraine's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#####################################
# Mecklenburg's Reaction to Germany #
#####################################
event = { 
id = 132040
random = no
country = MEC
#Triggered by The German Crown (durch Kraft) event

name = "Mecklenburg's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

###################################
# Oldenburg's Reaction to Germany #
###################################
event = { 
id = 132041
random = no
country = OLD
#Triggered by The German Crown (durch Kraft) event

name = "Oldenburg's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

########################################
# The Palatinate's Reaction to Germany #
########################################
event = { 
id = 132042
random = no
country = PFA
#Triggered by The German Crown (durch Kraft) event

name = "Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#################################
# Stettin's Reaction to Germany #
#################################
event = { 
id = 132043
random = no
country = SLZ
#Triggered by The German Crown (durch Kraft) event

name = "Stettin's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#####################################
# Wurttemberg's Reaction to Germany #
#####################################
event = { 
id = 132044
random = no
country = WUR
#Triggered by The German Crown (durch Kraft) event

name = "Wurttemberg's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##################################
# Bayreuth's Reaction to Germany #
##################################
event = { 
id = 132045
random = no
country = THU
#Triggered by The German Crown (durch Kraft) event

name = "Bayreuth's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#################################
# England's Reaction to Germany #
#################################
event = { 
id = 132046
random = no
country = ENG
#Triggered by The German Crown (durch Kraft) event

name = "England's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

################################
# France's Reaction to Germany #
################################
event = { 
id = 132047
random = no
country = FRA
#Triggered by The German Crown (durch Kraft) event

name = "France's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

###############################
# Spain's Reaction to Germany #
###############################
event = { 
id = 132048
random = no
country = SPA
#Triggered by The German Crown (durch Kraft) event

name = "Spain's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##################################
# Castille's Reaction to Germany #
##################################
event = { 
id = 132049
random = no
country = CAS
#Triggered by The German Crown (durch Kraft) event

name = "Castille's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

################################
# Aragon's Reaction to Germany #
################################
event = { 
id = 132050
random = no
country = ARG
#Triggered by The German Crown (durch Kraft) event

name = "Aragon's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##################################
# Portugal's Reaction to Germany #
##################################
event = { 
id = 132051
random = no
country = POR
#Triggered by The German Crown (durch Kraft) event

name = "Portugal's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

##################################
# Burgundy's Reaction to Germany #
##################################
event = { 
id = 132052
random = no
country = BUR
#Triggered by The German Crown (durch Kraft) event

name = "Burgundy's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#############################
# Papal Reaction to Germany #
#############################
event = { 
id = 132053
random = no
country = PAP
#Triggered by The German Crown (durch Kraft) event

name = "Papal Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#################################
# Austria's Reaction to Germany #
#################################
event = { 
id = 132054
random = no
country = HAB
#Triggered by The German Crown (durch Kraft) event

name = "Austria's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

################################
# Poland's Reaction to Germany #
################################
event = { 
id = 132055
random = no
country = POL
#Triggered by The German Crown (durch Kraft) event

name = "Poland's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

###################################
# Lithuania's Reaction to Germany #
###################################
event = { 
id = 132056
random = no
country = LIT
#Triggered by The German Crown (durch Kraft) event

name = "Lithuania's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#################################
# Denmark's Reaction to Germany #
#################################
event = { 
id = 132057
random = no
country = DAN
#Triggered by The German Crown (durch Kraft) event

name = "Denmark's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

################################
# Sweden's Reaction to Germany #
################################
event = { 
id = 132058
random = no
country = SWE
#Triggered by The German Crown (durch Kraft) event

name = "Sweden's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

########################################
# Teutonic Order's Reaction to Germany #
########################################
event = { 
id = 132059
random = no
country = LAT
#Triggered by The German Crown (durch Kraft) event

name = "Teutonic Order's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#################################
# Prussia's Reaction to Germany #
#################################
event = { 
id = 132060
random = no
country = PRU
#Triggered by The German Crown (durch Kraft) event

name = "Prussia's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

###############################
# Italy's Reaction to Germany #
###############################
event = { 
id = 132061
random = no
country = ITA
#Triggered by The German Crown (durch Kraft) event

name = "Italy's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#################################
# Bohemia's Reaction to Germany #
#################################
event = { 
id = 132066
random = no
country = BOH
#Triggered by The German Crown (durch Kraft) event

name = "Bohemia's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

####################################
# Luxembourg's Reaction to Germany #
####################################
event = { 
id = 132067
random = no
country = LUX
#Triggered by The German Crown (durch Kraft) event

name = "Luxembourg's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 4812 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

####################################
# Styria's Reaction to Germany #
####################################
event = { 
id = 132068
random = no
country = PRM
#Triggered by The German Crown (durch Kraft) event

name = "Styria's Reaction to Germany"
desc = "The forceful revival of the medieval Kingdom of Germany has alarmed 
courts throughout Europe, and hostile reaction is forming against this usurper 
state. There is a strong call for severing ties and declaring war on this so-
called German kingdom."
style = 0

action_a = {
name = "Bad news"
command = { type = casusbelli which = GER value = 720 } #720 for non-German, 4812 for German minors
command = { type = relation which = GER value = -250 }
command = { type = stability value = 1 }
command = { type = treasury value = 250 } #rallying support
command = { type = CAV which = 5000 value = -2 } #foreign nobles
}

action_b = {
name = "Seek their friendship"
command = { type = diplomats value = -1 }
command = { type = stability value = -1 }
}
}

#Hohenzollern dynasty - by force
event = { 
      id = 132065
      random = no
      country = GER
	trigger = ( NOT = { event = 366001 } }
      name = "Hohenzollern dynasty"
      desc = "Having suppressed its rivals and welded together a German state 
by force, the Hohenzollern dynasty is in a precarious position. Almost all of 
Europe is in fear and resentment of the new German state, and whether the
 Imperial dignity will remain with the Hohenzollerns remains to be said. There 
are relationships to repair, enemies to fend off, and a new nation to sustain."
      style = 1
      
      action_a = {
               name = "Vivat!"
               command = { type = setflag which = Germany_Hohenzollern } #might be needed, who knows
               command = { type = wakemonarch  which = 14220 } #Hohenzollern monarchs
               command = { type = wakemonarch  which = 14221 }
               command = { type = wakemonarch  which = 14222 }
               command = { type = wakemonarch  which = 14223 }
               command = { type = wakemonarch  which = 14224 }
               command = { type = wakemonarch  which = 14225 }
               command = { type = wakemonarch  which = 14226 }
               command = { type = wakemonarch  which = 14227 }
               command = { type = wakemonarch  which = 14228 }
               command = { type = wakemonarch  which = 14229 }
               command = { type = wakemonarch  which = 14230 }
               command = { type = wakemonarch  which = 14231 }
               command = { type = wakemonarch  which = 14232 }
               command = { type = wakemonarch  which = 14233 }
               command = { type = wakemonarch  which = 14234 }
               command = { type = wakemonarch  which = 14235 }
               command = { type = wakemonarch  which = 14236 }
               command = { type = wakeleader which = 14125 } #Hohenzollern leaders
               command = { type = wakeleader which = 14126 }
               command = { type = wakeleader which = 14127 }
               command = { type = wakeleader which = 14128 }
               command = { type = wakeleader which = 14129 } #Prussian leaders available to non-Hohenzollern Germany
               command = { type = wakeleader which = 14130 }
               command = { type = wakeleader which = 14131 }
               command = { type = wakeleader which = 14132 }
               command = { type = wakeleader which = 14133 }
               command = { type = wakeleader which = 14134 }
               command = { type = wakeleader which = 14135 }
               command = { type = wakeleader which = 14136 } #Brandenburg-Prussian leaders available only to Hohenzollern Germany
               command = { type = wakeleader which = 14137 }
               command = { type = wakeleader which = 14138 }
               command = { type = wakeleader which = 14139 }
                 }
}

This is what I used to work in a Brandenburg game. Note that the event IDs are tentative until everything's finalized.

Way back when, Isaac Brock had proposed these events as revolts, but I had trouble getting them to compile:

Code:
event = {
	id = 132065
	random = yes
	province = 346 # Mainz
	trigger = { 	
               	event = 132027 #claim to German Crown
                NOT = { event = 132063} # Claim to German Crown Failed
		NOT = { core = 346 } #Elector of Mainz is exempt
		flag = Force_Germany
	  }
	name = "Uprising in Mainz"
	desc = "Enboldened by foreign support, a representative of the old order in the 
	electorate of Mainz has raised his standard and seeks to re-establish the 
	electorate. This is a challenge to our claim to the German throne!"
	style = 0

	action_a = {
		name = "Unacceptable!"
                 command = { type = revolt which = 346 } 
                 command = { type = revolt which = 346 } 
                 command = { type = revolt which = 346 } 
                 command = { type = revolt which = 346 } 
		 command = { type = desertion which = 10000 value = -1 } Troops join rebels
		}
	}
#two copies of this for each electorate in random event file.  One should happen every 5-10 years

Anyhow, give me your honest opinions. It'd be great to integrate a military unification sequence that's realistic into the game.
 
German unification missing events - Part I

About post #304 by Aegnor, here is the heavy bugfix (or should it be a submission?) for missing events by Aegnor:

Code:
#######################################
# France's Reaction to German reforms #
#######################################
event = { 
	id = 170700 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAB value = 240 } #20 years
		command = { type = relation which = HAB value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170701 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BAY value = 240 } #20 years
		command = { type = relation which = BAY value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170702 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MUN value = 240 } #20 years
		command = { type = relation which = MUN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170703 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BRA value = 240 } #20 years
		command = { type = relation which = BRA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170704 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = KLE value = 240 } #20 years
		command = { type = relation which = KLE value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170705 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAN value = 240 } #20 years
		command = { type = relation which = HAN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170706 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HES value = 240 } #20 years
		command = { type = relation which = HES value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170707 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SHL value = 240 } #20 years
		command = { type = relation which = SHL value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170708 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = LOR value = 240 } #20 years
		command = { type = relation which = LOR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170709 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MEC value = 240 } #20 years
		command = { type = relation which = MEC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170710 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = U16 value = 240 } #20 years
		command = { type = relation which = U16 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170711 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = OLD value = 240 } #20 years
		command = { type = relation which = OLD value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170712 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = PFA value = 240 } #20 years
		command = { type = relation which = PFA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170713 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = POM value = 240 } #20 years
		command = { type = relation which = POM value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170714 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SAC value = 240 } #20 years
		command = { type = relation which = SAC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 170715 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = WUR value = 240 } #20 years
		command = { type = relation which = WUR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}
 
German unification missing events - Part II

Code:
#######################################
# Poland's Reaction to German reforms #
#######################################
event = { 
	id = 258700 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAB value = 240 } #20 years
		command = { type = relation which = HAB value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258701 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BAY value = 240 } #20 years
		command = { type = relation which = BAY value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258702 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MUN value = 240 } #20 years
		command = { type = relation which = MUN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258703 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BRA value = 240 } #20 years
		command = { type = relation which = BRA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258704 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = KLE value = 240 } #20 years
		command = { type = relation which = KLE value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258705 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAN value = 240 } #20 years
		command = { type = relation which = HAN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258706 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HES value = 240 } #20 years
		command = { type = relation which = HES value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258707 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SHL value = 240 } #20 years
		command = { type = relation which = SHL value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258708 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = LOR value = 240 } #20 years
		command = { type = relation which = LOR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258709 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.
	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MEC value = 240 } #20 years
		command = { type = relation which = MEC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258710 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = U16 value = 240 } #20 years
		command = { type = relation which = U16 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258711 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = OLD value = 240 } #20 years
		command = { type = relation which = OLD value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258712 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = PFA value = 240 } #20 years
		command = { type = relation which = PFA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258713 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = POM value = 240 } #20 years
		command = { type = relation which = POM value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258714 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.
	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SAC value = 240 } #20 years
		command = { type = relation which = SAC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 258715 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = WUR value = 240 } #20 years
		command = { type = relation which = WUR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}
 
German unification missing events -Part III

Code:
########################################
# Bohemia's Reaction to German reforms #
########################################
event = { 
	id = 129700 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAB value = 240 } #20 years
		command = { type = relation which = HAB value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129701 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BAY value = 240 } #20 years
		command = { type = relation which = BAY value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129702 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MUN value = 240 } #20 years
		command = { type = relation which = MUN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129703 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BRA value = 240 } #20 years
		command = { type = relation which = BRA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129704 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = KLE value = 240 } #20 years
		command = { type = relation which = KLE value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129705 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAN value = 240 } #20 years
		command = { type = relation which = HAN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129706 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HES value = 240 } #20 years
		command = { type = relation which = HES value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129707 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SHL value = 240 } #20 years
		command = { type = relation which = SHL value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129708 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = LOR value = 240 } #20 years
		command = { type = relation which = LOR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129709 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MEC value = 240 } #20 years
		command = { type = relation which = MEC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129710 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = U16 value = 240 } #20 years
		command = { type = relation which = U16 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129711 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = OLD value = 240 } #20 years
		command = { type = relation which = OLD value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129712 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = PFA value = 240 } #20 years
		command = { type = relation which = PFA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129713 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = POM value = 240 } #20 years
		command = { type = relation which = POM value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129714 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SAC value = 240 } #20 years
		command = { type = relation which = SAC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 129715 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = WUR value = 240 } #20 years
		command = { type = relation which = WUR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}
 
German unification missing events - Part IV

Code:
########################################
# Hungary's Reaction to German reforms #
########################################
event = { 
	id = 188700 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAB value = 240 } #20 years
		command = { type = relation which = HAB value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188701 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BAY value = 240 } #20 years
		command = { type = relation which = BAY value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188702 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MUN value = 240 } #20 years
		command = { type = relation which = MUN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188703 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BRA value = 240 } #20 years
		command = { type = relation which = BRA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188704 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = KLE value = 240 } #20 years
		command = { type = relation which = KLE value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188705 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAN value = 240 } #20 years
		command = { type = relation which = HAN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188706 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HES value = 240 } #20 years
		command = { type = relation which = HES value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188707 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SHL value = 240 } #20 years
		command = { type = relation which = SHL value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188708 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = LOR value = 240 } #20 years
		command = { type = relation which = LOR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188709 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MEC value = 240 } #20 years
		command = { type = relation which = MEC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188710 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = U16 value = 240 } #20 years
		command = { type = relation which = U16 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188711 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = OLD value = 240 } #20 years
		command = { type = relation which = OLD value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188712 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = PFA value = 240 } #20 years
		command = { type = relation which = PFA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188713 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = POM value = 240 } #20 years
		command = { type = relation which = POM value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188714 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SAC value = 240 } #20 years
		command = { type = relation which = SAC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 188715 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = WUR value = 240 } #20 years
		command = { type = relation which = WUR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}
 
German unification missing events - Part V

Code:
########################################
# Denmark's Reaction to German reforms #
########################################
event = { 
	id = 159700 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAB value = 240 } #20 years
		command = { type = relation which = HAB value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159701 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BAY value = 240 } #20 years
		command = { type = relation which = BAY value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159702 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MUN value = 240 } #20 years
		command = { type = relation which = MUN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159703 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BRA value = 240 } #20 years
		command = { type = relation which = BRA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159704 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = KLE value = 240 } #20 years
		command = { type = relation which = KLE value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159705 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAN value = 240 } #20 years
		command = { type = relation which = HAN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159706 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HES value = 240 } #20 years
		command = { type = relation which = HES value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159707 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SHL value = 240 } #20 years
		command = { type = relation which = SHL value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159708 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = LOR value = 240 } #20 years
		command = { type = relation which = LOR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159709 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MEC value = 240 } #20 years
		command = { type = relation which = MEC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159710 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = U16 value = 240 } #20 years
		command = { type = relation which = U16 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159711 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = OLD value = 240 } #20 years
		command = { type = relation which = OLD value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159712 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = PFA value = 240 } #20 years
		command = { type = relation which = PFA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159713 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = POM value = 240 } #20 years
		command = { type = relation which = POM value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159714 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SAC value = 240 } #20 years
		command = { type = relation which = SAC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 159715 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = WUR value = 240 } #20 years
		command = { type = relation which = WUR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}
 
German unification missing events - Final Part

Code:
#########################################
# Burgundy's Reaction to German reforms #
#########################################
event = { 
	id = 137700 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAB value = 240 } #20 years
		command = { type = relation which = HAB value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137701 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BAY value = 240 } #20 years
		command = { type = relation which = BAY value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137702 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MUN value = 240 } #20 years
		command = { type = relation which = MUN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137703 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = BRA value = 240 } #20 years
		command = { type = relation which = BRA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137704 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = KLE value = 240 } #20 years
		command = { type = relation which = KLE value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137705 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HAN value = 240 } #20 years
		command = { type = relation which = HAN value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137706 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = HES value = 240 } #20 years
		command = { type = relation which = HES value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137707 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SHL value = 240 } #20 years
		command = { type = relation which = SHL value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137708 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = LOR value = 240 } #20 years
		command = { type = relation which = LOR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137709 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = MEC value = 240 } #20 years
		command = { type = relation which = MEC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137710 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = U16 value = 240 } #20 years
		command = { type = relation which = U16 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137711 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = OLD value = 240 } #20 years
		command = { type = relation which = OLD value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137712 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = PFA value = 240 } #20 years
		command = { type = relation which = PFA value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137713 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = POM value = 240 } #20 years
		command = { type = relation which = POM value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137714 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = SAC value = 240 } #20 years
		command = { type = relation which = SAC value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

event = { 
	id = 137715 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = WUR value = 240 } #20 years
		command = { type = relation which = WUR value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

EVENTNAME170700;Reforms in the Holy Roman Empire;;;;;;;;;;
EVENTHIST170700;In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.;;;;;;;;;;
ACTIONNAME170700A;The emperor's party threatens our country;;;;;;;;;;
ACTIONNAME170700B;Seek their friendship;;;;;;;;;;

And a big thanks to Aegnor for his work! :)
 
And what about Mettermrck's proposal (posts #305 and #306) for military unification of Germany sequence?
No reaction since january (a lot more than 10 days)... Should it be submitted?
 
I think the German military unification sequence is an excellent idea - it perhaps needs tweaked slightly, but in principle it should definitely be in.
 
I have done again my events on the reactions to the German reforms by using the code -6 which means the emperor (thanks to Norrefeldt :) ):

Code:
#######################################
# France's Reaction to German reforms #
#######################################
event = { 
	id = 170700 #Triggered by Imperial Diet at Worms
	random = no
	country = FRA
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = -6 value = 240 } #20 years
		command = { type = relation which = -6 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}


#######################################
# Poland's Reaction to German reforms #
#######################################
event = { 
	id = 258700 #Triggered by Imperial Diet at Worms
	random = no
	country = POL
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = -6 value = 240 } #20 years
		command = { type = relation which = -6 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

########################################
# Bohemia's Reaction to German reforms #
########################################
event = { 
	id = 129700 #Triggered by Imperial Diet at Worms
	random = no
	country = BOH
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = -6 value = 240 } #20 years
		command = { type = relation which = -6 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

########################################
# Hungary's Reaction to German reforms #
########################################
event = { 
	id = 188700 #Triggered by Imperial Diet at Worms
	random = no
	country = HUN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = -6 value = 240 } #20 years
		command = { type = relation which = -6 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

########################################
# Denmark's Reaction to German reforms #
########################################
event = { 
	id = 159700 #Triggered by Imperial Diet at Worms
	random = no
	country = DAN
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = -6 value = 240 } #20 years
		command = { type = relation which = -6 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

#########################################
# Burgundy's Reaction to German reforms #
#########################################
event = { 
	id = 137700 #Triggered by Imperial Diet at Worms
	random = no
	country = BUR
	name = "EVENTNAME170700"
	desc = "EVENTHIST170700"
	#-#In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.

	action_a = {
		name = "ACTIONNAME170700A" #The emperor's party threatens our country
		command = { type = casusbelli which = -6 value = 240 } #20 years
		command = { type = relation which = -6 value = -200 }
		command = { type = stability value = 1 }
		command = { type = treasury value = 150 } #rallying support
		command = { type = CAV which = 5000 value = -2 } #foreign nobles
	}
	action_b = {
		name = "ACTIONNAME170700B" #Seek their friendship
		command = { type = diplomats value = -1 }
		command = { type = stability value = -1 }
	}
}

EVENTNAME170700;Reforms in the Holy Roman Empire;;;;;;;;;;
EVENTHIST170700;In the end of the 15th century the Holy Roman Empire of German Nation was far from being an effective state. The need for a reform was obvious, and acknowledged by a strong movement for imperial reform that emerged in the late 1480s. However, such a reform was hindered by conflicting ideas on what state should be the outcome of the reform. One group, consisting of the Emperor and his allies among the imperial cities and the weaker princes of the realm, supported reforms that would enable the Emperor to exploit Germany's considerable resources more effectively than in the past. In order to accomplish that, they demanded major innovations such as a regular system of imperial taxation and a regular administration of Germany in absentia by an imperial governing council that was to be kept under the Emperor's control. The emperor has made more extensive reforms that could ensure a more effective administration and could turn Germany into a powerful national kingdom. This forceful revival of the medieval Kingdom of Germany has alarmed courts throughout Europe, and hostile reaction is forming against this usurper state. There is a strong call for severing ties and declaring war on the emperor.;;;;;;;;;;
ACTIONNAME170700A;The emperor's party threatens our country;;;;;;;;;;
ACTIONNAME170700B;Seek their friendship;;;;;;;;;;


It will solve the missing events in the sequence of the Formation of the German Kingdom.