I know it's possible to limit traits for culture groups using the 'excludeculture' line, but I was wondering if it's possible to make faction specific traits.
Printable View
I know it's possible to limit traits for culture groups using the 'excludeculture' line, but I was wondering if it's possible to make faction specific traits.
EB seemed to achieve this by adding condition "and FactionType xxxx" to trigger...
Quote:
Trigger acquire_babylonian_mystic
WhenToTest CharacterTurnEnd
Condition EndedInSettlement
and IsGeneral
and FactionType parthia
and RemainingMPPercentage > 75
and SettlementBuildingExists >= temple_of_governors_temple
and Trait NoMoreAncillaries < 1
and Trait Babylonian_MysticAcquired < 1
Affects AcquireBabylonian_Mystic 1 Chance 12
;------------------------------------------
You got to love the EB team:2thumbsup: . Well, thank you for solving my question.
You can also use CultureType roman as a condition to limit by culture group, as you may want a different cultures to acquire in different circumstances.
Yes, but when you need different traits in the same culture group the culture type is not enough. For example,in Inca:Total War the Aztec and Mixtec are in the same culture group, but the Aztec faction leader is called 'Hueyni Tlatoani' while the Mixtec one is called 'Cacique'.
off topic: according the spell corrector Hueyni Tlatoani is an error while Cacique is a proper English word:inquisitive: .
translator says it means "local political boss" ...Quote:
off topic: according the spell corrector Hueyni Tlatoani is an error while Cacique is a proper English word
My point wasn't that you could use CultureType instead of FactionType, but rather that ExcludedCultures by itself isn't always enough, and that CultureType and/or FactionType in the triggers may also be needed to achieve the desired trait behaviour.Quote:
Originally Posted by Jacob Debroedere
I never knew there was such an option as CultureType. I skimmed your post and thought you meant excludeculture.Quote:
Originally Posted by Squid
A good idea would be to read Squid's Ancs&Traits Guide at the Scriptorium. many useful thinsg to learn.
I have another question on faction specific traits, which I couldn't find in Squid's guide(although it has been helpfull in other things),so I decided to revive this thread.
Is it also possible to use somthing like 'and IsNot FactionType x'?
Yup. Just put "not" before the FactionType faction_name condition.
For instance: "blablabla and not FactionType germans"
Ok, thankyou.