idk why I dont have a cursor

This commit is contained in:
Magpie490 2025-06-02 16:22:24 +01:00
parent 701d55c01f
commit cda3acdcea
349 changed files with 78627 additions and 7804 deletions

View file

@ -0,0 +1,41 @@

##TRIGGER LIST
# has_conventionally_attractive_trigger
# has_conventionally_ugly_trigger
# has_permanent_physical_injury - checks if you have some permanent injury
#
has_conventionally_attractive_trigger = {
OR = {
has_trait = beauty_good
AND = {
has_trait = strong
NOT = { has_trait = beauty_bad }
}
}
}
has_conventionally_ugly_trigger = {
OR = {
has_trait = beauty_bad
has_trait = hunchbacked
has_trait = one_legged
has_trait = scarred
has_trait = one_eyed
has_trait = scaly
has_trait = great_pox
has_trait = dwarf
has_trait = albino
}
}
has_permanent_physical_injury = {
OR = {
has_trait = one_legged
has_trait = one_eyed
has_trait = scarred
has_trait = maimed
is_eunuch_trigger = yes
has_trait = blind
}
}