bib_test_add_beauty_interaction = {
    category = interaction_category_uncategorized
    common_interaction = yes
	interface_priority = 9
    use_diplomatic_range = no
    ignores_pending_interaction_block = yes
    icon = icon_scheme_romance
	cooldown = { days = 0 }
    is_shown = {
	    scope:actor = { is_ai = no }
		debug_only = yes
    }

    is_valid = {
		scope:recipient = {
            nor = {
                has_trait =  beauty_good_1
                has_trait =  beauty_good_2
                has_trait =  beauty_good_3
            }
        }
	}

    on_accept = {
        scope:recipient = {
            remove_trait = beauty_good_1
            remove_trait = beauty_good_2
            remove_trait = beauty_good_3
        }
        scope:recipient = { add_trait = beauty_good_3 }
    }
    auto_accept = yes
}

bib_test_remove_beauty_interaction = {
    category = interaction_category_uncategorized
    common_interaction = yes
    #category = interaction_debug_admin
	interface_priority = 8
    use_diplomatic_range = no
    ignores_pending_interaction_block = yes
    icon = icon_scheme_seduce
	cooldown = { days = 0 }
    is_shown = {
	    scope:actor = { is_ai = no }
		debug_only = yes
        scope:recipient = {
            or = {
                has_trait = beauty_good_1
                has_trait = beauty_good_2
                has_trait = beauty_good_3
            }
        }
    }

    is_valid = {
		#scope:recipient = { any_secret = {} }
	}

    on_accept = {
        scope:recipient = {
            remove_trait = beauty_good_1
            remove_trait = beauty_good_2
            remove_trait = beauty_good_3
        }
    }
    auto_accept = yes
}