Событие

Heir Menu

qa_debug.1002in_game/events/debug/qa_debug.txt:832

Which Heir do you want to create?

Цепочка событий

Каждое событие запускается тем, под которым оно вложено; строка под ним указывает, какой выбор к нему ведёт и когда.

  1. Character Menu
  2. Artist Menu
    ↳ Вариант E «We need more art!» · сразу
  3. Heir Menu
    ↳ Вариант D «An heir for the state!» · сразу
  4. Ruler Menu
    ↳ Вариант C «The state needs a new ruler!» · сразу
  5. Dynasty Menu
    ↳ Вариант J «Setup a target dynasty first» · сразу
  6. Ruler Menu (см. выше)
    ↳ Вариант A «[Dynasty]» · сразу

Определениеin_game/events/debug/qa_debug.txt:832

833type = country_event
834title = qa_debug.1002.title Heir Menu
835desc = qa_debug.1002.desc Which Heir do you want to create?
836outcome = neutral
837immediate = {
838ruler ?= {
839if = {
840limit = {
840is_female = no
}
841save_scope_as = ruler_father
}
843else = {
844save_scope_as = ruler_mother
}
}
847consort ?= {
848if = {
849limit = {
849is_female = no
}
850save_scope_as = consort_father
}
852else = {
853save_scope_as = consort_mother
}
}
856if = {
857limit = {
857exists = scope:ruler_father
}
858scope:ruler_father = {
858save_scope_as = father
}
}
860else_if = {
861limit = {
861exists = scope:consort_father
}
862scope:consort_father = {
862save_scope_as = father
}
}
864if = {
865limit = {
865exists = scope:ruler_mother
}
866scope:ruler_mother = {
866save_scope_as = mother
}
}
868else_if = {
869limit = {
869exists = scope:consort_mother
}
870scope:consort_mother = {
870save_scope_as = mother
}
}
}

Варианты

AA son of the Dynasty dynasty
877trigger = {
878ruler ?= {
878has_dynasty = yes
}
879OR = {
880exists = scope:father
881exists = scope:mother
}
}
884if = {
885limit = {
886exists = scope:father
887exists = scope:mother
}
889create_character = {
890save_scope_as = target_character
891dynasty = ruler.dynasty
893mother = scope:mother
894female = no
}
}
897else_if = {
898limit = {
899exists = scope:father
}
901create_character = {
902save_scope_as = target_character
903dynasty = ruler.dynasty
904father = scope:father
905female = no
}
}
908else = {
909create_character = {
910save_scope_as = target_character
911dynasty = ruler.dynasty
912mother = scope:mother
913female = no
}
}
916scope:target_character = {
916move_country = root
}
BA daughter of the Dynasty dynasty
921trigger = {
922ruler ?= {
922has_dynasty = yes
}
923OR = {
924exists = scope:father
925exists = scope:mother
}
}
928if = {
929limit = {
930exists = scope:father
931exists = scope:mother
}
933create_character = {
934save_scope_as = target_character
935dynasty = ruler.dynasty
936father = scope:father
937mother = scope:mother
938female = yes
}
}
941else_if = {
942limit = {
943exists = scope:father
}
945create_character = {
946save_scope_as = target_character
947dynasty = ruler.dynasty
948father = scope:father
949female = yes
}
}
952else = {
953create_character = {
954save_scope_as = target_character
955dynasty = ruler.dynasty
956mother = scope:mother
957female = yes
}
}
960scope:target_character = {
960move_country = root
}
CA son of the Dynasty dynasty
965trigger = {
966consort ?= {
966has_dynasty = yes
}
967OR = {
968exists = scope:father
969exists = scope:mother
}
}
972if = {
973limit = {
974exists = scope:father
975exists = scope:mother
}
977create_character = {
978save_scope_as = target_character
979dynasty = ruler.dynasty
980father = scope:father
981mother = scope:mother
982female = no
}
}
985else_if = {
986limit = {
987exists = scope:consort_father
}
989create_character = {
990save_scope_as = target_character
991dynasty = ruler.dynasty
992father = scope:father
993female = no
}
}
996else = {
997create_character = {
998save_scope_as = target_character
999dynasty = ruler.dynasty
1000mother = scope:mother
1001female = no
}
}
1004scope:target_character = {
1004move_country = root
}
DA daughter of the Dynasty dynasty
1009trigger = {
1010consort ?= {
1010has_dynasty = yes
}
1011OR = {
1012exists = scope:father
1013exists = scope:mother
}
}
1016if = {
1017limit = {
1018exists = scope:father
1019exists = scope:mother
}
1021create_character = {
1022save_scope_as = target_character
1023dynasty = consort.dynasty
1024father = scope:father
1025mother = scope:mother
1026female = yes
}
}
1029else_if = {
1030limit = {
1031exists = scope:consort_father
}
1033create_character = {
1034save_scope_as = target_character
1035dynasty = consort.dynasty
1036father = scope:father
1037female = yes
}
}
1040else = {
1041create_character = {
1042save_scope_as = target_character
1043dynasty = consort.dynasty
1044mother = scope:mother
1045female = yes
}
}
1048scope:target_character = {
1048move_country = root
}
EAn heir from the nobles
1053create_character = {
1054save_scope_as = target_character
}
1057scope:target_character = {
1057move_country = root
}
FAn heir from the burghers
1062create_character = {
1063save_scope_as = target_character
}
1066scope:target_character = {
1066move_country = root
}
GAn heir from the clergy
1071create_character = {
1072save_scope_as = target_character
}
1075scope:target_character = {
1075move_country = root
}
HAn heir from the peasants
1080create_character = {
1081save_scope_as = target_character
}
1084scope:target_character = {
1084move_country = root
}
IClose Menu