The Treaty of Tordesillas does not happen in Interregnum for obvious reasons.
But it is a great feature of the RW version and there is no good reason that it does not have a place in the Interregnum world. There is still a Pope, he still wants catholicism to be the one true faith, he still wants the heathens of the new worlds converted and he still wants to be able to make deals with heads of state to exercise Papal authority, even though it is already diminishing.
Now, we wouldn't want it to be as restrictive as the Treaty of Tordesillas, and we simple cannot reproduce some of its effects (the auto-capture feature, for example).
But we can have the Pope grant cores over certain regions, and this would form the basis of it.
One of the other reasons I like this idea is that it gives some advantage to staying Catholic. Currently the best reason for remaining catholic is the stability bonus (OK, but not scintillating) and the ability to be part of the 'majority' if the protestants and reformed states are not too numerous, which means cheaper DoWs and fewer potential enemies.
So, we already have the colonial files which, if you chose the MP version, grant cores both by province and - if you get enough within a certain region - for the whole of that region.
We would then overlay that with the Pope granting certain regions exclusively to a particular country. This would give you cores over that pre-definied region, and sleep the events that give the regional core based on province ownership.
Except that it wouldn't sleep them, it would just prevent a Catholic state from getting those events.
Yes, there would be a good chunk of work for me to do in upgrading all the triggers and cross-referencing the events. :wacko:
The events would trigger off the first country to find a province in one of the set regions.
Finally, these events would be shut down if Luther becomes Pope and the triggers for the colonial file events would include this condition.
Here's an example:
Then, of course, the existsing events would need to be modified, as for this standard version for California
But it is a great feature of the RW version and there is no good reason that it does not have a place in the Interregnum world. There is still a Pope, he still wants catholicism to be the one true faith, he still wants the heathens of the new worlds converted and he still wants to be able to make deals with heads of state to exercise Papal authority, even though it is already diminishing.
Now, we wouldn't want it to be as restrictive as the Treaty of Tordesillas, and we simple cannot reproduce some of its effects (the auto-capture feature, for example).
But we can have the Pope grant cores over certain regions, and this would form the basis of it.
One of the other reasons I like this idea is that it gives some advantage to staying Catholic. Currently the best reason for remaining catholic is the stability bonus (OK, but not scintillating) and the ability to be part of the 'majority' if the protestants and reformed states are not too numerous, which means cheaper DoWs and fewer potential enemies.
So, we already have the colonial files which, if you chose the MP version, grant cores both by province and - if you get enough within a certain region - for the whole of that region.
We would then overlay that with the Pope granting certain regions exclusively to a particular country. This would give you cores over that pre-definied region, and sleep the events that give the regional core based on province ownership.
Except that it wouldn't sleep them, it would just prevent a Catholic state from getting those events.
Yes, there would be a good chunk of work for me to do in upgrading all the triggers and cross-referencing the events. :wacko:
The events would trigger off the first country to find a province in one of the set regions.
Finally, these events would be shut down if Luther becomes Pope and the triggers for the colonial file events would include this condition.
Here's an example:
Code:
event = {
id = xxxxx1
random = no
trigger = {
NOT = { event = xxxxx2 } #version based on province 9
NOT = { event = xxxxx3 } #version based on province 10
NOT = { event = xxxxx4 } #version based on province 11
religion = catholic
NOT = { event = 464461 } #Luther became Pope
OR = {
NOT = { exists = PAP }
relation = { country = PAP value = 50 }
}
NOT = { flag = claim_calfornia } #just in case
NOT = { continent = america }
}
province = 8
name = "The First Mission to California"
desc = "With the establishment of the first colony in the region has come the establishment of the first catholic mission there as well. Seeing the wealth that is there to be had we have petitioned the Pope to grant us the sole right to colonise the region and bring the true faith to the heathens that live there."
action_a = {
name = "With his blessing"
command = { type = cash value = -100 }
command = { type = addcore which = 8 }
command = { type = addcore which = 9 }
command = { type = addcore which = 10 }
command = { type = addcore which = 11 }
command = { type = addcore which = 1474 }
command = { type = addcore which = 1475 }
command = { type = addcore which = 1476 }
command = { type = setflag which = claim_california }
}
}
Then, of course, the existsing events would need to be modified, as for this standard version for California
Code:
event = {
id = 810170
random = no
province = 8
trigger = {
OR = {
AND = {
owned = { province = 9 data = -1 }
owned = { province = 10 data = -1 }
}
AND = {
owned = { province = 1476 data = -1 }
owned = { province = 10 data = -1 }
owned = { province = 1475 data = -1 }
}
AND = {
owned = { province = 11 data = -1 }
owned = { province = 10 data = -1 }
owned = { province = 1475 data = -1 }
}
AND = {
owned = { province = 1476 data = -1 }
owned = { province = 10 data = -1 }
owned = { province = 11 data = -1 }
}
AND = {
owned = { province = 9 data = -1 }
owned = { province = 1474 data = -1 }
owned = { province = 1475 data = -1 }
}
AND = {
owned = { province = 9 data = -1 }
owned = { province = 1475 data = -1 }
owned = { province = 1476 data = -1 }
}
}
NOT = { flag = claim_calfornia } #just in case
NOT = { continent = america }
[B] #New triggers
OR = {
NOT = { religion = catholic } #doesn't stop claims by prots etc
AND = {
NOT = { event = xxxxx1 } #none of these
NOT = { event = xxxxx2 }
NOT = { event = xxxxx3 }
NOT = { event = xxxxx4 }
religion = catholic
}
}[/B]
}
name = "Claim the Region of California"
desc = "Having secured so much of the territory of the region, we are in a position to claim it all for the glory of our realm."
date = { day = 1 month = january year = 1419 }
offset = 1
deathdate = { day = 29 month = december year = 1820 }
action_a = {
name = "Excellent"
command = { type = addcore which = 8 }
command = { type = addcore which = 9 }
command = { type = addcore which = 10 }
command = { type = addcore which = 11 }
command = { type = addcore which = 1474 }
command = { type = addcore which = 1475 }
command = { type = addcore which = 1476 }
command = { type = vp value = 50 }
command = { type = setflag which = claim_california }
}
}