mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
[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>
This commit is contained in:
co-authored by
Aki Ito
Thedragmeme
parent
09b00aa01e
commit
2e7908c6c8
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user