Yes, I just tested various conditions and it works. To sum up:
= - equal to
> - more than (but not equal)
< - less than (but not equal)
>= - more than or equal to
<= - less than or equal to
These can be used in the conditions throughout the files.
Example of a trigger:
Code:
;------------------------------------------
Trigger ABC1
WhenToTest CharacterTurnEnd
Condition Attribute Influence > 4
and Trait Patrician = 1
and FactionType seleucid
and Trait Wealthy > 0
and EndedInSettlement
and Trait NaturalCharisma > 3
and Trait Patronus < 1
and SettlementBuildingExists >= governors_villa
and Trait Selflessness <= 3
Affects ABC 1 Chance 5
;------------------------------------------
Bookmarks