mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-20 22:54:46 +00:00
## About The Pull Request https://github.com/Bubberstation/Bubberstation/pull/1829; TLDR adds old versions back. Although, the snouthole skull mask has been pushed aside until the proper spritework is finished. I might have fucked up my merge conflict resolutions earlier. Notably - by request - the bleached variants do not hide your hair. ## Why It's Good For The Game ## Proof Of Testing   (note that snout hole variant is pictured but removed - but the appearance is pretty much the same)  ## Changelog 🆑 add: Bleached (old appearance) variants for drake suit& bone+skull armor; and corresponding crafting recipes to swap between appearances /🆑 --------- Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com>
49 lines
1.6 KiB
Plaintext
49 lines
1.6 KiB
Plaintext
/datum/crafting_recipe/drakecloak_bleached
|
|
name = "Bleached Ash Drake Armour"
|
|
result = /obj/item/clothing/suit/hooded/cloak/drake/bleached
|
|
reqs = list(/obj/item/clothing/suit/hooded/cloak/drake = 1,
|
|
/obj/item/stack/ore/glass/basalt = 5)
|
|
time = 5 SECONDS
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/bonesuit_bleached
|
|
name = "Bleached Bone Armor"
|
|
result = /obj/item/clothing/suit/armor/bone/bleached
|
|
reqs = list(/obj/item/clothing/suit/armor/bone = 1,
|
|
/obj/item/stack/ore/glass/basalt = 5)
|
|
time = 5 SECONDS
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/skullhelm_bleached
|
|
name = "Bleached Skull"
|
|
result = /obj/item/clothing/head/helmet/skull/bleached
|
|
reqs = list(/obj/item/clothing/head/helmet/skull = 1,
|
|
/obj/item/stack/ore/glass/basalt = 5)
|
|
time = 5 SECONDS
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/drakecloak_ochre
|
|
name = "Ochre Ash Drake Armour"
|
|
result = /obj/item/clothing/suit/hooded/cloak/drake
|
|
reqs = list(/obj/item/clothing/suit/hooded/cloak/drake/bleached = 1,
|
|
/obj/item/stack/ore/glass/basalt = 5)
|
|
time = 5 SECONDS
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/bonesuit_ochre
|
|
name = "ochre Bone Armor"
|
|
result = /obj/item/clothing/suit/armor/bone
|
|
reqs = list(/obj/item/clothing/suit/armor/bone/bleached = 1,
|
|
/obj/item/stack/ore/glass/basalt = 5)
|
|
time = 5 SECONDS
|
|
category = CAT_CLOTHING
|
|
|
|
/datum/crafting_recipe/skullhelm_ochre
|
|
name = "Ochre Skull"
|
|
result = /obj/item/clothing/head/helmet/skull
|
|
reqs = list(/obj/item/clothing/head/helmet/skull/bleached = 1,
|
|
/obj/item/stack/ore/glass/basalt = 5)
|
|
time = 5 SECONDS
|
|
category = CAT_CLOTHING
|
|
|