﻿brus_pagan_trinket = {
	can_equip = {
		always = yes
	}
	
	# can this character benefit from the full modifiers of the artifact?
	can_benefit = {
		faith = { has_doctrine = unreformed_faith_doctrine }
	}

	# if a given character does not pass the "can_benefit" trigger then this modifier will be applied instead.
	fallback = {
		monthly_prestige = 0.3
	}
}

brus_refashioned_trinket = {
	can_equip = {
		always = yes
	}

	# can this character benefit from the full modifiers of the artifact?
	can_benefit = {
		NOT = { faith = { has_doctrine = unreformed_faith_doctrine } }
	}

	# if a given character does not pass the "can_benefit" trigger then this modifier will be applied instead.
	fallback = {
		monthly_prestige = 0.3
	}
}