• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Elbadruhel

Sergeant
19 Badges
Apr 6, 2017
58
1
  • Crusader Kings II: Holy Fury
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Jade Dragon
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Reapers Due
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Way of Life
  • Magicka 2
  • Crusader Kings II: Sword of Islam
  • Majesty 2 Collection
  • Cities in Motion 2
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II
Hello,

I want to create a trait that characters will get on birth if their father had another trait. The idea is to create a "family trait". I will explain it:
- Father is "Brave".
- Son gets trait "Brave Father".
- If this son becomes "Brave" too, his own son will get "Brave Family" on birth instead of "Brave Father".
- "Brave Family" is normal agnatic inherited trait so every future kid will get it.


Summarizing:

- Father has:
AND = {
trait = brave
NOR = {
trait = brave_father
trait = brave_family
}
}
Then kid gets: trait = brave_father

- Father has:
OR = {
trait = brave_family
AND = {
trait = brave_father
trait = brave
}
}
Then kid gets: trait = brave_family

Is it posible?