﻿
chinese_hairstyles = {

    usage = game

	baby_hair = {
        dna_modifiers = {
            accessory = {
                mode = replace
                gene = hairstyles
                template = western_baby_hairstyles
                range = { 0 1 } # For the randomness to work correctly
            }
        }   
        # outfit_tags = { no_clothes }
        weight = {
            base = 0
            modifier = {
                add = 100
                age < 5
                NOT = { portrait_african_clothing_trigger = yes } # Should be replaced with a has_gene trigger when we get that
            }
        }
    }

    baby_hair_sub_saharan = {
        dna_modifiers = {
            accessory = {
                mode = replace
                gene = hairstyles
                template = sub_saharan_baby_hairstyles
                range = { 0 1 } # For the randomness to work correctly
            }
        }   
        # outfit_tags = { no_clothes }
        weight = {
            base = 0
            modifier = {
                add = 100
                age < 5
                portrait_african_clothing_trigger = yes # Should be replaced with a has_gene trigger when we get that
            }
        }
    }

}