You are on page 1of 103

#AVIALABLE CUSTOM LOCALISATION KEYS

#When adding new custom loc keys, add them to the appropriate category (or add a
new one) and describe them. Name the strings "String_X" where x is its content.
# To not display anything, you can use 'localisation_key = ""'
#RELATIONSHIPS
#GetRootRelation
#GetSisterBrother
#GetSeductressSeducer
#GetManWomanPreference Gets man/woman depending on character's sexual p
references
#GetMenWomenPreference gets men/women depending on character's sexual p
references
#EDUCATION
#GetEducationSubject
#GetEducationRole
#GetEducationTool
#GetEducationalTopicPlural
#CHARACTER JOBS/TITLES
#GetActressActor
#GetAscetic
#GetQueenKing
#GetMasterMistressCap
#CHARACTER "DESCRIPTIONS"
#GetVice
#GetFaceDescription
#GetComplimentNoun
#GetComplimentAdjective
#GetInsultNoun
#GetInsultAdjective
#GetDisease
#GetWesternZodiacSign Gets the western astrological zodiac sign of cha
racter (based on birth date)
#SOCIETIES
#GetSocietyName
#GetSocietyNameCap
#GetSocietyRank
#GetSocietyCurrency
#GetDWReasonToJoin
#GetDWDevil
#GetDWDarkMagic
#GetDWDemon
#GetDWDemons
#GetDWMagician
#GetDWExpression
#GetMission
#GetMOGod
#GetMOSaint
#GetMOBuilding
#GetMOCode
#GetMOGreeting
#GetMOFarewell
#GetSRGreeting
#GetSRFarewell
#GetSRTrinketSymbol
#GetHermesThriceBlessed
#GetHermeticsRank
#GetHermeticDebateSubject
#GetSillyDebateSubject
#RELIGION
#GetHouseOfWorship Gets name for house of worship of charac
ter's religion (character)
#GetReligiousRite Gets name for a common religious rite (c
haracter)
#GetReligionWarrior
#GetReligionWarriorPlural
#GetReligiousPerson
#GetTrueReligionGroupPersons
#GetTrueReligionAdjective
#GetTrueReligionScriptureName
#GetTrueReligionHighGod
#GetTrueReligionPerson
#GetArtifactSource Gets name for bodypart artifact's source
(saint, holy man, hero)
#GetArtifactSourceCap
#PLACES
#GetCapitalHolding Gets an appropriate noun describing a ch
aracter's capital holding (character)
#GetHolding Gets an appropriate noun to describe a h
olding (holding)
#GetChamberOpening Gets door/tent opening for capital holdi
ng (character)
#GetChamber Gets chamber/tent for capital holding (c
haracter)
#GetReligionTempleName
#WEATHER, TIME
#GetWeatherAdjective
#GetTemperature
#GetMatterOfImportance

###RELATIONSHIPS###
defined_text = {
name = GetRootRelation
text = {
localisation_key = GetRelation_Wife
trigger = {
is_female = yes
any_spouse = { character = ROOT }
NOT = { is_child_of = ROOT }
NOT = { any_child = { character = ROOT } }
sibling_of_root_trigger = no
}
}
text = {
localisation_key = GetRelation_Husband
trigger = {
is_female = no
any_spouse = { character = ROOT }
NOT = { is_child_of = ROOT }
NOT = { any_child = { character = ROOT } }
sibling_of_root_trigger = no
}
}
text = {
localisation_key = GetRelation_MotherWife
trigger = {
is_female = yes
any_spouse = { character = ROOT }
any_child = { character = ROOT }
}
}
text = {
localisation_key = GetRelation_FatherHusband
trigger = {
is_female = no
any_spouse = { character = ROOT }
any_child = { character = ROOT }
}
}
text = {
localisation_key = GetRelation_DaughterWife
trigger = {
is_female = yes
any_spouse = { character = ROOT }
is_child_of = ROOT
}
}
text = {
localisation_key = GetRelation_SonHusband
trigger = {
is_female = no
any_spouse = { character = ROOT }
is_child_of = ROOT
}
}
text = {
localisation_key = GetRelation_SisterWife
trigger = {
is_female = yes
any_spouse = { character = ROOT }
sibling_of_root_trigger = yes
}
}
text = {
localisation_key = GetRelation_BrotherHusband
trigger = {
is_female = no
any_spouse = { character = ROOT }
sibling_of_root_trigger = yes
}
}
text = {
localisation_key = GetRelation_Mother
trigger = {
is_female = yes
any_child = { character = ROOT }
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Father
trigger = {
is_female = no
any_child = { character = ROOT }
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Grandmother
trigger = {
is_female = yes
any_child = { any_child = { character = ROOT } }
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Grandfather
trigger = {
is_female = no
any_child = { any_child = { character = ROOT } }
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Daughter
trigger = {
is_female = yes
is_child_of = ROOT
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Son
trigger = {
is_female = no
is_child_of = ROOT
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Granddaughter
trigger = {
is_female = yes
grandchild_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Grandson
trigger = {
is_female = no
grandchild_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Sister
trigger = {
is_female = yes
sibling_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Brother
trigger = {
is_female = no
sibling_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
}
}
text = {
localisation_key = GetRelation_Niece
trigger = {
is_female = yes
sibling_child_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
relationship_with_root_trigger = no
}
}
text = {
localisation_key = GetRelation_Nephew
trigger = {
is_female = no
sibling_child_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
relationship_with_root_trigger = no
}
}
text = {
localisation_key = GetRelation_Aunt
trigger = {
is_female = yes
parent_sibling_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
relationship_with_root_trigger = no
}
}
text = {
localisation_key = GetRelation_Uncle
trigger = {
is_female = no
parent_sibling_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
relationship_with_root_trigger = no
}
}
text = {
localisation_key = GetRelation_Cousin
trigger = {
sibling_in_law_of_root_trigger = yes
NOT = { any_spouse = { character = ROOT } }
relationship_with_root_trigger = no
}
}
text = {
localisation_key = GetRelation_SisterInLaw
trigger = {
is_female = yes
sibling_in_law_of_root_trigger = yes
NOT = { is_close_relative = ROOT }
relationship_with_root_trigger = no
}
}
text = {
localisation_key = GetRelation_BrotherInLaw
trigger = {
is_female = no
sibling_in_law_of_root_trigger = yes
NOT = { is_close_relative = ROOT }
relationship_with_root_trigger = no
}
}
text = {
localisation_key = GetRelation_Rival_Male
trigger = {
is_female = no
is_rival = ROOT
NOT = { is_close_relative = ROOT }
}
}
text = {
localisation_key = GetRelation_Rival_Female
trigger = {
is_female = yes
is_rival = ROOT
NOT = { is_close_relative = ROOT }
}
}
text = {
localisation_key = GetRelation_Friend_Male
trigger = {
is_female = no
is_friend = ROOT
NOT = { is_close_relative = ROOT }
}
}
text = {
localisation_key = GetRelation_Friend_Female
trigger = {
is_female = yes
is_friend = ROOT
NOT = { is_close_relative = ROOT }
}
}
text = {
localisation_key = GetRelation_Lover_Male
trigger = {
is_female = no
is_lover = ROOT
NOT = { is_close_relative = ROOT }
}
}
text = {
localisation_key = GetRelation_Lover_Female
trigger = {
is_female = yes
is_lover = ROOT
NOT = { is_close_relative = ROOT }
}
}
text = {
localisation_key = GetRelation_Kinswoman
trigger = {
is_female = yes
relationship_with_root_trigger = no
family_of_root_trigger = no
dynasty = ROOT
NOT = { dynasty = none }
}
}
text = {
localisation_key = GetRelation_Kinsman
trigger = {
is_female = no
relationship_with_root_trigger = no
family_of_root_trigger = no
dynasty = ROOT
NOT = { dynasty = none }
}
}
text = {
localisation_key = GetRelation_Liege_Male
trigger = {
is_female = no
relationship_with_root_trigger = no
family_of_root_trigger = no
is_liege_of = ROOT
OR = {
NOT = { dynasty = ROOT }
dynasty = none
}
}
}
text = {
localisation_key = GetRelation_Liege_Female
trigger = {
is_female = yes
relationship_with_root_trigger = no
family_of_root_trigger = no
is_liege_of = ROOT
OR = {
NOT = { dynasty = ROOT }
dynasty = none
}
}
}
text = {
localisation_key = GetRelation_Vassal_Male
trigger = {
is_female = no
relationship_with_root_trigger = no
family_of_root_trigger = no
is_landed = yes
liege = { character = ROOT }
OR = {
NOT = { dynasty = ROOT }
dynasty = none
}
}
}
text = {
localisation_key = GetRelation_Vassal_Female
trigger = {
is_female = yes
relationship_with_root_trigger = no
family_of_root_trigger = no
is_landed = yes
liege = { character = ROOT }
OR = {
NOT = { dynasty = ROOT }
dynasty = none
}
}
}
text = {
localisation_key = GetRelation_Courtier_Male
trigger = {
is_female = no
relationship_with_root_trigger = no
family_of_root_trigger = no
is_landed = no
liege = { character = ROOT }
OR = {
NOT = { dynasty = ROOT }
dynasty = none
}
}
}
text = {
localisation_key = GetRelation_Courtier_Female
trigger = {
is_female = yes
relationship_with_root_trigger = no
family_of_root_trigger = no
is_landed = no
liege = { character = ROOT }
OR = {
NOT = { dynasty = ROOT }
dynasty = none
}
}
}
text = {
localisation_key = GetRelation_Acquaintance
trigger = {
NOR = {
relationship_with_root_trigger = yes
family_of_root_trigger = yes
liege = { character = ROOT }
is_liege_of = ROOT
AND = {
dynasty = ROOT
NOT = { dynasty = none }
}
}
}
}
}
#The relationship This has to Root

### Sister or Brother (not necessarily related)


defined_text = {
name = GetSisterBrother
text = {
localisation_key = String_sister
trigger = {
is_female = yes
}
}
text = {
localisation_key = String_brother
trigger = {
is_female = no
}
}
}
defined_text = {
name = GetSisterBrotherCap
text = {
localisation_key = String_Sister
trigger = {
is_female = yes
}
}
text = {
localisation_key = String_Brother
trigger = {
is_female = no
}
}
}
defined_text = {
name = GetDaughterSon
text = {
localisation_key = String_daughter
trigger = {
is_female = yes
}
}
text = {
localisation_key = String_son
trigger = {
is_female = no
}
}
}
### Seductress or Seducer
defined_text = {
name = GetSeductressSeducer
text = {
localisation_key = String_seductress
trigger = { is_female = yes }
}
text = {
localisation_key = String_seducer
trigger = { is_female = no }
}
}
### Seductress or Seducer
defined_text = {
name = GetSeductressSeducerCap
text = {
localisation_key = String_Seductress
trigger = { is_female = yes }
}
text = {
localisation_key = String_Seducer
trigger = { is_female = no }
}
}
defined_text = {
name = GetManWomanPreference
text = {
localisation_key = String_man
trigger = { prefers_men_trigger = yes }
}
text = {
localisation_key = String_woman
trigger = { prefers_men_trigger = no }
}
}
defined_text = {
name = GetMenWomenPreference
text = {
localisation_key = String_men
trigger = { prefers_men_trigger = yes }
}
text = {
localisation_key = String_women
trigger = { prefers_men_trigger = no }
}
}

###EDUCATION###
defined_text = {
name = GetEducationSubject
text = {
localisation_key = GetEducationSubject_Warfare
trigger = { has_education_martial_trigger = yes }
}
text = {
localisation_key = GetEducationSubject_Diplomacy
trigger = { has_education_diplomacy_trigger = yes }
}
text = {
localisation_key = GetEducationSubject_Stewardship
trigger = { has_education_stewardship_trigger = yes }
}
text = {
localisation_key = GetEducationSubject_Intrigue
trigger = { has_education_intrigue_trigger = yes }
}
text = {
localisation_key = GetEducationSubject_Theology
trigger = { has_education_learning_trigger = yes }
}
}
defined_text = {
name = GetEducationRole
text = {
localisation_key = GetEducationRole_Strategist
trigger = { has_education_martial_trigger = yes }
}
text = {
localisation_key = GetEducationRole_Diplomat
trigger = { has_education_diplomacy_trigger = yes }
}
text = {
localisation_key = GetEducationRole_Steward
trigger = { has_education_stewardship_trigger = yes }
}
text = {
localisation_key = GetEducationRole_Schemer
trigger = { has_education_intrigue_trigger = yes }
}
text = {
localisation_key = GetEducationRole_Theologian
trigger = { has_education_learning_trigger = yes }
}
}
defined_text = {
name = GetEducationTool
text = {
localisation_key = String_war_table
trigger = { has_education_martial_trigger = yes }
}
text = {
localisation_key = String_correspondence
trigger = { has_education_diplomacy_trigger = yes }
}
text = {
localisation_key = String_ledger
trigger = { has_education_stewardship_trigger = yes }
}
text = {
localisation_key = String_maps
trigger = { has_education_intrigue_trigger = yes }
}
text = {
localisation_key = String_scrolls
trigger = { has_education_learning_trigger = yes }
}
}
defined_text = {
name = GetEducationalTopicPlural
text = {
localisation_key = String_strategies
trigger = { has_education_martial_trigger = yes }
}
text = {
localisation_key = String_troop_compositions
trigger = { has_education_martial_trigger = yes }
}
text = {
localisation_key = String_diplomats
trigger = { has_education_diplomacy_trigger = yes }
}
text = {
localisation_key = String_alliances
trigger = { has_education_diplomacy_trigger = yes }
}
text = {
localisation_key = String_phrasings
trigger = { has_education_diplomacy_trigger = yes }
}
text = {
localisation_key = String_trade_routes
trigger = { has_education_stewardship_trigger = yes }
}
text = {
localisation_key = String_investment_opportunities
trigger = { has_education_stewardship_trigger = yes }
}
text = {
localisation_key = String_building_plans
trigger = { has_education_stewardship_trigger = yes }
}
text = {
localisation_key = String_tax_levels
trigger = { has_education_stewardship_trigger = yes }
}
text = {
localisation_key = String_poisons
trigger = { has_education_intrigue_trigger = yes }
}
text = {
localisation_key = String_spies
trigger = { has_education_intrigue_trigger = yes }
}
text = {
localisation_key = String_travel_routes
trigger = { has_education_intrigue_trigger = yes }
}
text = {
localisation_key = String_potential_accomplices
trigger = { has_education_intrigue_trigger = yes }
}
text = {
localisation_key = String_GetPriestName_plural
trigger = { has_education_learning_trigger = yes }
}
text = {
localisation_key = String_translations
trigger = { has_education_learning_trigger = yes }
}
text = {
localisation_key = String_doctrines
trigger = { has_education_learning_trigger = yes }
}
text = {
localisation_key = String_passages_from_GetScriptureName
trigger = { has_education_learning_trigger = yes }
}
}
###CHARACTER JOBS###
defined_text = {
name = GetActressActor
text = {
trigger = { is_female = no }
localisation_key = Actor
}
text = {
trigger = { is_female = yes }
localisation_key = Actress
}
}
defined_text = {
name = GetAscetic
text = {
trigger = { trait = monk }
localisation_key = String_monk
}
text = {
trigger = { trait = nun }
localisation_key = String_nun
}
text = {
trigger = { trait = muni }
localisation_key = String_muni
}
text = {
trigger = { trait = aryika }
localisation_key = String_aryika
}
text = {
trigger = { trait = bhikkhu }
localisation_key = String_bhikkhu
}
text = {
trigger = { trait = bhikkhuni }
localisation_key = String_bhikkhuni
}
text = {
trigger = { trait = sanyasi }
localisation_key = String_sanyasi
}
text = {
trigger = { trait = sanyasini }
localisation_key = String_sanyasini
}
}
defined_text = {
name = GetQueenKing
text = {
trigger = { is_female = no }
localisation_key = String_Queen
}
text = {
trigger = { is_female = yes }
localisation_key = String_King
}
}
defined_text = {
name = GetMasterMistressCap
text = {
trigger = { is_female = no }
localisation_key = String_Mistress
}
text = {
trigger = { is_female = yes }
localisation_key = String_Master
}
}

###CHARACTER DESCRIPTIONS###
defined_text = {
name = GetVice
text = {
trigger = { trait = lustful }
localisation_key = Vice_Lustful
}
text = {
trigger = { trait = gluttonous }
localisation_key = GetViceGluttonous
}
text = {
trigger = { trait = greedy }
localisation_key = Vice_Greedy
}
text = {
trigger = { trait = slothful }
localisation_key = Vice_Slothful
}
text = {
trigger = { trait = wroth }
localisation_key = GetViceWroth
}
text = {
trigger = { trait = envious }
localisation_key = GetViceEnvious
}
text = {
trigger = { trait = proud }
localisation_key = Vice_Proud
}
}
defined_text = {
name = GetFaceDescription
text = {
trigger = {
trait = fair
is_female = yes
NOT = { trait = horse }
}
localisation_key = String_beautiful
}
text = {
trigger = {
trait = fair
is_female = no
NOT = { trait = horse }
}
localisation_key = String_handsome
}
text = {
trigger = { trait = ugly }
localisation_key = String_hideous
}
text = {
trigger = { trait = scarred }
localisation_key = String_scarred
}
text = {
trigger = { is_ill = yes }
localisation_key = String_sickly
}
text = {
trigger = {
OR = {
trait = disfigured
trait = blinded
trait = one_eyed
trait = leper
}
}
localisation_key = String_disfigured
}
text = {
trigger = { trait = harelip }
localisation_key = String_harelipped
}
text = {
trigger = {
is_strong_trigger = yes
NOT = { trait = horse }
}
localisation_key = String_strong_jawed
}
text = {
trigger = { is_weak_trigger = yes }
localisation_key = String_thin
}
text = {
trigger = {
OR = {
trait = lunatic
trait = possessed
trait = rabies
}
}
localisation_key = String_crazed
}
text = {
trigger = {
interesting_face_trigger = no
graphical_culture = norsegfx
}
localisation_key = String_ruddy
}
text = {
trigger = {
interesting_face_trigger = no
OR = {
graphical_culture = occitangfx
graphical_culture = italiangfx
graphical_culture = southerngfx
graphical_culture = byzantinegfx
graphical_culture = byzantinegfx
graphical_culture = easternslavicgfx
graphical_culture = byzantinegfx
graphical_culture = turkishgfx
graphical_culture = cumangfx
graphical_culture = mongolgfx
graphical_culture = persiangfx
}
}
localisation_key = String_tanned
}
text = {
trigger = {
interesting_face_trigger = no
OR = {
graphical_culture = arabicgfx
graphical_culture = andalusiangfx
graphical_culture = muslimgfx
graphical_culture = mesoamericangfx
}
}
localisation_key = String_bronzed
}
text = {
trigger = {
interesting_face_trigger = no
OR = {
graphical_culture = africangfx
graphical_culture = westafricangfx
}
}
localisation_key = String_dark_skinned
}
text = {
trigger = {
interesting_face_trigger = no
OR = {
graphical_culture = indiangfx
graphical_culture = southindiangfx
}
}
localisation_key = String_copper_skinned
}
text = {
trigger = { trait = horse }
localisation_key = String_long
}
text = {
weight_multiplier = { factor = 100 }
trigger = {
NOR = {
interesting_face_trigger = yes
graphical_culture = occitangfx
graphical_culture = italiangfx
graphical_culture = southerngfx
graphical_culture = byzantinegfx
graphical_culture = byzantinegfx
graphical_culture = easternslavicgfx
graphical_culture = byzantinegfx
graphical_culture = turkishgfx
graphical_culture = cumangfx
graphical_culture = mongolgfx
graphical_culture = persiangfx
graphical_culture = arabicgfx
graphical_culture = andalusiangfx
graphical_culture = muslimgfx
graphical_culture = mesoamericangfx
graphical_culture = africangfx
graphical_culture = westafricangfx
graphical_culture = indiangfx
graphical_culture = southindiangfx
}
}
localisation_key = String_pale
}
}
defined_text = {
name = GetComplimentAdjective
text = {
trigger = {
OR = {
trait = intricate_webweaver
trait = elusive_shadow
trait = fortune_builder
trait = midas_touched
trait = scholarly_theologian
trait = mastermind_theologian
}
}
localisation_key = COMPL_CLEVER
}
text = {
trigger = {
OR = {
trait = charismatic_negotiator
trait = grey_eminence
}
}
localisation_key = COMPL_ELOQUENT
}
text = {
trigger = {
OR = {
trait = fortune_builder
trait = midas_touched
}
}
localisation_key = COMPL_THRIFTY
}
text = {
trigger = {
OR = {
trait = scholarly_theologian
trait = mastermind_theologian
}
}
localisation_key = COMPL_LEARNED
}
}

defined_text = {
name = GetComplimentNoun
text = {
trigger = {
}
localisation_key = v
}
}
defined_text = {
name = GetInsultAdjective
text = {
trigger = {
OR = {
trait = amateurish_plotter
trait = flamboyant_schemer
trait = intricate_webweaver
trait = elusive_shadow
}
}
localisation_key = INSULT_SCHEMING
}
text = {
trigger = {
OR = {
trait = naive_appeaser
trait = underhanded_rogue
trait = charismatic_negotiator
trait = grey_eminence
}
}
localisation_key = INSULT_TWOFACED
}
text = {
trigger = {
OR = {
trait = indulgent_wastrel
trait = thrifty_clerk
trait = charismatic_negotiator
trait = grey_eminence
}
}
localisation_key = INSULT_MISERLY
}
text = {
trigger = {
OR = {
trait = detached_priest
trait = martial_cleric
trait = scholarly_theologian
trait = mastermind_theologian
}
}
localisation_key = INSULT_DRIVELING
}
text = {
trigger = {
OR = {
trait = amateurish_plotter
trait = naive_appeaser
trait = indulgent_wastrel
trait = detached_priest
}
}
localisation_key = INSULT_STUPID
}
text = {
trigger = { trait = depressed }
localisation_key = INSULT_LUGUBRIOUS
}
text = {
trigger = { trait = depressed }
localisation_key = INSULT_LUGUBRIOUS
}
text = {
trigger = { trait = lunatic }
localisation_key = INSULT_DEMENTED
}
text = {
trigger = { trait = lunatic }
localisation_key = INSULT_CRAZED
}
text = {
trigger = { trait = lunatic }
localisation_key = INSULT_CRAZY
}
text = {
trigger = { trait = lunatic }
localisation_key = INSULT_DEMONIC
}
text = {
trigger = {
OR = {
trait = syphilitic
trait = has_aztec_disease
}
}
localisation_key = INSULT_DEMONIC
}
text = {
trigger = { trait = leper }
localisation_key = INSULT_UNCLEAN
}
text = {
trigger = {
OR = {
trait = infirm #todo?
}
}
localisation_key = INSULT_CRIPPLE
}
}
defined_text = {
name = GetInsultNoun
text = {
trigger = { trait = depressed }
localisation_key = INSULT_LUGUBRIOUS
}
text = {
trigger = { trait = lunatic }
localisation_key = INSULT_LUNATIC
}
text = {
trigger = { trait = lunatic }
localisation_key = INSULT_BAT
}
text = {
trigger = {
trait = possessed
is_female = no
}
localisation_key = INSULT_WARLOCK
}
text = {
trigger = {
trait = possessed
is_female = yes
}
localisation_key = INSULT_DEVIL_WOMAN
}
text = {
trigger = { trait = possessed }
localisation_key = INSULT_DEVIL
}
text = {
trigger = { trait = leper }
localisation_key = INSULT_LEPER
}
text = {
trigger = {
OR = {
trait = maimed
}
}
localisation_key = INSULT_CRIPPLE
}
}
defined_text = {
name = GetDisease
text = {
trigger = { trait = ill }
localisation_key = String_fever
}
text = {
trigger = { trait = pneumonic }
localisation_key = string_pneumonia
}
text = {
trigger = { trait = syphilitic }
localisation_key = String_syphilis
}
text = {
trigger = { trait = leper }
localisation_key = String_leprocy
}
text = {
trigger = { trait = has_tuberculosis }
localisation_key = String_consumption
}
text = {
trigger = { trait = has_typhoid_fever }
localisation_key = String_slow_fever
}
text = {
trigger = { trait = has_typhus }
localisation_key = String_camp_fever
}
text = {
trigger = { trait = has_bubonic_plague }
localisation_key = String_the_Plague
}
text = {
trigger = { trait = has_measles }
localisation_key = String_measles
}
text = {
trigger = { trait = has_small_pox }
localisation_key = String_smallpox
}
text = {
trigger = { trait = has_aztec_disease }
localisation_key = String_syphilis
}
text = {
trigger = { trait = flu }
localisation_key = String_flu
}
text = {
trigger = { trait = dysentery }
localisation_key = String_dysentery
}
text = {
trigger = { trait = gout }
localisation_key = String_gout
}
text = {
trigger = { trait = food_poisoning }
localisation_key = String_food_poisoning
}
text = {
trigger = { trait = rabies }
localisation_key = String_rabies
}
text = {
trigger = { trait = dancing_plague }
localisation_key = String_dancing_plague
}
text = {
trigger = { trait = scurvy }
localisation_key = String_scurvy
}
text = {
trigger = { trait = cancer }
localisation_key = String_Cancer
}
}
###SOCIETIES###
defined_text = {
name = GetSocietyName # Returns the name of target's society
text = {
localisation_key = String_the_Assassins
trigger = { society_member_of = the_assassins }
}
text = {
localisation_key = String_the_Satanists
trigger = { society_member_of = the_satanists }
}
text = {
localisation_key = String_the_Cold_Ones
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = String_the_Trollcrafters
trigger = { society_member_of = the_trollcrafters }
}
text = {
localisation_key = String_the_Cult_of_Kali_Purusha
trigger = { society_member_of = the_cult_of_kali }
}
text = {
localisation_key = String_the_Plaguebringers
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = String_the_Benedictine_Order
trigger = { society_member_of = monastic_order_benedictine }
}
text = {
localisation_key = String_the_Dominican_Order
trigger = { society_member_of = monastic_order_dominican }
}
text = {
localisation_key = String_the_Community_of_Saint_Basil
trigger = { society_member_of = monastic_order_orthodox }
}
text = {
localisation_key = String_the_Community_of_Saint_Abraham
trigger = { society_member_of = monastic_order_nestorian }
}
text = {
localisation_key = String_the_Community_of_Saint_Anthony
trigger = { society_member_of = monastic_order_monophysite }
}
text = {
localisation_key = String_the_Sravaka_Samgha
trigger = { society_member_of = monastic_order_jain }
}
text = {
localisation_key = String_the_Advaita_Matha
trigger = { society_member_of = monastic_order_hindu }
}
text = {
localisation_key = String_the_Savaka_Sangha
trigger = { society_member_of = monastic_order_buddhist }
}
text = {
localisation_key = hermetics
trigger = { society_member_of = hermetics }
}
}
defined_text = {
name = GetSocietyNameCap # Returns the name of target's society with ini
tal Capital letter
text = {
localisation_key = the_assassins
trigger = { society_member_of = the_assassins }
}
text = {
localisation_key = the_satanists
trigger = { society_member_of = the_satanists }
}
text = {
localisation_key = the_cold_ones
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = the_trollcrafters
trigger = { society_member_of = the_trollcrafters }
}
text = {
localisation_key = the_cult_of_kali
trigger = { society_member_of = the_cult_of_kali }
}
text = {
localisation_key = the_plaguebringers
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = monastic_order_benedictine
trigger = { society_member_of = monastic_order_benedictine }
}
text = {
localisation_key = monastic_order_dominican
trigger = { society_member_of = monastic_order_dominican }
}
text = {
localisation_key = monastic_order_orthodox
trigger = { society_member_of = monastic_order_orthodox }
}
text = {
localisation_key = monastic_order_nestorian
trigger = { society_member_of = monastic_order_nestorian }
}
text = {
localisation_key = monastic_order_monophysite
trigger = { society_member_of = monastic_order_monophysite }
}
text = {
localisation_key = monastic_order_jain
trigger = { society_member_of = monastic_order_jain }
}
text = {
localisation_key = monastic_order_hindu
trigger = { society_member_of = monastic_order_hindu }
}
text = {
localisation_key = monastic_order_buddhist
trigger = { society_member_of = monastic_order_buddhist }
}
text = {
localisation_key = hermeticsCap
trigger = { society_member_of = hermetics }
}
}
defined_text = {
name = GetSocietyRank
text = {
localisation_key = the_assassins_rank_1_female
trigger = { is_female = yes society_rank = { society = the_assas
sins rank == 1 } }
}
text = {
localisation_key = the_assassins_rank_1_male
trigger = { is_female = no society_rank = { society = the_assass
ins rank == 1 } }
}
text = {
localisation_key = the_assassins_rank_2_female
trigger = { is_female = yes society_rank = { society = the_assas
sins rank == 2 } }
}
text = {
localisation_key = the_assassins_rank_2_male
trigger = { is_female = no society_rank = { society = the_assass
ins rank == 2 } }
}
text = {
localisation_key = the_assassins_rank_3_female
trigger = { is_female = yes society_rank = { society = the_assas
sins rank == 3 } }
}
text = {
localisation_key = the_assassins_rank_3_male
trigger = { is_female = no society_rank = { society = the_assass
ins rank == 3 } }
}
text = {
localisation_key = the_assassins_rank_4_female
trigger = { is_female = yes society_rank = { society = the_assas
sins rank == 4 } }
}
text = {
localisation_key = the_assassins_rank_4_male
trigger = { is_female = no society_rank = { society = the_assass
ins rank == 4 } }
}
text = {
localisation_key = the_satanists_rank_1_female
trigger = { is_female = yes society_rank = { society = the_satan
ists rank == 1 } }
}
text = {
localisation_key = the_satanists_rank_1_male
trigger = { is_female = no society_rank = { society = the_satani
sts rank == 1 } }
}
text = {
localisation_key = the_satanists_rank_2_female
trigger = { is_female = yes society_rank = { society = the_satan
ists rank == 2 } }
}
text = {
localisation_key = the_satanists_rank_2_male
trigger = { is_female = no society_rank = { society = the_satani
sts rank == 2 } }
}
text = {
localisation_key = the_satanists_rank_3_female
trigger = { is_female = yes society_rank = { society = the_satan
ists rank == 3 } }
}
text = {
localisation_key = the_satanists_rank_3_male
trigger = { is_female = no society_rank = { society = the_satani
sts rank == 3 } }
}
text = {
localisation_key = the_satanists_rank_4_female
trigger = { is_female = yes society_rank = { society = the_satan
ists rank == 4 } }
}
text = {
localisation_key = the_satanists_rank_4_male
trigger = { is_female = no society_rank = { society = the_satani
sts rank == 4 } }
}
text = {
localisation_key = the_cold_ones_rank_1_female
trigger = { is_female = yes society_rank = { society = the_cold_
ones rank == 1 } }
}
text = {
localisation_key = the_cold_ones_rank_1_male
trigger = { is_female = no society_rank = { society = the_cold_o
nes rank == 1 } }
}
text = {
localisation_key = the_cold_ones_rank_2_female
trigger = { is_female = yes society_rank = { society = the_cold_
ones rank == 2 } }
}
text = {
localisation_key = the_cold_ones_rank_2_male
trigger = { is_female = no society_rank = { society = the_cold_o
nes rank == 2 } }
}
text = {
localisation_key = the_cold_ones_rank_3_female
trigger = { is_female = yes society_rank = { society = the_cold_
ones rank == 3 } }
}
text = {
localisation_key = the_cold_ones_rank_3_male
trigger = { is_female = no society_rank = { society = the_cold_o
nes rank == 3 } }
}
text = {
localisation_key = the_cold_ones_rank_4_female
trigger = { is_female = yes society_rank = { society = the_cold_
ones rank == 4 } }
}
text = {
localisation_key = the_cold_ones_rank_4_male
trigger = { is_female = no society_rank = { society = the_cold_o
nes rank == 4 } }
}
text = {
localisation_key = the_plaguebringers_rank_1_female
trigger = { is_female = yes society_rank = { society = the_plagu
ebringers rank == 1 } }
}
text = {
localisation_key = the_plaguebringers_rank_1_male
trigger = { is_female = no society_rank = { society = the_plague
bringers rank == 1 } }
}
text = {
localisation_key = the_plaguebringers_rank_2_female
trigger = { is_female = yes society_rank = { society = the_plagu
ebringers rank == 2 } }
}
text = {
localisation_key = the_plaguebringers_rank_2_male
trigger = { is_female = no society_rank = { society = the_plague
bringers rank == 2 } }
}
text = {
localisation_key = the_plaguebringers_rank_3_female
trigger = { is_female = yes society_rank = { society = the_plagu
ebringers rank == 3 } }
}
text = {
localisation_key = the_plaguebringers_rank_3_male
trigger = { is_female = no society_rank = { society = the_plague
bringers rank == 3 } }
}
text = {
localisation_key = the_plaguebringers_rank_4_female
trigger = { is_female = yes society_rank = { society = the_plagu
ebringers rank == 4 } }
}
text = {
localisation_key = the_plaguebringers_rank_4_male
trigger = { is_female = no society_rank = { society = the_plague
bringers rank == 4 } }
}
text = {
localisation_key = the_trollcrafters_rank_1_female
trigger = { is_female = yes society_rank = { society = the_troll
crafters rank == 1 } }
}
text = {
localisation_key = the_trollcrafters_rank_1_male
trigger = { is_female = no society_rank = { society = the_trollc
rafters rank == 1 } }
}
text = {
localisation_key = the_trollcrafters_rank_2_female
trigger = { is_female = yes society_rank = { society = the_troll
crafters rank == 2 } }
}
text = {
localisation_key = the_trollcrafters_rank_2_male
trigger = { is_female = no society_rank = { society = the_trollc
rafters rank == 2 } }
}
text = {
localisation_key = the_trollcrafters_rank_3_female
trigger = { is_female = yes society_rank = { society = the_troll
crafters rank == 3 } }
}
text = {
localisation_key = the_trollcrafters_rank_3_male
trigger = { is_female = no society_rank = { society = the_trollc
rafters rank == 3 } }
}
text = {
localisation_key = the_trollcrafters_rank_4_female
trigger = { is_female = yes society_rank = { society = the_troll
crafters rank == 4 } }
}
text = {
localisation_key = the_trollcrafters_rank_4_male
trigger = { is_female = no society_rank = { society = the_trollc
rafters rank == 4 } }
}
text = {
localisation_key = the_cult_of_kali_rank_1_female
trigger = { is_female = yes society_rank = { society = the_cult_
of_kali rank == 1 } }
}
text = {
localisation_key = the_cult_of_kali_rank_1_male
trigger = { is_female = no society_rank = { society = the_cult_o
f_kali rank == 1 } }
}
text = {
localisation_key = the_cult_of_kali_rank_2_female
trigger = { is_female = yes society_rank = { society = the_cult_
of_kali rank == 2 } }
}
text = {
localisation_key = the_cult_of_kali_rank_2_male
trigger = { is_female = no society_rank = { society = the_cult_o
f_kali rank == 2 } }
}
text = {
localisation_key = the_cult_of_kali_rank_3_female
trigger = { is_female = yes society_rank = { society = the_cult_
of_kali rank == 3 } }
}
text = {
localisation_key = the_cult_of_kali_rank_3_male
trigger = { is_female = no society_rank = { society = the_cult_o
f_kali rank == 3 } }
}
text = {
localisation_key = the_cult_of_kali_rank_4_female
trigger = { is_female = yes society_rank = { society = the_cult_
of_kali rank == 4 } }
}
text = {
localisation_key = the_cult_of_kali_rank_4_male
trigger = { is_female = no society_rank = { society = the_cult_o
f_kali rank == 4 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_benedictine rank == 1 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_benedictine rank == 1 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_benedictine rank == 2 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_benedictine rank == 2 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_benedictine rank == 3 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_benedictine rank == 3 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_benedictine rank == 4 } }
}
text = {
localisation_key = monastic_order_benedictine_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_benedictine rank == 4 } }
}
text = {
localisation_key = monastic_order_dominican_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_dominican rank == 1 } }
}
text = {
localisation_key = monastic_order_dominican_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_dominican rank == 1 } }
}
text = {
localisation_key = monastic_order_dominican_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_dominican rank == 2 } }
}
text = {
localisation_key = monastic_order_dominican_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_dominican rank == 2 } }
}
text = {
localisation_key = monastic_order_dominican_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_dominican rank == 3 } }
}
text = {
localisation_key = monastic_order_dominican_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_dominican rank == 3 } }
}
text = {
localisation_key = monastic_order_dominican_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_dominican rank == 4 } }
}
text = {
localisation_key = monastic_order_dominican_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_dominican rank == 4 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_orthodox rank == 1 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_orthodox rank == 1 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_orthodox rank == 2 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_orthodox rank == 2 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_orthodox rank == 3 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_orthodox rank == 3 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_orthodox rank == 4 } }
}
text = {
localisation_key = monastic_order_orthodox_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_orthodox rank == 4 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_nestorian rank == 1 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_nestorian rank == 1 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_nestorian rank == 2 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_nestorian rank == 2 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_nestorian rank == 3 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_nestorian rank == 3 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_nestorian rank == 4 } }
}
text = {
localisation_key = monastic_order_nestorian_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_nestorian rank == 4 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_monophysite rank == 1 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_monophysite rank == 1 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_monophysite rank == 2 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_monophysite rank == 2 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_monophysite rank == 3 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_monophysite rank == 3 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_monophysite rank == 4 } }
}
text = {
localisation_key = monastic_order_monophysite_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_monophysite rank == 4 } }
}
text = {
localisation_key = monastic_order_jain_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_jain rank == 1 } }
}
text = {
localisation_key = monastic_order_jain_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_jain rank == 1 } }
}
text = {
localisation_key = monastic_order_jain_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_jain rank == 2 } }
}
text = {
localisation_key = monastic_order_jain_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_jain rank == 2 } }
}
text = {
localisation_key = monastic_order_jain_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_jain rank == 3 } }
}
text = {
localisation_key = monastic_order_jain_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_jain rank == 3 } }
}
text = {
localisation_key = monastic_order_jain_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_jain rank == 4 } }
}
text = {
localisation_key = monastic_order_jain_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_jain rank == 4 } }
}
text = {
localisation_key = monastic_order_hindu_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_hindu rank == 1 } }
}
text = {
localisation_key = monastic_order_hindu_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_hindu rank == 1 } }
}
text = {
localisation_key = monastic_order_hindu_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_hindu rank == 2 } }
}
text = {
localisation_key = monastic_order_hindu_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_hindu rank == 2 } }
}
text = {
localisation_key = monastic_order_hindu_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_hindu rank == 3 } }
}
text = {
localisation_key = monastic_order_hindu_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_hindu rank == 3 } }
}
text = {
localisation_key = monastic_order_hindu_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_hindu rank == 4 } }
}
text = {
localisation_key = monastic_order_hindu_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_hindu rank == 4 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_1_female
trigger = { is_female = yes society_rank = { society = monastic_
order_buddhist rank == 1 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_1_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_buddhist rank == 1 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_2_female
trigger = { is_female = yes society_rank = { society = monastic_
order_buddhist rank == 2 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_2_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_buddhist rank == 2 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_3_female
trigger = { is_female = yes society_rank = { society = monastic_
order_buddhist rank == 3 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_3_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_buddhist rank == 3 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_4_female
trigger = { is_female = yes society_rank = { society = monastic_
order_buddhist rank == 4 } }
}
text = {
localisation_key = monastic_order_buddhist_rank_4_male
trigger = { is_female = no society_rank = { society = monastic_o
rder_buddhist rank == 4 } }
}
text = {
localisation_key = String_Lady
trigger = {
is_female = yes
is_in_society = no
}
}
text = {
localisation_key = String_Lord
trigger = {
is_female = no
is_in_society = no
}
}
}
defined_text = {
name = GetSocietyCurrency
text = {
localisation_key = currency_name_the_assassins
trigger = { society_member_of = the_assassins }
}
text = {
localisation_key = currency_name_the_satanists
trigger = { society_member_of = the_satanists }
}
text = {
localisation_key = currency_name_the_cold_ones
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = currency_name_the_trollcrafters
trigger = { society_member_of = the_trollcrafters }
}
text = {
localisation_key = currency_name_the_cult_of_kali
trigger = { society_member_of = the_cult_of_kali }
}
text = {
localisation_key = currency_name_the_plaguebringers
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = currency_name_monastic_order_benedictine
trigger = { society_member_of = monastic_order_benedictine }
}
text = {
localisation_key = currency_name_monastic_order_dominican
trigger = { society_member_of = monastic_order_dominican }
}
text = {
localisation_key = currency_name_monastic_order_orthodox
trigger = { society_member_of = monastic_order_orthodox }
}
text = {
localisation_key = currency_name_monastic_order_nestorian
trigger = { society_member_of = monastic_order_nestorian }
}
text = {
localisation_key = currency_name_monastic_order_monophysite
trigger = { society_member_of = monastic_order_monophysite }
}
text = {
localisation_key = currency_name_monastic_order_jain
trigger = { society_member_of = monastic_order_jain }
}
text = {
localisation_key = currency_name_monastic_order_hindu
trigger = { society_member_of = monastic_order_hindu }
}
text = {
localisation_key = currency_name_monastic_order_buddhist
trigger = { society_member_of = monastic_order_buddhist }
}
text = {
localisation_key = currency_name_secret_religious_society_cathol
ic
trigger = { society_member_of = secret_religious_society_catholi
c }
}
text = {
localisation_key = currency_name_secret_religious_society_orthod
ox
trigger = { society_member_of = secret_religious_society_orthodo
x }
}
text = {
localisation_key = currency_name_secret_religious_society_sunni
trigger = { society_member_of = secret_religious_society_sunni }
}
text = {
localisation_key = currency_name_secret_religious_society_shiite
trigger = { society_member_of = secret_religious_society_shiite
}
}
text = {
localisation_key = currency_name_secret_religious_society_jewish
trigger = { society_member_of = secret_religious_society_jewish
}
}
text = {
localisation_key = currency_name_secret_religious_society_zoroas
trian
trigger = { society_member_of = secret_religious_society_zoroast
rian }
}
text = {
localisation_key = currency_name_secret_religious_society_hindui
sm
trigger = { society_member_of = secret_religious_society_hinduis
m }
}
text = {
localisation_key = currency_name_secret_religious_society_buddhi
sm
trigger = { society_member_of = secret_religious_society_buddhis
m }
}
text = {
localisation_key = currency_name_secret_religious_society_jain
trigger = { society_member_of = secret_religious_society_jain }
}
text = {
localisation_key = currency_name_secret_religious_society_norse_
pagan_reformed
trigger = { society_member_of = secret_religious_society_norse_p
agan_reformed }
}
text = {
localisation_key = currency_name_secret_religious_society_slavic
_pagan_reformed
trigger = { society_member_of = secret_religious_society_slavic_
pagan_reformed }
}
text = {
localisation_key = currency_name_secret_religious_society_tengri
_pagan_reformed
trigger = { society_member_of = secret_religious_society_tengri_
pagan_reformed }
}
text = {
localisation_key = currency_name_secret_religious_society_baltic
_pagan_reformed
trigger = { society_member_of = secret_religious_society_baltic_
pagan_reformed }
}
text = {
localisation_key = currency_name_secret_religious_society_finnis
h_pagan_reformed
trigger = { society_member_of = secret_religious_society_finnish
_pagan_reformed }
}
text = {
localisation_key = currency_name_secret_religious_society_west_a
frican_pagan_reformed
trigger = { society_member_of = secret_religious_society_west_af
rican_pagan_reformed }
}
text = {
localisation_key = currency_name_secret_religious_society_zun_pa
gan_reformed
trigger = { society_member_of = secret_religious_society_zun_pag
an_reformed }
}
text = {
localisation_key = currency_name_hermetics
trigger = { society_member_of = hermetics }
}
}
defined_text = {
name = GetDWReasonToJoin # Returns a phrase along the lines of "cure my
lover" or "help me win on the battlefield"
text = {
localisation_key = String_ill_lover
trigger = { has_character_flag = has_ill_lover_loc }
}
text = {
localisation_key = String_ill_spouse
trigger = { has_character_flag = has_ill_spouse_loc }
}
text = {
localisation_key = String_ill_child
trigger = { has_character_flag = has_ill_child_loc }
}
text = {
localisation_key = String_money_troubles
trigger = { has_character_flag = has_money_troubles_loc }
}
text = {
localisation_key = String_has_a_rival
trigger = { has_character_flag = has_a_rival_loc }
}
text = {
localisation_key = String_illness
trigger = { has_character_flag = has_some_illness_loc }
}
text = {
localisation_key = String_battle_luck
trigger = { has_character_flag = has_need_of_winning_battles_loc
}
}
text = {
localisation_key = String_GetDWReasonToJoin_fallback
trigger = {
NOR = {
has_character_flag = has_ill_lover_loc
has_character_flag = has_ill_spouse_loc
has_character_flag = has_ill_child_loc
has_character_flag = has_money_troubles_loc
has_character_flag = has_a_rival_loc
has_character_flag = has_some_illness_loc
has_character_flag = has_need_of_winning_battles
_loc
}
}
}
}
defined_text = {
name = GetDWDevil # Returns a an appropriate name for the Devil (WIP - F
ellow scripters, do expand upon all of the following once you have a good one)
text = {
localisation_key = String_Satan
trigger = {
society_member_of = the_satanists
OR = {
religion_group = christian
religion_group = jewish_group
}
}
}
text = {
localisation_key = String_Iblis
trigger = {
society_member_of = the_satanists
religion_group = muslim
}
}
text = {
localisation_key = String_Ahriman
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
}
text = {
localisation_key = String_Chernobog
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = String_Kali
trigger = { society_member_of = the_cult_of_kali }
}
text = {
localisation_key = String_Erlik
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = String_Hel
trigger = { society_member_of = the_trollcrafters }
}
}
defined_text = {
name = GetDWDarkMagic # Returns a an appropriate name for dark magic
text = {
localisation_key = String_black_magic
trigger = {
society_member_of = the_satanists
religion_group = christian
}
}
text = {
localisation_key = String_sihr
trigger = {
society_member_of = the_satanists
religion_group = muslim
}
}
text = {
localisation_key = String_Qliphoth
trigger = {
society_member_of = the_satanists
religion_group = jewish_group
}
}
text = {
localisation_key = String_black_magic
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
}
text = {
localisation_key = String_koldovstvo
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = String_seir
trigger = { society_member_of = the_trollcrafters }
}
text = {
localisation_key = String_black_magic
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = String_dark_tantras
trigger = { society_member_of = the_cult_of_kali }
}
}
defined_text = {
name = GetDWDemon # Returns a an appropriate name for a demon
text = {
localisation_key = String_demon
trigger = {
society_member_of = the_satanists
OR = {
religion_group = christian
religion_group = jewish_group
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
}
text = {
localisation_key = String_jinn
trigger = {
society_member_of = the_satanists
religion_group = muslim
}
}
text = {
localisation_key = String_likho
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = String_jotun
trigger = { society_member_of = the_trollcrafters }
}
text = {
localisation_key = string_karaoglan
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = String_rakshasa
trigger = { society_member_of = the_cult_of_kali }
}
}
defined_text = {
name = GetDWDemons # Returns a an appropriate name for demons
text = {
localisation_key = String_demons
trigger = {
society_member_of = the_satanists
OR = {
religion_group = christian
religion_group = jewish_group
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
}
text = {
localisation_key = String_jinns
trigger = {
society_member_of = the_satanists
religion_group = muslim
}
}
text = {
localisation_key = String_likhos
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = String_jotnar
trigger = { society_member_of = the_trollcrafters }
}
text = {
localisation_key = string_karaoglanlar
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = String_rakshasas
trigger = { society_member_of = the_cult_of_kali }
}
}
defined_text = {
name = GetDWMagician
text = {
localisation_key = String_witch
trigger = {
is_female = yes
society_member_of = the_satanists
}
}
text = {
localisation_key = String_warlock
trigger = {
is_female = no
society_member_of = the_satanists
}
}
text = {
localisation_key = String_koldunya
trigger = {
is_female = yes
society_member_of = the_cold_ones
}
}
text = {
localisation_key = String_koldun
trigger = {
is_female = no
society_member_of = the_cold_ones
}
}
text = {
localisation_key = String_seikona
trigger = {
is_female = yes
society_member_of = the_trollcrafters
}
}
text = {
localisation_key = String_seimar
trigger = {
is_female = no
society_member_of = the_trollcrafters
}
}
text = {
localisation_key = string_black_shaman
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = dark_tantrik
trigger = {
society_member_of = the_cult_of_kali
}
}
}
defined_text = {
name = GetDWExpression
text = {
localisation_key = String_Glory_to_the_Deceiver
trigger = {
society_member_of = the_satanists
OR = {
religion_group = christian
religion_group = jewish_group
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
}
text = {
localisation_key = String_Glory_to_Shaitan
trigger = {
society_member_of = the_satanists
religion_group = muslim
}
}
text = {
localisation_key = String_Glory_to_the_Black_God
trigger = { society_member_of = the_cold_ones }
}
text = {
localisation_key = String_Glory_to_the_Lord_of_Kali_Yuga
trigger = { society_member_of = the_cult_of_kali }
}
text = {
localisation_key = String_Glory_to_the_God_of_Death
trigger = { society_member_of = the_plaguebringers }
}
text = {
localisation_key = String_Glory_to_Hel
trigger = { society_member_of = the_trollcrafters }
}
}
defined_text = {
name = GetAssassinsCrimeOutcry
text = {
localisation_key = String_Death_to_the_infidels
trigger = {
OR = {
has_character_flag = assassins_target_war_attack
er
has_character_flag = assassins_target_war_attack
er_vassal
has_character_flag = assassins_target_war_attack
er_commander
has_character_flag = assassins_target_persecutes
_shiites
}
}
}
text = {
localisation_key = String_Grand_Master_Name_sends_herhis_regards
trigger = {
has_character_flag = assassins_target_marked_for_death
event_target:grand_master = { always = yes }
}
}
text = {
localisation_key = String_Blood_for_blood
trigger = {
OR = {
has_character_flag = assassins_target_killed_mem
ber
has_character_flag = assassins_target_assaulted_
member
}
}
}
text = {
localisation_key = String_For_the_Assassins
trigger = {
OR = {
AND = {
has_character_flag = assassins_target_ma
rked_for_death
NOT = { event_target:grand_master = { al
ways = yes } }
}
NOR = {
has_character_flag = assassins_target_wa
r_attacker
has_character_flag = assassins_target_wa
r_attacker_vassal
has_character_flag = assassins_target_wa
r_attacker_commander
has_character_flag = assassins_target_pe
rsecutes_shiites
has_character_flag = assassins_target_ma
rked_for_death
has_character_flag = assassins_target_ki
lled_member
has_character_flag = assassins_target_as
saulted_member
}
}
}
}
text = {
localisation_key = String_Requiescat_in_pace
trigger = { culture_group = latin }
weight_multiplier = { factor = 0.1 }
}
}
defined_text = { #Does not work for jain and buddhism
name = GetMOGod
text = {
localisation_key = String_God
trigger = {
OR = {
society_member_of = monastic_order_dominican
society_member_of = monastic_order_benedictine
society_member_of = monastic_order_orthodox
society_member_of = monastic_order_nestorian
society_member_of = monastic_order_monophysite
}
}
}
text = {
localisation_key = String_Vishnu
trigger = {
OR = {
trait = smartist_hindu
trait = vaishnavist_hindu
}
society_member_of = monastic_order_hindu
}
}
text = {
localisation_key = String_Devi
trigger = {
OR = {
trait = smartist_hindu
trait = shaktist_hindu
}
society_member_of = monastic_order_hindu
}
}
text = {
localisation_key = String_Shiva
trigger = {
OR = {
trait = smartist_hindu
trait = shaivist_hindu
}
society_member_of = monastic_order_hindu
}
}
}
defined_text = {
name = GetMOSaint
text = {
localisation_key = String_Saint_Benedict
trigger = { society_member_of = monastic_order_benedictine }
}
text = {
localisation_key = String_Saint_Dominic
trigger = { society_member_of = monastic_order_dominican }
}
text = {
localisation_key = String_Saint_Basil
trigger = { society_member_of = monastic_order_orthodox }
}
text = {
localisation_key = String_Saint_Abraham
trigger = { society_member_of = monastic_order_nestorian }
}
text = {
localisation_key = String_Saint_Anthony
trigger = { society_member_of = monastic_order_monophysite }
}
text = {
localisation_key = String_Buddha
trigger = { society_member_of = monastic_order_buddhist }
}
text = {
localisation_key = String_Adi_Shankara
trigger = { society_member_of = monastic_order_hindu }
}
text = {
localisation_key = String_Acharya_Kundakunda
trigger = { society_member_of = monastic_order_jain }
}
}
defined_text = {
name = GetMOBuilding
text = {
localisation_key = String_monastery
trigger = {
OR = {
society_member_of = monastic_order_dominican
society_member_of = monastic_order_benedictine
society_member_of = monastic_order_orthodox
society_member_of = monastic_order_nestorian
society_member_of = monastic_order_monophysite
}
}
}
text = {
localisation_key = String_matha
trigger = { society_member_of = monastic_order_hindu }
}
text = {
localisation_key = String_temple
trigger = {
OR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
}
}
defined_text = {
name = GetMOCode
text = {
localisation_key = String_the_Rule_of_Saint_Benedict
trigger = { society_member_of = monastic_order_benedictine }
}
text = {
localisation_key = String_the_Rule_of_Saint_Augustine
trigger = { society_member_of = monastic_order_dominican }
}
text = {
localisation_key = String_the_Rule_of_Saint_Basil
trigger = { society_member_of = monastic_order_orthodox }
}
text = {
localisation_key = String_the_Rule_of_Saint_Abraham
trigger = { society_member_of = monastic_order_nestorian }
}
text = {
localisation_key = String_the_Rule_of_Saint_Anthony
trigger = { society_member_of = monastic_order_monophysite }
}
text = {
localisation_key = String_the_Noble_Eightfold_Path
trigger = { society_member_of = monastic_order_buddhist }
}
text = {
localisation_key = String_the_four_Purusartha
trigger = { society_member_of = monastic_order_hindu }
}
text = {
localisation_key = String_the_Anuvrata
trigger = { society_member_of = monastic_order_jain }
}
}
defined_text = {
name = GetMOPenanceMeditation
text = {
localisation_key = String_doing_penance
trigger = { is_christian_monastic_member_trigger = yes }
}
text = {
localisation_key = String_in_meditation
trigger = { is_dharmic_monastic_member_trigger = yes }
}
}
defined_text = {
name = GetMOGreeting
text = {
localisation_key = String_Gods_blessing_upon_thee
trigger = { is_christian_monastic_member_trigger = yes }
}
text = {
localisation_key = String_Peace_be_upon_you
trigger = { is_dharmic_monastic_member_trigger = yes }
}
}
defined_text = {
name = GetMOFarewell
text = {
localisation_key = String_Go_with_God
trigger = { is_christian_monastic_member_trigger = yes }
}
text = {
localisation_key = String_Shubhaste_panthanah_santu
trigger = { is_dharmic_monastic_member_trigger = yes }
}
}
defined_text = {
name = GetSRGreeting
text = {
localisation_key = String_Gods_blessing_upon_thee
trigger = { is_christian_secret_religious_society_member_trigger
= yes }
}
text = {
localisation_key = String_As_salam_alaykum
trigger = { is_muslim_secret_religious_society_member_trigger =
yes }
}
text = {
localisation_key = String_Peace_be_upon_you
trigger = { is_indian_secret_religious_society_member_trigger =
yes }
}
text = {
localisation_key = String_Shalom_aleikhem
trigger = { society_member_of = secret_religious_society_jewish
}
}
text = {
localisation_key = String_Hamazor_hama_asho_bed
trigger = { society_member_of = secret_religious_society_zoroast
rian }
}
text = {
localisation_key = String_Allfathers_strength
trigger = { society_member_of = secret_religious_society_norse_p
agan_reformed }
}
text = {
localisation_key = String_Svarogs_blessings
trigger = { society_member_of = secret_religious_society_slavic_
pagan_reformed }
}
text = {
localisation_key = String_Ancestors_blessings
trigger = { society_member_of = secret_religious_society_tengri_
pagan_reformed }
}
text = {
localisation_key = String_Dievas_blessings
trigger = { society_member_of = secret_religious_society_baltic_
pagan_reformed }
}
text = {
localisation_key = String_Ukkos_blessings
trigger = { society_member_of = secret_religious_society_finnish
_pagan_reformed }
}
text = {
localisation_key = String_Ancestors_blessings
trigger = { society_member_of = secret_religious_society_west_af
rican_pagan_reformed }
}
text = {
localisation_key = String_Zuns_blessings
trigger = { society_member_of = secret_religious_society_zun_pag
an_reformed }
}
}
defined_text = {
name = GetSRFarewell
text = {
localisation_key = String_Go_with_God
trigger = { is_christian_secret_religious_society_member_trigger
= yes }
}
text = {
localisation_key = String_May_Allah_guide_you
trigger = { is_muslim_secret_religious_society_member_trigger =
yes }
}
text = {
localisation_key = String_Shubhaste_panthanah_santu
trigger = { is_indian_secret_religious_society_member_trigger =
yes }
}
text = {
localisation_key = String_May_Yehovah_guide_you
trigger = { society_member_of = secret_religious_society_jewish
}
}
text = {
localisation_key = String_Humata_Hukta_Huvarashta
trigger = { society_member_of = secret_religious_society_zoroast
rian }
}
text = {
localisation_key = String_May_the_Gods_protect_you
trigger = { society_member_of = secret_religious_society_norse_p
agan_reformed }
}
text = {
localisation_key = String_May_the_Gods_protect_you
trigger = { society_member_of = secret_religious_society_slavic_
pagan_reformed }
}
text = {
localisation_key = String_May_the_Ancestors_guide_you
trigger = { society_member_of = secret_religious_society_tengri_
pagan_reformed }
}
text = {
localisation_key = String_May_the_Gods_protect_you
trigger = { society_member_of = secret_religious_society_baltic_
pagan_reformed }
}
text = {
localisation_key = String_May_the_Gods_protect_you
trigger = { society_member_of = secret_religious_society_finnish
_pagan_reformed }
}
text = {
localisation_key = String_May_the_Ancestors_guide_you
trigger = { society_member_of = secret_religious_society_west_af
rican_pagan_reformed }
}
text = {
localisation_key = String_May_Zun_illuminate_your_path
trigger = { society_member_of = secret_religious_society_zun_pag
an_reformed }
}
}
defined_text = {
name = GetSRTrinketSymbol
text = {
localisation_key = String_Cross
trigger = { is_christian_secret_religious_society_member_trigger
= yes }
}
text = {
localisation_key = String_crescent
trigger = { is_muslim_secret_religious_society_member_trigger =
yes }
}
text = {
localisation_key = String_six_pointed_star
trigger = { society_member_of = secret_religious_society_jewish
}
}
text = {
localisation_key = String_figurine_of_Buddha
trigger = { true_religion_buddhism_trigger = yes }
}
text = {
localisation_key = String_figurine_of_Ganesha
trigger = { true_religion_hinduism_trigger = yes }
}
text = {
localisation_key = String_figurine_of_jain_god
trigger = { true_religion_jain_trigger = yes }
}
text = {
localisation_key = String_fire_symbol
trigger = { society_member_of = secret_religious_society_zoroast
rian }
}
text = {
localisation_key = String_Thors_hammer
trigger = { society_member_of = secret_religious_society_norse_p
agan_reformed }
}
text = {
localisation_key = String_hatchet_amulet
trigger = { society_member_of = secret_religious_society_slavic_
pagan_reformed }
}
text = {
localisation_key = String_world_tree_symbol
trigger = { society_member_of = secret_religious_society_baltic_
pagan_reformed }
}
text = {
localisation_key = String_life_tree_symbol
trigger = { society_member_of = secret_religious_society_tengri_
pagan_reformed }
}
text = {
localisation_key = String_Ukkos_hammer
trigger = { society_member_of = secret_religious_society_finnish
_pagan_reformed }
}
text = {
localisation_key = String_ancestors_symbol
trigger = { society_member_of = secret_religious_society_west_af
rican_pagan_reformed }
}
text = {
localisation_key = String_sun_symbol
trigger = { society_member_of = secret_religious_society_zun_pag
an_reformed }
}
}
#Hermes Tirismegistus or other suitably old person spreading arcane and ancient
knowledge
defined_text = {
name = GetHermesThriceBlessed
text = {
trigger = { NOT = { religion_group = muslim } }
localisation_key = String_hermes_trismegistus
}
text = {
trigger = { religion_group = muslim }
localisation_key = String_idris
}
}
defined_text = {
name = GetFromThisHermeticsRank
text = {
trigger = {
is_liege_of = FROM
FROM = { has_minor_title = title_hermetics_apprentice }
}
localisation_key = String_GetMasterMistress
}
text = {
trigger = {
NAND = {
is_liege_of = FROM
FROM = { has_minor_title = title_hermetics_appre
ntice }
}
}
localisation_key = String_GetSocietyRank
}
}
###RELIGION###
defined_text = {
name = GetHouseOfWorship # Returns a suitable name for the house of wors
hip of your religion (WIP)
text = {
localisation_key = GetHouseOfWorship_Christian
trigger = { religion_group = christian }
}
text = {
localisation_key = GetHouseOfWorship_Muslim
trigger = { religion_group = muslim }
}
text = {
localisation_key = GetHouseOfWorship_Pagan
trigger = { religion_group = pagan_group }
}
text = {
localisation_key = GetHouseOfWorship_Zoroastrian
trigger = { religion_group = zoroastrian_group }
}
text = {
localisation_key = GetHouseOfWorship_Jewish
trigger = { religion_group = jewish_group }
}
text = {
localisation_key = GetHouseOfWorship_Hindu
trigger = { religion = hindu }
}
text = {
localisation_key = GetHouseOfWorship_Buddhist
trigger = { religion = buddhist }
}
text = {
localisation_key = GetHouseOfWorship_Jain
trigger = { religion = jain }
}
}
defined_text = {
name = GetReligiousRite # Returns a suitable name for a common rite in t
he character's religion
text = {
localisation_key = String_mass
trigger = { religion_group = christian }
}
text = {
localisation_key = String_prayer
trigger = { religion_group = muslim }
}
text = {
localisation_key = String_worship
trigger = { religion_group = pagan_group }
}
text = {
localisation_key = String_worship
trigger = { religion_group = zoroastrian_group }
}
text = {
localisation_key = String_prayer
trigger = { religion_group = jewish_group }
}
text = {
localisation_key = String_prayer
trigger = { religion_group = indian_group }
}
}
defined_text = {
name = GetReligionWarrior #Returns an appropriate word for a warrior/sol
dier depending on religion (and culture)
text = {
localisation_key = String_druzhinniki
trigger = {
OR = {
religion = slavic_pagan
religion = slavic_pagan_reformed
culture_group = east_slavic
culture = polish
}
}
}
text = {
localisation_key = String_huscarl
trigger = {
OR = {
religion = norse_pagan
religion = norse_pagan_reformed
AND = {
OR = {
culture_group = north_germanic
culture = saxon
culture = old_saxon
}
is_tribal = yes
}
}
}
}
text = {
localisation_key = String_man_at_arm
trigger = {
religion = catholic
is_tribal = no
is_nomadic = no
}
}
text = {
localisation_key = String_spahi
trigger = {
culture_group = iranian
}
}
text = {
localisation_key = String_ghazi
trigger = {
religion_group = muslim
}
}
text = {
localisation_key = String_sainik
trigger = {
OR = {
culture_group = indo_aryan_group
culture_group = dravidian_group
}
}
}
text = {
localisation_key = String_kheshig
trigger = {
culture_group = altaic
}
}
text = {
localisation_key = String_warrior
#generic
}
}
defined_text = {
name = GetReligionWarriorPlural #Returns an appropriate word for a warri
or/soldier depending on religion (and culture)
text = {
localisation_key = String_druzhinniki
trigger = {
OR = {
religion = slavic_pagan
religion = slavic_pagan_reformed
culture_group = east_slavic
culture = polish
}
}
}
text = {
localisation_key = String_huscarls
trigger = {
OR = {
religion = norse_pagan
religion = norse_pagan_reformed
AND = {
OR = {
culture_group = north_germanic
culture = saxon
culture = old_saxon
}
is_tribal = yes
}
}
}
}
text = {
localisation_key = String_men_at_arms
trigger = {
religion = catholic
is_tribal = no
is_nomadic = no
}
}
text = {
localisation_key = String_spahi
trigger = {
culture_group = iranian
}
}
text = {
localisation_key = String_ghazis
trigger = {
religion_group = muslim
}
}
text = {
localisation_key = String_sainikon
trigger = {
OR = {
culture_group = indo_aryan_group
culture_group = dravidian_group
}
}
}
text = {
localisation_key = String_kheshig
trigger = {
culture_group = altaic
}
}
text = {
localisation_key = String_warriors
#generic
}
}
defined_text = {
name = GetReligiousPerson
text = {
localisation_key = String_Catholic
trigger = { religion = catholic }
}
text = {
localisation_key = String_Christian
trigger = {
religion_group = christian
NOT = { religion = catholic }
}
}
text = {
localisation_key = String_Muslim
trigger = { religion_group = muslim }
}
text = {
localisation_key = String_Jew
trigger = { religion_group = jewish_group }
}
text = {
localisation_key = String_Zoroastrian
trigger = { religion_group = zoroastrian_group }
}
text = {
localisation_key = String_Buddhist
trigger = { religion = buddhist }
}
text = {
localisation_key = String_Jain
trigger = { religion = jain }
}
text = {
localisation_key = String_Hindu
trigger = { religion = hindu }
}
text = {
localisation_key = String_Norse
trigger = {
OR = {
religion = norse_pagan
religion = norse_pagan_reformed
}
}
}
text = {
localisation_key = String_Slav
trigger = {
OR = {
religion = slavic_pagan
religion = slavic_pagan_reformed
}
}
}
text = {
localisation_key = String_Romuvan
trigger = {
OR = {
religion = baltic_pagan
religion = baltic_pagan_reformed
}
}
}
text = {
localisation_key = String_Finn
trigger = {
OR = {
religion = finnish_pagan
religion = finnish_pagan_reformed
}
}
}
text = {
localisation_key = String_West_African
trigger = {
OR = {
religion = west_african_pagan
religion = west_african_pagan_reformed
}
}
}
text = {
localisation_key = String_Tengri
trigger = {
OR = {
religion = tengri_pagan
religion = tengri_pagan_reformed
}
}
}
text = {
localisation_key = String_Zun
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
}
}
}
}
defined_text = {
name = GetArtifactSource
text = {
localisation_key = String_saint
trigger = {
religion_group = christian
}
}
text = {
localisation_key = String_famous_holy_man
trigger = {
OR = {
religion_group = zoroastrian_group
religion_group = indian_group
religion_group = jewish_group
religion_group = muslim
}
}
}
text = {
localisation_key = String_great_hero
trigger = {
religion_group = pagan_group
}
}
}
defined_text = {
name = GetArtifactSourceCap
text = {
localisation_key = String_Saint_cap
trigger = {
religion_group = christian
}
}
text = {
localisation_key = String_Famous_Holy_Man_cap
trigger = {
OR = {
religion_group = zoroastrian_group
religion_group = indian_group
religion_group = jewish_group
religion_group = muslim
}
}
}
text = {
localisation_key = String_Great_Hero_cap
trigger = {
religion_group = pagan_group
}
}
}
defined_text = { #WIP
name = GetPrayers
text = {
localisation_key = String_prayers
trigger = { religion_group = christian }
}
text = {
localisation_key = String_mantras
trigger = { religion_group = indian_group }
}
}
defined_text = {
name = GetTrueReligionGroupPersons
text = {
localisation_key = String_Christians
trigger = { true_religion_group_christian_trigger = yes }
}
text = {
localisation_key = String_Muslims
trigger = { true_religion_group_muslim_trigger = yes }
}
text = {
localisation_key = String_pagans
trigger = { true_religion_group_pagan_group_trigger = yes }
}
text = {
localisation_key = String_Zoroastrians
trigger = { true_religion_group_zoroastrian_group_trigger = yes
}
}
text = {
localisation_key = String_Jews
trigger = { true_religion_group_jewish_group_trigger = yes }
}
text = {
localisation_key = String_Indians
trigger = { true_religion_group_indian_group_trigger = yes }
}
}

defined_text = {
name = GetTrueReligionAdjective
text = {
localisation_key = String_Catholic
trigger = { true_religion_catholic_trigger = yes }
}
text = {
localisation_key = String_Orthodox
trigger = { true_religion_orthodox_trigger = yes }
}
text = {
localisation_key = String_Christian
trigger = {
true_religion_group_christian_trigger = yes
NOT = { true_religion_catholic_trigger = yes }
NOT = { true_religion_orthodox_trigger = yes }
}
}
text = {
localisation_key = String_Sunni
trigger = { true_religion_sunni_trigger = yes }
}
text = {
localisation_key = String_Shia
trigger = { true_religion_shiite_trigger = yes }
}
text = {
localisation_key = String_Muslim
trigger = {
true_religion_group_muslim_trigger = yes
NOT = { true_religion_sunni_trigger = yes }
NOT = { true_religion_shiite_trigger = yes }
}
}
text = {
localisation_key = String_Jewish
trigger = { true_religion_jewish_trigger = yes }
}
text = {
localisation_key = String_Zoroastrian
trigger = { true_religion_zoroastrian_trigger = yes }
}
text = {
localisation_key = String_Hindu
trigger = { true_religion_hinduism_trigger = yes }
}
text = {
localisation_key = String_Buddhist
trigger = { true_religion_buddhism_trigger = yes }
}
text = {
localisation_key = String_Jain
trigger = { true_religion_jain_trigger = yes }
}
text = {
localisation_key = String_Norse
trigger = { true_religion_norse_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Slavic
trigger = { true_religion_slavic_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Tengri
trigger = { true_religion_tengri_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Romuva
trigger = { true_religion_baltic_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Suomenusko
trigger = { true_religion_finnish_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_West_African
trigger = { true_religion_west_african_pagan_reformed_trigger =
yes }
}
text = {
localisation_key = String_Zun
trigger = { true_religion_zun_pagan_reformed_trigger = yes }
}
}
defined_text = {
name = GetTrueReligionAdherent
text = {
localisation_key = String_Catholic
trigger = { true_religion_catholic_trigger = yes }
}
text = {
localisation_key = String_Orthodox_Christian
trigger = { true_religion_orthodox_trigger = yes }
}
text = {
localisation_key = String_Christian
trigger = {
true_religion_group_christian_trigger = yes
NOT = { true_religion_catholic_trigger = yes }
NOT = { true_religion_orthodox_trigger = yes }
}
}
text = {
localisation_key = String_Sunni
trigger = { true_religion_sunni_trigger = yes }
}
text = {
localisation_key = String_Shia
trigger = { true_religion_shiite_trigger = yes }
}
text = {
localisation_key = String_Muslim
trigger = {
true_religion_group_muslim_trigger = yes
NOT = { true_religion_sunni_trigger = yes }
NOT = { true_religion_shiite_trigger = yes }
}
}
text = {
localisation_key = String_Jew
trigger = { true_religion_jewish_trigger = yes }
}
text = {
localisation_key = String_Zoroastrian
trigger = { true_religion_zoroastrian_trigger = yes }
}
text = {
localisation_key = String_Hindu
trigger = { true_religion_hinduism_trigger = yes }
}
text = {
localisation_key = String_Buddhist
trigger = { true_religion_buddhism_trigger = yes }
}
text = {
localisation_key = String_Jain
trigger = { true_religion_jain_trigger = yes }
}
text = {
localisation_key = String_Norse_Follower
trigger = { true_religion_norse_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Slav
trigger = { true_religion_slavic_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Tengri
trigger = { true_religion_tengri_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Romuvan
trigger = { true_religion_baltic_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Suomenusko_Follower
trigger = { true_religion_finnish_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_West_African
trigger = { true_religion_west_african_pagan_reformed_trigger =
yes }
}
text = {
localisation_key = String_Zunist
trigger = { true_religion_zun_pagan_reformed_trigger = yes }
}
}
defined_text = {
name = GetTrueReligionScriptureName
text = {
localisation_key = String_Bible
trigger = { true_religion_group_christian_trigger = yes }
}
text = {
localisation_key = String_Koran
trigger = { true_religion_group_muslim_trigger = yes }
}
text = {
localisation_key = String_Torah
trigger = { true_religion_jewish_trigger = yes }
}
text = {
localisation_key = String_Gathas
trigger = { true_religion_zoroastrian_trigger = yes }
}
text = {
localisation_key = String_Mahabharata
trigger = { true_religion_hinduism_trigger = yes }
}
text = {
localisation_key = String_Buddhacavana
trigger = { true_religion_buddhism_trigger = yes }
}
text = {
localisation_key = String_Mahabharata
trigger = { true_religion_jain_trigger = yes }
}
text = {
localisation_key = String_Sagas
trigger = { true_religion_norse_pagan_reformed_trigger = yes }
}
text = {
localisation_key = String_Legends
trigger = {
OR = {
true_religion_slavic_pagan_reformed_trigger = ye
s
true_religion_tengri_pagan_reformed_trigger = ye
s
true_religion_baltic_pagan_reformed_trigger = ye
s
true_religion_finnish_pagan_reformed_trigger = y
es
true_religion_west_african_pagan_reformed_trigge
r = yes
true_religion_zun_pagan_reformed_trigger = yes
}
}
}
}

defined_text = {
name = GetTrueReligionHighGod
text = {
localisation_key = GOD_GOD
trigger = {
true_religion_group_christian_trigger = yes
}
}
text = {
localisation_key = GOD_ALLAH
trigger = {
true_religion_group_muslim_trigger = yes
}
}
text = {
localisation_key = GOD_GOD
trigger = { true_religion_jewish_trigger = yes }
}
text = {
localisation_key = GOD_AHURA_MAZDA
trigger = { true_religion_zoroastrian_trigger = yes }
}
text = {
localisation_key = GOD_BRAHMA
trigger = { true_religion_hinduism_trigger = yes }
}
text = {
localisation_key = GOD_BRAHMA
trigger = { true_religion_buddhism_trigger = yes }
}
text = {
localisation_key = GOD_THE_TIRTHANKARAS
trigger = { true_religion_jain_trigger = yes }
}
text = {
localisation_key = GOD_ODIN
trigger = { true_religion_norse_pagan_reformed_trigger = yes }
}
text = {
localisation_key = GOD_PERUN
trigger = { true_religion_slavic_pagan_reformed_trigger = yes }
}
text = {
localisation_key = GOD_TENGRI
trigger = { true_religion_tengri_pagan_reformed_trigger = yes }
}
text = {
localisation_key = GOD_DIEVAS
trigger = { true_religion_baltic_pagan_reformed_trigger = yes }
}
text = {
localisation_key = GOD_UKKO
trigger = { true_religion_finnish_pagan_reformed_trigger = yes }
}
text = {
localisation_key = GOD_THE_CREATOR
trigger = { true_religion_west_african_pagan_reformed_trigger =
yes }
}
text = {
localisation_key = GOD_ZUN
trigger = { true_religion_zun_pagan_reformed_trigger = yes }
}
}

defined_text = {
name = GetTrueReligionPerson
text = {
localisation_key = String_Catholic
trigger = { true_religion_catholic_trigger = yes }
}
text = {
localisation_key = String_Christian
trigger = {
true_religion_group_christian_trigger = yes
NOT = { true_religion_catholic_trigger = yes }
}
}
text = {
localisation_key = String_Muslim
trigger = { true_religion_group_muslim_trigger = yes }
}
text = {
localisation_key = String_Jew
trigger = { true_religion_group_jewish_group_trigger = yes }
}
text = {
localisation_key = String_Zoroastrian
trigger = { true_religion_group_zoroastrian_group_trigger = yes
}
}
text = {
localisation_key = String_Buddhist
trigger = { true_religion_buddhism_trigger = yes }
}
text = {
localisation_key = String_Jain
trigger = { true_religion_jain_trigger = yes }
}
text = {
localisation_key = String_Hindu
trigger = { true_religion_hinduism_trigger = yes }
}
text = {
localisation_key = String_Norse
trigger = {
OR = {
true_religion_norse_pagan_trigger = yes
true_religion_norse_pagan_reformed_trigger = yes
}
}
}
text = {
localisation_key = String_Romuvan
trigger = {
OR = {
true_religion_baltic_pagan_trigger = yes
true_religion_baltic_pagan_reformed_trigger = ye
s
}
}
}
text = {
localisation_key = String_Slav
trigger = {
OR = {
true_religion_slavic_pagan_trigger = yes
true_religion_slavic_pagan_reformed_trigger = ye
s
}
}
}
text = {
localisation_key = String_Finn
trigger = {
OR = {
true_religion_finnish_pagan_reformed_trigger = y
es
true_religion_finnish_pagan_trigger = yes
}
}
}
text = {
localisation_key = String_Tengri
trigger = {
OR = {
true_religion_tengri_pagan_trigger = yes
true_religion_tengri_pagan_reformed_trigger = ye
s
}
}
}
text = {
localisation_key = String_West_African
trigger = {
OR = {
true_religion_west_african_pagan_trigger = yes
true_religion_west_african_pagan_reformed_trigge
r = yes
}
}
}
text = {
localisation_key = String_Zun
trigger = {
OR = {
true_religion_zun_pagan_trigger = yes
true_religion_zun_pagan_reformed_trigger = yes
}
}
}
}

###PLACES###
defined_text = {
name = GetCapitalHolding # Returns a suitable name for the main building
of your capital
text = {
localisation_key = GetHolding_Castle_1
trigger = {
capital_holding = { holding_type = castle }
NOT = { higher_tier_than = DUKE }
}
}
text = {
localisation_key = GetHolding_Castle_2
trigger = {
capital_holding = { holding_type = castle }
higher_tier_than = DUKE
NOT = { higher_tier_than = KING }
}
}
text = {
localisation_key = GetHolding_Castle_3
trigger = {
capital_holding = { holding_type = castle }
higher_tier_than = KING
}
}
text = {
localisation_key = GetHolding_Temple_1
trigger = { capital_holding = { holding_type = temple } }
}
text = {
localisation_key = GetHolding_Nomad_1
trigger = {
capital_holding = { holding_type = nomad }
NOT = { higher_tier_than = DUKE }
}
}
text = {
localisation_key = GetHolding_Nomad_2
trigger = {
capital_holding = { holding_type = nomad }
higher_tier_than = DUKE
NOT = { higher_tier_than = KING }
}
}
text = {
localisation_key = GetHolding_Nomad_3
trigger = {
capital_holding = { holding_type = nomad }
higher_tier_than = KING
}
}
text = {
localisation_key = GetHolding_Tribal_1
trigger = {
capital_holding = { holding_type = tribal }
NOT = { higher_tier_than = COUNT }
}
}
text = {
localisation_key = GetHolding_Tribal_2
trigger = {
capital_holding = { holding_type = tribal }
higher_tier_than = COUNT
NOT = { higher_tier_than = DUKE }
}
}
text = {
localisation_key = GetHolding_Tribal_3
trigger = {
capital_holding = { holding_type = tribal }
higher_tier_than = DUKE
}
}
text = {
localisation_key = GetHolding_City_1
trigger = {
capital_holding = { holding_type = city }
NOT = { higher_tier_than = DUKE }
}
}
text = {
localisation_key = GetHolding_City_2
trigger = {
capital_holding = { holding_type = city }
higher_tier_than = DUKE
NOT = { higher_tier_than = KING }
}
}
text = {
localisation_key = GetHolding_City_3
trigger = {
capital_holding = { holding_type = city }
higher_tier_than = KING
}
}
text = {
localisation_key = GetHolding_Fallback_1
trigger = {
NOT = {
capital_holding = {
OR = {
holding_type = castle
holding_type = temple
holding_type = nomad
holding_type = tribal
holding_type = city
}
}
}
}
}
}
defined_text = {
name = GetHolding # Returns a suitable name for a holding
text = {
localisation_key = GetHolding_Castle_1
trigger = {
holding_type = castle
county = { holder_scope = { NOT = { higher_tier_than = D
UKE } } }
}
}
text = {
localisation_key = GetHolding_Castle_2
trigger = {
holding_type = castle
county = {
holder_scope = {
higher_tier_than = DUKE
NOT = { higher_tier_than = KING }
}
}
}
}
text = {
localisation_key = GetHolding_Castle_3
trigger = {
holding_type = castle
county = { holder_scope = { higher_tier_than = KING } }
}
}
text = {
localisation_key = GetHolding_Temple_1
trigger = { holding_type = temple }
}
text = {
localisation_key = GetHolding_Nomad_1
trigger = {
holding_type = nomad
county = { holder_scope = { NOT = { higher_tier_than = D
UKE } } }
}
}
text = {
localisation_key = GetHolding_Nomad_2
trigger = {
holding_type = nomad
county = {
holder_scope = {
higher_tier_than = DUKE
NOT = { higher_tier_than = KING }
}
}
}
}
text = {
localisation_key = GetHolding_Nomad_3
trigger = {
holding_type = nomad
county = { holder_scope = { higher_tier_than = KING } }
}
}
text = {
localisation_key = GetHolding_Tribal_1
trigger = {
holding_type = tribal
county = { holder_scope = { NOT = { higher_tier_than = C
OUNT } } }
}
}
text = {
localisation_key = GetHolding_Tribal_2
trigger = {
holding_type = tribal
county = {
holder_scope = {
higher_tier_than = COUNT
NOT = { higher_tier_than = DUKE }
}
}
}
}
text = {
localisation_key = GetHolding_Tribal_3
trigger = {
holding_type = tribal
county = { holder_scope = { higher_tier_than = DUKE } }
}
}
text = {
localisation_key = GetHolding_City_1
trigger = {
holding_type = city
county = { holder_scope = { NOT = { higher_tier_than = D
UKE } } }
}
}
text = {
localisation_key = GetHolding_City_2
trigger = {
holding_type = city
county = {
holder_scope = {
higher_tier_than = DUKE
NOT = { higher_tier_than = KING }
}
}
}
}
text = {
localisation_key = GetHolding_City_3
trigger = {
holding_type = city
county = { holder_scope = { higher_tier_than = KING } }
}
}
text = {
localisation_key = String_settlement
trigger = {
NOT = {
OR = {
holding_type = castle
holding_type = temple
holding_type = nomad
holding_type = tribal
holding_type = city
}
}
}
}
}
defined_text = {
name = GetChamberOpening
text = {
localisation_key = GetChamberOpening_Door
trigger = { NOT = { capital_scope = { holding_type = tribal
} } }
}
text = {
localisation_key = GetChamberOpening_TentOpening
trigger = { capital_scope = { holding_type = tribal } }
}
}
defined_text = {
name = GetChamber
text = {
localisation_key = GetChamber_Chambers
trigger = { NOT = { capital_scope = { holding_type = tribal
} } }
}
text = {
localisation_key = GetChamber_Tent
trigger = { capital_scope = { holding_type = tribal } }
}
}
###WEATHER, TIME###
defined_text = {
name = GetWeatherAdjective # WIP
text = {
localisation_key = GetWeatherAdjective_Sunny
weight_multiplier = {
factor = 10
modifier = {
factor = 10
capital_scope = { region = world_africa }
}
}
}
text = {
localisation_key = GetWeatherAdjective_Rainy
weight_multiplier = {
factor = 10
modifier = {
factor = 10
trait = depressed
}
modifier = {
factor = 5
capital_scope = { region = world_india }
}
}
}
text = {
localisation_key = GetWeatherAdjective_Snowy
weight_multiplier = {
factor = 10
modifier = {
factor = 10
capital_scope = { region = world_europe_north }
}
}
trigger = {
capital_scope = { region = world_europe }
AND = {
month = 10
NOT = { month = 3 }
}
}
}
text = {
localisation_key = GetWeatherAdjective_Stormy
weight_multiplier = {
factor = 10
modifier = {
factor = 5
capital_scope = { is_coastal = yes }
}
}
}
text = {
localisation_key = GetWeatherAdjective_Windy
weight_multiplier = {
factor = 10
modifier = {
factor = 5
capital_scope = { is_coastal = yes }
}
}
}
text = {
localisation_key = GetWeatherAdjective_Cloudy
weight_multiplier = {
factor = 10
modifier = {
factor = 3
capital_scope = { is_coastal = yes }
}
}
}
text = {
localisation_key = GetWeatherAdjective_Foggy
weight_multiplier = {
factor = 10
modifier = {
factor = 3
capital_scope = { is_coastal = yes }
}
}
}
}

defined_text = {
name = GetTemperature # WIP
text = {
localisation_key = GetTemperature_Sweltering
weight_multiplier = {
factor = 10
modifier = {
factor = 10
capital_scope = { region = world_africa }
}
}
trigger = {
month = 5
NOT = { month = 9 }
}
}
text = {
localisation_key = GetTemperature_Freezing
weight_multiplier = {
factor = 10
modifier = {
factor = 5
capital_scope = { region = world_europe_north }
}
}
}
text = {
localisation_key = GetTemperature_Cold
weight_multiplier = {
factor = 10
modifier = {
factor = 10
capital_scope = { region = world_europe_north }
}
}
trigger = {
capital_scope = { region = world_europe }
AND = {
month = 10
NOT = { month = 3 }
}
}
}
text = {
localisation_key = GetTemperature_Warm
weight_multiplier = {
factor = 20
}
}
}
defined_text = {
name = GetMatterOfImportance
text = {
trigger = { any_child = { is_female = yes } }
localisation_key = String_daughter
weight_multiplier = { factor = 3 }
}
text = {
trigger = { any_child = { is_female = no } }
localisation_key = String_son
weight_multiplier = { factor = 3 }
}
text = {
trigger = { is_married = yes }
localisation_key = String_GetHusbandWifeOpp
weight_multiplier = { factor = 3 }
}
text = {
trigger = { trait = greedy }
localisation_key = String_investments
weight_multiplier = { factor = 6 }
}
text = {
trigger = { trait = gardener }
localisation_key = String_garden
weight_multiplier = { factor = 6 }
}
text = {
trigger = { trait = architect }
localisation_key = String_building_plans
weight_multiplier = { factor = 6 }
}
text = {
trigger = {
OR = {
trait = strategist
trait = duelist
}
}
localisation_key = String_sword_practice
weight_multiplier = { factor = 6 }
}
text = {
trigger = { is_learned_trigger = yes }
localisation_key = String_tome_collection
weight_multiplier = { factor = 6 }
}
text = {
trigger = {
OR = {
num_of_friends = 1
trait = socializer
}
}
localisation_key = String_friends
weight_multiplier = { factor = 6 }
}
text = {
trigger = { num_of_lovers = 1 }
localisation_key = String_love
weight_multiplier = { factor = 6 }
}
text = {
trigger = {
OR = {
has_character_modifier = pet_hunting_dog
has_character_modifier = guide_dog
}
}
localisation_key = String_dog
weight_multiplier = { factor = 6 }
}
text = {
trigger = { has_character_modifier = pet_cat }
localisation_key = String_cat
weight_multiplier = { factor = 6 }
}
text = {
localisation_key = String_health
weight_multiplier = {
factor = 1 #0.5
modifier = {
trait = craven
factor = 6
}
}
}
}

###NON-REUSABLE LOC KEYS###


defined_text = {
name = GetHermeticInvention
text = {
trigger = { has_character_flag = war_invention }
localisation_key = String_warfare
}
text = {
trigger = { has_character_flag = prosperity_invention }
localisation_key = String_prosperity
}
text = {
trigger = { has_character_flag = knowledge_invention }
localisation_key = String_scholarship
}
}
defined_text = {
name = GetSocietyRankUpTooltip1
text = {
trigger = { society_rank == 1 }
localisation_key = GetSocietyRankUpTooltip1_Standard_Rank1
}
text = {
trigger = { society_rank == 2 }
localisation_key = GetSocietyRankUpTooltip1_Standard_Rank2
}
text = {
trigger = { society_rank == 3 }
localisation_key = GetSocietyRankUpTooltip1_Standard_Rank3
}
}
defined_text = {
name = GetSocietyRankUpTooltip2
text = {
trigger = {
NOR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = ""
}
text = {
trigger = {
society_rank == 1
OR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = GetSocietyRankUpTooltip2_MOBuddhistJain_Rank1
}
text = {
trigger = {
society_rank >= 2
OR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = GetSocietyRankUpTooltip2_MOBuddhistJain_Rank2
}
}
defined_text = {
name = GetSocietyRankUpTooltip3
text = {
trigger = {
NOR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = ""
}
text = {
trigger = {
OR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = request_to_rank_up_within_society_no_vices
}
}
defined_text = {
name = GetSocietyRankUpTooltip4
text = {
trigger = {
NOR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = ""
}
text = {
trigger = {
society_rank == 1
OR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = request_to_rank_up_within_society_virtues1
}
text = {
trigger = {
society_rank == 2
OR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = request_to_rank_up_within_society_virtues2
}
text = {
trigger = {
society_rank == 3
OR = {
society_member_of = monastic_order_jain
society_member_of = monastic_order_buddhist
}
}
localisation_key = request_to_rank_up_within_society_virtues3
}
}
defined_text = {
name = GetDWRandomDemon
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Mammon
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Beelzebub
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Abaddon
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Belphegor
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Asmodeus
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Leviathan
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Astaroth
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Belial
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Berith
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Lilith
}
text = {
trigger = {
society_member_of = the_satanists
NOT = { religion_group = zoroastrian_group }
}
localisation_key = String_Pythius
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Akoman
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Indar
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Nanghait
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Sawar
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Tauriz
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Zarizi
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Akatash
}
text = {
trigger = {
society_member_of = the_plaguebringers
}
localisation_key = String_Karash_Han
}
text = {
trigger = {
society_member_of = the_plaguebringers
}
localisation_key = String_Shyngay_Han
}
text = {
trigger = {
society_member_of = the_plaguebringers
}
localisation_key = String_Badysh_Han
}
text = {
trigger = {
society_member_of = the_plaguebringers
}
localisation_key = String_Kerey_Han
}
text = {
trigger = {
society_member_of = the_plaguebringers
}
localisation_key = String_Yabash_Han
}
text = {
trigger = {
society_member_of = the_cold_ones
}
localisation_key = String_Baba_Yaga
}
text = {
trigger = {
society_member_of = the_cold_ones
}
localisation_key = String_Berstuk
}
text = {
trigger = {
society_member_of = the_cold_ones
}
localisation_key = String_the_Shishigas
}
text = {
trigger = {
society_member_of = the_cold_ones
}
localisation_key = String_Polunocnica
}
text = {
trigger = {
society_member_of = the_cult_of_kali
}
localisation_key = String_Bakasura
}
text = {
trigger = {
society_member_of = the_cult_of_kali
}
localisation_key = String_Kirmira
}
text = {
trigger = {
society_member_of = the_cult_of_kali
}
localisation_key = String_Jatasur
}
text = {
trigger = {
society_member_of = the_cult_of_kali
}
localisation_key = String_Ravana
}
text = {
trigger = {
society_member_of = the_cult_of_kali
}
localisation_key = String_Mahakali
}
text = {
trigger = {
society_member_of = the_trollcrafters
}
localisation_key = String_Angrboda
}
text = {
trigger = {
society_member_of = the_trollcrafters
}
localisation_key = String_Beli
}
text = {
trigger = {
society_member_of = the_trollcrafters
}
localisation_key = String_Fenrir
}
text = {
trigger = {
society_member_of = the_trollcrafters
}
localisation_key = String_Great_Loki
}
}
defined_text = {
name = GetDWPartyClothes
text = {
localisation_key = String_special_shoes
}
text = {
trigger = { is_female = no }
localisation_key = String_Russian_codpiece
}
text = {
trigger = {
OR = {
is_female = yes
trait = homosexual
}
religion_group = christian
}
localisation_key = String_Nuns_habit
}
text = {
trigger = {
religion_group = christian
}
localisation_key = String_Bishops_mitre
}
text = {
localisation_key = String_skin_mask
}
text = {
localisation_key = String_horned_helmet
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_pink_turban
}
}
defined_text = {
name = GetDWImplements
text = {
localisation_key = String_new_poisons
}
text = {
localisation_key = String_implements
}
text = {
localisation_key = String_Pear_of_Anguish
}
text = {
localisation_key = String_fav_thumbscrew
}
text = {
localisation_key = String_fav_garrotte
}
}
defined_text = {
name = GetDWSettlement
text = {
trigger = {
NOT = { society_member_of = the_plaguebringers }
}
localisation_key = String_town
}
text = {
trigger = {
society_member_of = the_plaguebringers
}
localisation_key = String_camp
}
}
defined_text = {
name = GetDWDrug
text = {
localisation_key = String_Tears_of_Demeter
}
text = {
localisation_key = String_Fools_Honey
}
text = {
localisation_key = String_Blood_of_Jahi
}
text = {
localisation_key = String_Dreamers_Delight
}
}
defined_text = {
name = GetBitchBastard
text = {
trigger = {
is_female = yes
}
localisation_key = String_bitch
}
text = {
trigger = {
is_female = no
}
localisation_key = String_bastard
}
}
defined_text = {
name = GetDWBrethrenType
text = {
trigger = {
NOR = {
society_member_of = the_cold_ones
society_member_of = the_plaguebringers
}
}
localisation_key = String_Darkness
}
text = {
trigger = {
society_member_of = the_cold_ones
}
localisation_key = String_Winter
}
text = {
trigger = {
society_member_of = the_plaguebringers
}
localisation_key = String_Disease
}
}
defined_text = {
name = GetDWDemonTerm
text = {
trigger = {
society_member_of = the_satanists
NOR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Demon_Prince
}
text = {
trigger = {
society_member_of = the_satanists
OR = {
religion_group = zoroastrian_group
religion = zun_pagan
religion = zun_pagan_reformed
}
}
localisation_key = String_Greater_Daeva
}
text = {
trigger = {
OR = {
society_member_of = the_cold_ones
society_member_of = the_plaguebringers
}
}
localisation_key = String_Greater_Demon
}
text = {
trigger = {
society_member_of = the_trollcrafters
}
localisation_key = String_Jotun_Lord
}
text = {
trigger = {
society_member_of = the_cult_of_kali
}
localisation_key = String_Rakshasa_Prince
}
}
defined_text = {
name = GetDWSacrifice
text = {
trigger = { has_character_flag = sacrifice_ruler }
localisation_key = String_powerful_ruler
}
text = {
trigger = { has_character_flag = sacrifice_holy_person }
localisation_key = String_servant_of_GetHighGodName
}
text = {
trigger = { has_character_flag = sacrifice_virgin }
localisation_key = String_virgin
}
text = {
trigger = { has_character_flag = sacrifice_dwarf }
localisation_key = String_dwarf
}
}
defined_text = {
name = GetWeaponsmithWeapon
text = {
trigger = { has_character_flag = weapon_sword }
localisation_key = String_sword
}
text = {
trigger = { has_character_flag = weapon_scimitar }
localisation_key = String_scimitar
}
text = {
trigger = { has_character_flag = weapon_lance }
localisation_key = String_lance
}
text = {
trigger = { has_character_flag = weapon_axe }
localisation_key = String_axe
}
text = {
trigger = { has_character_flag = weapon_mace }
localisation_key = String_mace
}
text = {
trigger = { has_character_flag = weapon_bow }
localisation_key = String_bow
}
}
defined_text = {
name = GetSunName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Sun_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Sun_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Sun_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Sun_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Sun_farsi
}
}
defined_text = {
name = GetMercuryName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mercury_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Mercury_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Mercury_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Mercury_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mercury_farsi
}
}
defined_text = {
name = GetVenusName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Venus_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Venus_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Venus_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Venus_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Venus_farsi
}
}
defined_text = {
name = GetEarthName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Earth_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Earth_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Earth_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Earth_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Earth_farsi
}
}
defined_text = {
name = GetMoonName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Moon_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Moon_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Moon_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Moon_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Moon_farsi
}
}
defined_text = {
name = GetMarsName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mars_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Mars_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Mars_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Mars_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mars_farsi
}
}
defined_text = {
name = GetJupiterName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Jupiter_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Jupiter_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Jupiter_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Jupiter_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Jupiter_farsi
}
}
defined_text = {
name = GetSaturnName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Saturn_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Saturn_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Saturn_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Saturn_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Saturn_farsi
}
}
defined_text = {
name = GetUranusName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Uranus_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Uranus_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Uranus_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Uranus_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Uranus_farsi
}
}
defined_text = {
name = GetNeptuneName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Neptune_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Neptune_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Neptune_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Neptune_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Neptune_farsi
}
}
defined_text = {
name = GetPlutoName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Pluto_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Pluto_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Pluto_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Pluto_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Pluto_farsi
}
}
defined_text = {
name = GetRandomPlanetName
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mercury_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Mercury_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Mercury_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Mercury_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mercury_farsi
}
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Venus_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Venus_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Venus_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Venus_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Venus_farsi
}
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mars_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Mars_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Mars_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Mars_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Mars_farsi
}
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Jupiter_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Jupiter_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Jupiter_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Jupiter_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Jupiter_farsi
}
text = {
trigger = {
NOR = {
religion_group = muslim
culture = nahuatl
religion = hellenic_pagan
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Saturn_english
}
text = {
trigger = {
religion_group = muslim
}
localisation_key = String_Saturn_arabic
}
text = {
trigger = {
culture = nahuatl
}
localisation_key = String_Saturn_nahuatl
}
text = {
trigger = {
religion = hellenic_pagan
}
localisation_key = String_Saturn_hellenic
}
text = {
trigger = {
OR = {
religion = zun_pagan
religion = zun_pagan_reformed
religion_group = zoroastrian_group
}
}
localisation_key = String_Saturn_farsi
}
}
defined_text = {
name = GetHermeticsDestinedRole
text = {
trigger = {
has_character_flag = destined_steward
}
localisation_key = String_steward
}
text = {
trigger = {
has_character_flag = destined_fighter
}
localisation_key = String_figther
}
text = {
trigger = {
has_character_flag = destined_diplomat
}
localisation_key = String_diplomat
}
text = {
trigger = {
has_character_flag = destined_schemer
}
localisation_key = String_schemer
}
text = {
trigger = {
has_character_flag = destined_scholar
}
localisation_key = String_scholar
}
}
defined_text = {
name = GetHermeticsDestinedExpertise
text = {
trigger = {
has_character_flag = destined_steward
}
localisation_key = String_administration
}
text = {
trigger = {
has_character_flag = destined_fighter
}
localisation_key = String_battle
}
text = {
trigger = {
has_character_flag = destined_diplomat
}
localisation_key = String_diplomacy
}
text = {
trigger = {
has_character_flag = destined_schemer
}
localisation_key = String_intrigue
}
text = {
trigger = {
has_character_flag = destined_scholar
}
localisation_key = String_scholarship
}
}

defined_text = {
name = GetWesternZodiacSign
text = {
trigger = {
is_born_under_Aries_trigger = yes
}
localisation_key = String_Aries
}
text = {
trigger = {
is_born_under_Taurus_trigger = yes
}
localisation_key = String_Taurus
}
text = {
trigger = {
is_born_under_Gemini_trigger = yes
}
localisation_key = String_Gemini
}
text = {
trigger = {
is_born_under_Cancer_trigger = yes
}
localisation_key = String_Cancer
}
text = {
trigger = {
is_born_under_Leo_trigger = yes
}
localisation_key = String_Leo
}
text = {
trigger = {
is_born_under_Virgo_trigger = yes
}
localisation_key = String_Virgo
}
text = {
trigger = {
is_born_under_Libra_trigger = yes
}
localisation_key = String_Libra
}
text = {
trigger = {
is_born_under_Scorpius_trigger = yes
}
localisation_key = String_Scorpius
}
text = {
trigger = {
is_born_under_Sagittarius_trigger = yes
}
localisation_key = String_Sagittarius
}
text = {
trigger = {
is_born_under_Capricorn_trigger = yes
}
localisation_key = String_Capricorn
}
text = {
trigger = {
is_born_under_Aquarius_trigger = yes
}
localisation_key = String_Aquarius
}
text = {
trigger = {
is_born_under_Pisces_trigger = yes
}
localisation_key = String_Pisces
}
}
defined_text = {
name = GetTheoryPaperQuality
text = {
trigger = { has_character_flag = theory_paper_simplistic }
localisation_key = String_a_rather_simplistic
}
text = {
trigger = { has_character_flag = theory_paper_average }
localisation_key = String_an_entirely_average
}
text = {
trigger = { has_character_flag = theory_paper_excellent }
localisation_key = String_an_excellent
}
text = {
trigger = { has_character_flag = theory_paper_revolutionary }
localisation_key = String_a_truly_revolutionary
}
}
defined_text = {
name = GetTheoryPaperQualityExpanded
text = {
trigger = { FROM = { has_character_flag = theory_paper_simplisti
c } }
localisation_key = String_simplistic
}
text = {
trigger = { FROM = { has_character_flag = theory_paper_average }
}
localisation_key = String_average
}
text = {
trigger = { FROM = { has_character_flag = theory_paper_excellent
} }
localisation_key = String_excellent
}
text = {
trigger = { FROM = { has_character_flag = theory_paper_revolutio
nary } }
localisation_key = String_revolutionary
}
}
#GetHermeticDebateSubject
# Includes both definite and non-definite texts. Use as a self-contained object
in your sentence. (We were debating [GetHermeticDebateSubject].)
defined_text = {
name = GetHermeticDebateSubject
text = {
localisation_key = String_Universal_Theology
}
text = {
trigger = {
OR = {
religion = catholic
religion = orthodox
}
}
localisation_key = String_origin_of_the_Trinity_before_Messiah
}
text = {
trigger = {
religion = jewish
}
localisation_key = String_Qabalah
}
text = {
localisation_key = String_unity_with_the_One
}
text = {
localisation_key = String_nature_of_Prima_materia
}
text = {
localisation_key = String_nature_of_the_Inner_and_the_Outer_cosm
os
}
text = {
localisation_key = String_Prisca_theologia
}
text = {
localisation_key = String_esoteric_meaning_of_the_Caduceus
}
text = {
localisation_key = String_truth_inherent_to_Divine_Consciousness
}
text = {
localisation_key = String_interaction_of_the_soul_and_alchemy
}
text = {
localisation_key = String_very_definition_of_a_true_magnum_opus
}
text = {
weight_multiplier = { factor = 0.1 }
localisation_key = String_the_nature_of_the_Judgements_and_the_B
azaar
}
text = {
localisation_key = String_the_movement_of_celestial_bodies
}
text = {
localisation_key = String_the_laws_of_the_stars
}
}

defined_text = {
name = GetSillyDebateSubject
text = {
localisation_key = String_divinity_of_snails
}
text = {
localisation_key = String_snake_or_staff
}
text = {
localisation_key = String_why_gold_anyways
}
text = {
localisation_key = String_medicinal_application_of_alcohol
}
text = {
localisation_key = String_trinity_or_maybe_quaternity
}
text = {
localisation_key = String_emerald_tablet_kept_at_home
}
text = {
localisation_key = String_procedure_of_previous_debate
}
text = {
localisation_key = String_soul_leaving_body
}
text = {
localisation_key = String_kings_or_angels_higher_ranked
}
text = {
localisation_key = String_inferno_is_maybe_cool
}
text = {
weight_multiplier = {
factor = 1
modifier = {
factor = 0
NOT = { trait = immortal }
}
}
localisation_key = String_eternal_life_not_that_great
}
text = {
weight_multiplier = { factor = 0.4 }
localisation_key = String_top_ten_alchemists
}
text = {
localisation_key = String_that_feeling
}
text = {
weight_multiplier = {
factor = 1
modifier = {
factor = 0.3
NOT = {
trait = gardener
}
}
}
localisation_key = String_gardening_noble_work
}
text = {
weight_multiplier = { factor = 0.2 }
localisation_key = String_alchemists_make_better_lovers
}
}
defined_text = {
name = GetAssassinsDrugsTooltip
text = {
trigger = {
NOT = { has_character_modifier = withdrawal_symptoms }
}
localisation_key = String_assassins_drugs
}
text = {
trigger = {
has_character_modifier = withdrawal_symptoms
}
localisation_key = String_assassins_drugs_withdrawal
}
}

defined_text = {
name = GetOmenModifierName # (used exclusively in tooltip_info_omen_tt)
text = {
trigger = { has_character_modifier = good_battle_omen }
localisation_key = String_good_battle_omen
}
text = {
trigger = { has_character_modifier = good_relationship_omen }
localisation_key = String_good_relationship_omen
}
text = {
trigger = { has_character_modifier = good_power_omen }
localisation_key = String_good_power_omen
}
text = {
trigger = { has_character_modifier = bad_battle_omen }
localisation_key = String_bad_battle_omen
}
text = {
trigger = { has_character_modifier = bad_relationship_omen }
localisation_key = String_bad_relationship_omen
}
text = {
trigger = { has_character_modifier = bad_power_omen }
localisation_key = String_bad_power_omen
}
}
defined_text = {
name = GetOmenResultReaction #(used exclusively in tooltip_info_omen_tt)
text = {
trigger = { has_character_modifier = good_battle_omen has_charac
ter_flag = negative_event_flag }
localisation_key = String_good_battle_omen_bad_event
}
text = {
trigger = { has_character_modifier = good_relationship_omen has_
character_flag = negative_event_flag }
localisation_key = String_good_relationship_omen_bad_event
}
text = {
trigger = { has_character_modifier = good_power_omen has_charact
er_flag = negative_event_flag }
localisation_key = String_good_power_omen_bad_event
}
text = {
trigger = { has_character_modifier = bad_battle_omen has_charact
er_flag = negative_event_flag }
localisation_key = String_bad_battle_omen_bad_event
}
text = {
trigger = { has_character_modifier = bad_relationship_omen has_c
haracter_flag = negative_event_flag }
localisation_key = String_bad_relationship_omen_bad_event
}
text = {
trigger = { has_character_modifier = bad_power_omen has_characte
r_flag = negative_event_flag }
localisation_key = String_bad_power_omen_bad_event
}
text = {
trigger = { has_character_modifier = good_battle_omen has_charac
ter_flag = positive_event_flag }
localisation_key = String_good_battle_omen_good_event
}
text = {
trigger = { has_character_modifier = good_relationship_omen has_
character_flag = positive_event_flag }
localisation_key = String_good_relationship_omen_good_event
}
text = {
trigger = { has_character_modifier = good_power_omen has_charact
er_flag = positive_event_flag }
localisation_key = String_good_power_omen_good_event
}
text = {
trigger = { has_character_modifier = bad_battle_omen has_charact
er_flag = positive_event_flag }
localisation_key = String_bad_battle_omen_good_event
}
text = {
trigger = { has_character_modifier = bad_relationship_omen has_c
haracter_flag = positive_event_flag }
localisation_key = String_bad_relationship_omen_good_event
}
text = {
trigger = { has_character_modifier = bad_power_omen has_characte
r_flag = positive_event_flag }
localisation_key = String_bad_power_omen_good_event
}
}
defined_text = {
name = GetSeductionAstrologyPostScript # (used exclusively in WOL.404)
text = {
trigger = { has_character_flag = seduction_whats_your_zodiac }
localisation_key = String_our_signs_are_very_compatible
}
text = {
trigger = { NOT = { has_character_flag = seduction_whats_your_zo
diac } }
localisation_key = String_empty_space
}
}

You might also like