diff --git a/GainStation13/code/clothing/calorite_collar.dm b/GainStation13/code/clothing/calorite_collar.dm index 10d7e29e..b65315d7 100644 --- a/GainStation13/code/clothing/calorite_collar.dm +++ b/GainStation13/code/clothing/calorite_collar.dm @@ -35,3 +35,19 @@ name = "locked calorite collar" desc = "A modified locked collar infused with calorite, magnifying the caloric impact of any food the wearer eats" weight_gain_rate_modifier = 1.5 + +/datum/crafting_recipe/calorite_collar + name = "Calorite Collar" + result = /obj/item/clothing/neck/petcollar/calorite + time = 25 + reqs = list(/obj/item/clothing/neck/petcollar = 1, + /obj/item/stack/sheet/mineral/calorite = 3) + category = CAT_CLOTHING + +/datum/crafting_recipe/locked_calorite_collar + name = "Locked Calorite Collar" + result = /obj/item/clothing/neck/petcollar/locked/calorite + time = 25 + reqs = list(/obj/item/clothing/neck/petcollar/locked = 1, + /obj/item/stack/sheet/mineral/calorite = 3) + category = CAT_CLOTHING