According to setup for 1419, four provinces "should" not be under full control of Dauphin at start.
In province.csv, current values:
Maine: manpower = 5 | income = 10
Orléanais: manpower = 5 | income = 12
Auvergne: manpower = 5 | income = 4
Cévennes: manpower = 5 | income = 4
Proposed new values:
Maine: manpower = 1 | income = 4
Orléanais: manpower = 1 | income = 5
Auvergne: manpower = 1 | income = 2
Cévennes: manpower = 1 | income = 2
Events:
Code:
#(1419-1452) Maine
event = {
id = 338432
trigger = {
OR = {
AND = {
OR = {
owned = { province = 412 data = FRA }
owned = { province = 412 data = DAU }
}
year = 1451
}
NOT = {
owned = { province = 412 data = FRA }
owned = { province = 412 data = DAU }
}
}
}
random = no
province = 412 #Maine
name = "EVENTNAME338432" #Full ownership of Maine
desc = "EVENTHIST338432"
#-#
date = { day = 1 month = january year = 1419 }
offset = 90
deathdate = { day = 29 month = december year = 1452 }
action_a = {
name = "GOOD_NEWS"
command = { type = provincemanpower which = 412 value = 4 }
command = { type = provincetax which = 412 value = 6 }
}
}
#(1419-1500) Orléanais
event = {
id = 338433
trigger = {
OR = {
AND = {
OR = {
owned = { province = 411 data = FRA }
owned = { province = 411 data = DAU }
}
year = 1499
}
NOT = {
owned = { province = 411 data = FRA }
owned = { province = 411 data = DAU }
}
}
}
random = no
province = 411 #Orléanais
name = "EVENTNAME338433" #Full ownership of Orléanais
desc = "EVENTHIST338433"
#-#
date = { day = 1 month = january year = 1419 }
offset = 90
deathdate = { day = 29 month = december year = 1500 }
action_a = {
name = "GOOD_NEWS"
command = { type = provincemanpower which = 411 value = 4 }
command = { type = provincetax which = 411 value = 7 }
}
}
#(1419-1529) Auvergne
event = {
id = 338434
trigger = {
OR = {
AND = {
OR = {
owned = { province = 420 data = FRA }
owned = { province = 420 data = DAU }
}
year = 1528
}
NOT = {
owned = { province = 420 data = FRA }
owned = { province = 420 data = DAU }
}
}
}
random = no
province = 420 #Auvergne
name = "EVENTNAME338434" #Full ownership of Auvergne
desc = "EVENTHIST338434"
#-#
date = { day = 1 month = january year = 1419 }
offset = 90
deathdate = { day = 29 month = december year = 1529 }
action_a = {
name = "GOOD_NEWS"
command = { type = provincemanpower which = 420 value = 4 }
command = { type = provincetax which = 420 value = 2 }
}
}
#(1419-1529) Cévennes
event = {
id = 338435
trigger = {
OR = {
AND = {
OR = {
owned = { province = 421 data = FRA }
owned = { province = 421 data = DAU }
}
year = 1528
}
NOT = {
owned = { province = 421 data = FRA }
owned = { province = 421 data = DAU }
}
}
}
random = no
province = 421 #Cévennes
name = "EVENTNAME338435" #Full ownership of Cévennes
desc = "EVENTHIST338434"
#-#
date = { day = 1 month = january year = 1419 }
offset = 90
deathdate = { day = 29 month = december year = 1529 }
action_a = {
name = "GOOD_NEWS"
command = { type = provincemanpower which = 421 value = 4 }
command = { type = provincetax which = 421 value = 2 }
}
}
EVENTNAME338432;Full ownership of Maine;;;;;;;;;;
EVENTHIST338432;This province is now firmly in our hands.;;;;;;;;;;
EVENTNAME338433;Full ownership of Orléanais;;;;;;;;;;
EVENTHIST338433;This province is now firmly in our hands. Historically, with the unexpected death of Charles VIII, the direct senior line of the Valois lineage came to an end. The line of succession was traced back to Charles VI's younger brother, Louis I, Duke of Orleans, and through his direct heir Charles I, father of Louis II, of Orleans. With Louis II's ascension, the House of Orleans now ruled the French Kingdom. Louis' ascension brought the great Duchy of Orleans to the Crown of France as a Royal demesne.;;;;;;;;;;
EVENTNAME338434;Full ownership of Auvergne;;;;;;;;;;
EVENTHIST338434;This province is now firmly in our hands. Historically, Duke Charles III died heirless in 1527, and his wife Suzanne having passed away years before. Charles's vast estates were resumed to the Crown of France.;;;;;;;;;;
EVENTNAME338435;Full ownership of Cévennes;;;;;;;;;;
Maine should be seceded to Provence before 1450.
Orléanais should be "inherited" with Louis XII on the throne in 1498.
Bourbonnais (Cévennes + Auvergne) should be inherited in 1527.
I used year after historical date for France/Dauphiné because of the limitations of the script engine. Other countries get full control as soon as they own the provinces.
EDIT: modified names of events in order to avoid confusion with military control of the provinces.