[MIRROR] Blesses the codebase with Blahaj (#26800)
* Blesses the codebase with Blahaj (#81862) ## About The Pull Request Adds the Shark and Shork Costume to the game, craftable via carp scales. In addition, adds the ability to use a shark costume to craft a shark plushy.   It is five carp scales and five leather to craft the shark costume, take the costume and craft it with wirecutters to make a shork costume. Take a shark costume, 10 cotton, and five cloth to craft a shark plush. ## Why It's Good For The Game Good and funny costumes that give an additional use to pre-existing crafting materials = good Giving players another way to craft the shark plushie = good Todo: - [x] Make sure shit wont break - [x] Add the crafting recipe for the costume - [x] Add the crafting recipe for the shark plushie - [x] Profit?? ## Changelog 🆑 Drag add: Adds the Shark and Shork costume. Blahaj lovers rejoice! /🆑 --------- Co-authored-by: Aki Ito <11748095+ExcessiveUseOfCobblestone@ users.noreply.github.com> * Blesses the codebase with Blahaj --------- Co-authored-by: Thedragmeme <81540056+Draggeru@users.noreply.github.com> Co-authored-by: Aki Ito <11748095+ExcessiveUseOfCobblestone@ users.noreply.github.com>
@@ -8,6 +8,16 @@
|
||||
)
|
||||
category = CAT_ENTERTAINMENT
|
||||
|
||||
/datum/crafting_recipe/sharkplush
|
||||
name = "Shark Plushie"
|
||||
result = /obj/item/toy/plush/shark
|
||||
reqs = list(
|
||||
/obj/item/clothing/suit/hooded/shark_costume = 1,
|
||||
/obj/item/grown/cotton = 10,
|
||||
/obj/item/stack/sheet/cloth = 5,
|
||||
)
|
||||
category = CAT_ENTERTAINMENT
|
||||
|
||||
/datum/crafting_recipe/mixedbouquet
|
||||
name = "Mixed bouquet"
|
||||
result = /obj/item/bouquet
|
||||
|
||||
@@ -345,6 +345,27 @@
|
||||
)
|
||||
category = CAT_CLOTHING
|
||||
|
||||
/datum/crafting_recipe/shark_costume
|
||||
name = "shark costume"
|
||||
result = /obj/item/clothing/suit/hooded/shark_costume
|
||||
time = 2 SECONDS
|
||||
reqs = list(
|
||||
/obj/item/stack/sheet/leather = 5,
|
||||
/obj/item/stack/sheet/animalhide/carp = 5,
|
||||
)
|
||||
category = CAT_CLOTHING
|
||||
|
||||
/datum/crafting_recipe/shork_costume
|
||||
name = "shork costume"
|
||||
result = /obj/item/clothing/suit/hooded/shork_costume
|
||||
time = 2 SECONDS
|
||||
tool_behaviors = list(TOOL_WIRECUTTER)
|
||||
reqs = list(
|
||||
/obj/item/clothing/suit/hooded/shark_costume = 1,
|
||||
)
|
||||
category = CAT_CLOTHING
|
||||
|
||||
|
||||
/datum/crafting_recipe/sturdy_shako
|
||||
name = "Sturdy Shako"
|
||||
result = /obj/item/clothing/head/hats/hos/shako
|
||||
|
||||
@@ -360,6 +360,48 @@
|
||||
clothing_flags = THICKMATERIAL
|
||||
flags_inv = HIDEHAIR|HIDEEARS
|
||||
|
||||
/obj/item/clothing/suit/hooded/shark_costume // Blahaj
|
||||
name = "Shark costume"
|
||||
desc = "Finally, a costume to match your favorite plush."
|
||||
icon_state = "shark"
|
||||
icon = 'icons/obj/clothing/suits/costume.dmi'
|
||||
worn_icon = 'icons/mob/clothing/suits/costume.dmi'
|
||||
inhand_icon_state = "shark"
|
||||
body_parts_covered = CHEST|GROIN|ARMS
|
||||
clothing_flags = THICKMATERIAL
|
||||
hoodtype = /obj/item/clothing/head/hooded/shark_hood
|
||||
|
||||
/obj/item/clothing/head/hooded/shark_hood
|
||||
name = "shark hood"
|
||||
desc = "A hood attached to a shark costume."
|
||||
icon = 'icons/obj/clothing/head/costume.dmi'
|
||||
worn_icon = 'icons/mob/clothing/head/costume.dmi'
|
||||
icon_state = "shark"
|
||||
body_parts_covered = HEAD
|
||||
clothing_flags = THICKMATERIAL
|
||||
flags_inv = HIDEHAIR|HIDEEARS
|
||||
|
||||
/obj/item/clothing/suit/hooded/shork_costume // Oh God Why
|
||||
name = "shork costume"
|
||||
desc = "Why would you ever do this?"
|
||||
icon_state = "sharkcursed"
|
||||
icon = 'icons/obj/clothing/suits/costume.dmi'
|
||||
worn_icon = 'icons/mob/clothing/suits/costume.dmi'
|
||||
inhand_icon_state = "sharkcursed"
|
||||
body_parts_covered = CHEST|GROIN|ARMS
|
||||
clothing_flags = THICKMATERIAL
|
||||
hoodtype = /obj/item/clothing/head/hooded/shork_hood
|
||||
|
||||
/obj/item/clothing/head/hooded/shork_hood
|
||||
name = "shork hood"
|
||||
desc = "A hood attached to a shork costume."
|
||||
icon = 'icons/obj/clothing/head/costume.dmi'
|
||||
worn_icon = 'icons/mob/clothing/head/costume.dmi'
|
||||
icon_state = "sharkcursed"
|
||||
body_parts_covered = HEAD
|
||||
clothing_flags = THICKMATERIAL
|
||||
flags_inv = HIDEHAIR|HIDEEARS
|
||||
|
||||
/obj/item/clothing/suit/hooded/bloated_human //OH MY GOD WHAT HAVE YOU DONE!?!?!?
|
||||
name = "bloated human suit"
|
||||
desc = "A horribly bloated suit made from human skins."
|
||||
|
||||
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 47 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 47 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 30 KiB |