mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 11:12:14 +00:00
cl MMMiracles add: Botany can now grow cotton to produce cloth for various jumpsuits. add: Cotton can be mutated into a much more durable strand, allowing for the production of crude armor. add: Rainbow flowers, an alternative for clothing dyeing, is obtainable through cargo's exotic seed crate. add: A loom can now be crafted with some planks so you can actually weave that cotton into a usable fabric. add: Fannypacks, softcaps, beanies and scarves are now craftable with cloth and dyeable. /cl [why]: A way to produce clothing and naturally obtain cloth past ripping up other stuff seemed useful and with the economy aspect, might actually have some extra use.
86 lines
2.8 KiB
Plaintext
86 lines
2.8 KiB
Plaintext
/datum/crafting_recipe/durathread_vest
|
|
name = "Makeshift Durathread Vest"
|
|
result = /obj/item/clothing/suit/armor/vest/durathread
|
|
reqs = list(/obj/item/stack/sheet/cloth/durathread = 5,
|
|
/obj/item/stack/sheet/leather = 4)
|
|
time = 50
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/durathread_helmet
|
|
name = "Makeshift Durathread Helmet"
|
|
result = /obj/item/clothing/head/helmet/durathread
|
|
reqs = list(/obj/item/stack/sheet/cloth/durathread = 4,
|
|
/obj/item/stack/sheet/leather = 3,
|
|
/obj/item/clothing/head/hardhat = 1)
|
|
time = 40
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/fannypack
|
|
name = "Fannypack"
|
|
result = /obj/item/storage/belt/fannypack
|
|
reqs = list(/obj/item/stack/sheet/cloth = 2,
|
|
/obj/item/stack/sheet/leather = 1)
|
|
time = 20
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/hudsunsec
|
|
name = "Security HUDsunglasses"
|
|
result = /obj/item/clothing/glasses/hud/security/sunglasses
|
|
time = 20
|
|
tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
|
|
reqs = list(/obj/item/clothing/glasses/hud/security = 1,
|
|
/obj/item/clothing/glasses/sunglasses = 1,
|
|
/obj/item/stack/cable_coil = 5)
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/hudsunsecremoval
|
|
name = "Security HUD removal"
|
|
result = /obj/item/clothing/glasses/sunglasses
|
|
time = 20
|
|
tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
|
|
reqs = list(/obj/item/clothing/glasses/hud/security/sunglasses = 1)
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/hudsunmed
|
|
name = "Medical HUDsunglasses"
|
|
result = /obj/item/clothing/glasses/hud/health/sunglasses
|
|
time = 20
|
|
tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
|
|
reqs = list(/obj/item/clothing/glasses/hud/health = 1,
|
|
/obj/item/clothing/glasses/sunglasses = 1,
|
|
/obj/item/stack/cable_coil = 5)
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/hudsunmedremoval
|
|
name = "Medical HUD removal"
|
|
result = /obj/item/clothing/glasses/sunglasses
|
|
time = 20
|
|
tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
|
|
reqs = list(/obj/item/clothing/glasses/hud/health/sunglasses = 1)
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/beergoggles
|
|
name = "Beer Goggles"
|
|
result = /obj/item/clothing/glasses/sunglasses/reagent
|
|
time = 20
|
|
tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
|
|
reqs = list(/obj/item/clothing/glasses/science = 1,
|
|
/obj/item/clothing/glasses/sunglasses = 1,
|
|
/obj/item/stack/cable_coil = 5)
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/beergogglesremoval
|
|
name = "Beer Goggles removal"
|
|
result = /obj/item/clothing/glasses/sunglasses
|
|
time = 20
|
|
tools = list(TOOL_SCREWDRIVER, TOOL_WIRECUTTER)
|
|
reqs = list(/obj/item/clothing/glasses/sunglasses/reagent = 1)
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/ghostsheet
|
|
name = "Ghost Sheet"
|
|
result = /obj/item/clothing/suit/ghost_sheet
|
|
time = 5
|
|
tools = list(TOOL_WIRECUTTER)
|
|
reqs = list(/obj/item/bedsheet = 1)
|
|
category = CAT_CLOTHING |