ParadoxGameConverters/CK2ToEU4

(Reminder) Diplomacy creation

Closed this issue · 1 comments

Holy Roman Emperor
Sets the current Holy Roman Emperor

<year>.<month>.<day> = {
    emperor = <tag>
}
Celestial Emperor
Sets the current Celestial Emperor

<year>.<month>.<day> = {
    celestial_emperor = <tag>
}
Relations
All relations follow this format:

<type> = {
    first = <tag>       # The overlord, if the relation is a overlord-subject relation
    second = <tag>      # The subject, if the relation is a overlord-subject relation
    start_date = <date> # When to start applying the relationship
    end_date = <date>   # When to stop applying the relationship
}
These are the following valid relations:

alliance
royal_marriage
guarantee
warning
vassal
march
union
Dependency
For custom subject types, you can use the dependency effect, which allows to specify subject_type:

dependency = {
    subject_type = "<subject type>"
    first = <tag>       # The overlord, if the relation is a overlord-subject relation
    second = <tag>      # The subject, if the relation is a overlord-subject relation
    start_date = <date> # When to start applying the relationship
    end_date = <date>   # When to stop applying the relationship
}