ElTyranos / CommunityFlavorPack

Historical portrait accessories for Crusader Kings 3 characters.
https://communityflavorpack.com/
16 stars 7 forks source link

Improve buddhist pilosity handling #75

Closed ElTyranos closed 3 years ago

ElTyranos commented 3 years ago

Buddhist, Bon and Taoist characters do not have hair or beards

01_beards.txt (a weight modifier under the has_no_beard section)

            modifier = {
                add = 110
                OR = {
                    is_theocratic_lessee = yes
                    AND = { is_ruler = yes has_government = theocracy_government }
                    has_council_position = councillor_court_chaplain
                    has_trait = devoted
                }
                OR = {
                    religion = religion:buddhism_religion
                    religion = religion:bon_religion
                    religion = religion:taoism_religion
                }
            }

01_hairstyles.txt (a weight modifier under the no_hair section)

           modifier = {
                add = 110
                OR = {
                    is_theocratic_lessee = yes
                    AND = { is_ruler = yes has_government = theocracy_government }
                    has_council_position = councillor_court_chaplain
                    has_trait = devoted
                }
                OR = {
                    religion = religion:buddhism_religion
                    religion = religion:bon_religion
                    religion = religion:taoism_religion
                }
            }
ElTyranos commented 3 years ago

From a steam comment :

Taoist monks don't (and didn't) shave their heads. Instead they wear a Touji 頭髻 or topknot and grow their hair out as long as possible.

https://en.wikipedia.org/wiki/Hanfu#Hats.2C_headwear_and_hairstyles https://www.wudangzixiao.com/english/articles/hair-and-bun-in-taoism/

ElTyranos commented 3 years ago

done