mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
* Cytology Adjacent Update #2: Carp scale crafting. (#61913) expansion: Adds carp scales, and carp scale crafting. * Cytology Adjacent Update #2: Carp scale crafting. Co-authored-by: Krysonism <49783092+Krysonism@users.noreply.github.com>
This commit is contained in:
@@ -282,3 +282,21 @@ GLOBAL_LIST_INIT(sinew_recipes, list ( \
|
||||
..()
|
||||
new /obj/item/stack/sheet/leather(drop_location(), amount)
|
||||
qdel(src)
|
||||
|
||||
/obj/item/stack/sheet/animalhide/carp
|
||||
name = "carp scales"
|
||||
desc = "The scaly skin of a space carp. It looks quite beatiful when detached from the foul creature who once wore it."
|
||||
singular_name = "carp scales"
|
||||
icon_state = "sheet-carp"
|
||||
inhand_icon_state = "sheet-carp"
|
||||
merge_type = /obj/item/stack/sheet/animalhide/carp
|
||||
|
||||
GLOBAL_LIST_INIT(carp_recipes, list ( \
|
||||
new/datum/stack_recipe("carp costume", /obj/item/clothing/suit/hooded/carp_costume, 4), \
|
||||
new/datum/stack_recipe("carp mask", /obj/item/clothing/mask/gas/carp, 1), \
|
||||
new/datum/stack_recipe("carpskin chair", /obj/structure/chair/comfy/carp, 2), \
|
||||
))
|
||||
|
||||
/obj/item/stack/sheet/animalhide/carp/get_main_recipes()
|
||||
. = ..()
|
||||
. += GLOB.carp_recipes
|
||||
|
||||
Reference in New Issue
Block a user