I think I understand the triggers for the end of RCD and Peasants' War now, but I'm gonna post to make sure I know what I'm talking about.
in English, "if the Peasants' War has been happening for at least a thousand days and stability is at least 1, this event will fire an average of 72 months after your country's last revolt." (modified by the factors I didn't c/p in here)
For the end of RCD:
"If you have religious turmoil, this event will fire an average of two months after one of the following events:
A force-conversion
Catholic country, <10% Calvinist, <10% Protestant
Calvinist country, <10% Catholic, <10% Protestant
Protestant country, <10% Catholic, <10% Calvinist"
More interesting is the start of RCD.
RCD will never happen if you preemptively take Ecumenism or the Counter-Reformation. Otherwise, it will fire in a province that doesn't match the state religion an average of 540 months after that province acquires said religion.
Once that happens, the only way out is religious unity or force-conversion. A large country that uses tolerance instead of missionaries will never end its RCD.
Likewise, once the Peasants' War has begun, it'll only end once you've gone (average) six years without a revolt. In other words, a country that continues to grow - acquiring new provinces with nationalism before old conquests' nationalism has run out - will never end its Peasants' War.
Right?
Code:
# Order is returning
country_event = {
id = 3026
major = yes
trigger = {
has_country_flag = peasant_war
had_country_flag = { flag = peasant_war days = 1000 }
stability = 1
NOT = { num_of_revolts = 1 }
}
mean_time_to_happen = {
months = 72
in English, "if the Peasants' War has been happening for at least a thousand days and stability is at least 1, this event will fire an average of 72 months after your country's last revolt." (modified by the factors I didn't c/p in here)
For the end of RCD:
Code:
country_event = {
id = 2038
major = yes
trigger = {
has_country_flag = religious_turmoil
OR = {
force_converted = yes
AND = {
religion = catholic
NOT = { num_of_religion = { religion = protestant value = 0.1 } }
NOT = { num_of_religion = { religion = reformed value = 0.1 } }
}
AND = {
religion = protestant
NOT = { num_of_religion = { religion = catholic value = 0.1 } }
NOT = { num_of_religion = { religion = reformed value = 0.1 } }
}
AND = {
religion = reformed
NOT = { num_of_religion = { religion = protestant value = 0.1 } }
NOT = { num_of_religion = { religion = catholic value = 0.1 } }
}
}
}
mean_time_to_happen = {
months = 2
}
"If you have religious turmoil, this event will fire an average of two months after one of the following events:
A force-conversion
Catholic country, <10% Calvinist, <10% Protestant
Calvinist country, <10% Catholic, <10% Protestant
Protestant country, <10% Catholic, <10% Calvinist"
More interesting is the start of RCD.
Code:
province_event = {
id = 2031
major = yes
trigger = {
owner = {
NOT = { has_country_flag = religious_turmoil }
NOT = { has_country_flag = had_religious_turmoil }
OR = {
religion = catholic
religion = protestant
religion = reformed
}
NOT = { idea = ecumenism }
NOT = { has_country_modifier = counter_reformation }
}
NOT = { year = 1600 }
has_owner_religion = false
OR = {
religion = catholic
religion = protestant
religion = reformed
}
}
mean_time_to_happen = {
months = 540
RCD will never happen if you preemptively take Ecumenism or the Counter-Reformation. Otherwise, it will fire in a province that doesn't match the state religion an average of 540 months after that province acquires said religion.
Once that happens, the only way out is religious unity or force-conversion. A large country that uses tolerance instead of missionaries will never end its RCD.
Likewise, once the Peasants' War has begun, it'll only end once you've gone (average) six years without a revolt. In other words, a country that continues to grow - acquiring new provinces with nationalism before old conquests' nationalism has run out - will never end its Peasants' War.
Right?