mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 08:29:57 +01:00
Adds bugsnax (#12351)
This commit is contained in:
@@ -285,6 +285,7 @@
|
||||
/obj/item/reagent_containers/food/snacks/chocolatebar = 6,
|
||||
/obj/item/storage/box/fancy/cookiesnack = 6,
|
||||
/obj/item/storage/box/fancy/gum = 4,
|
||||
/obj/item/storage/box/fancy/vkrexitaffy = 5,
|
||||
/obj/item/clothing/mask/chewable/candy/lolli = 8,
|
||||
/obj/item/storage/box/fancy/admints = 4,
|
||||
/obj/item/reagent_containers/food/snacks/skrellsnacks = 3,
|
||||
@@ -320,6 +321,7 @@
|
||||
/obj/item/clothing/mask/chewable/candy/lolli = 2,
|
||||
/obj/item/storage/box/fancy/admints = 12,
|
||||
/obj/item/storage/box/fancy/cookiesnack = 20,
|
||||
/obj/item/storage/box/fancy/vkrexitaffy = 12,
|
||||
/obj/item/reagent_containers/food/snacks/skrellsnacks = 40,
|
||||
/obj/item/reagent_containers/food/snacks/meatsnack = 22,
|
||||
/obj/item/reagent_containers/food/snacks/maps = 23,
|
||||
|
||||
@@ -229,3 +229,7 @@
|
||||
/obj/item/trash/seaweed
|
||||
name = "empty moss pack"
|
||||
icon_state = "seaweed"
|
||||
|
||||
/obj/item/trash/vkrexitaffy
|
||||
name = "V'krexi Snax"
|
||||
icon_state = "vkrexitaffy"
|
||||
|
||||
@@ -713,7 +713,8 @@
|
||||
/obj/item/reagent_containers/food/snacks/tuna,
|
||||
/obj/item/storage/box/fancy/gum,
|
||||
/obj/item/storage/box/fancy/cookiesnack,
|
||||
/obj/item/storage/box/fancy/admints
|
||||
/obj/item/storage/box/fancy/admints,
|
||||
/obj/item/storage/box/fancy/vkrexitaffy
|
||||
)
|
||||
for (var/i = 0,i<7,i++)
|
||||
var/type = pick(snacks)
|
||||
|
||||
@@ -1479,3 +1479,15 @@
|
||||
to_chat(H, SPAN_WARNING(pick("You feel a clot shoot through your heart!", "Your veins feel like they're being shredded!")))
|
||||
var/obj/item/organ/internal/heart/heart = H.internal_organs_by_name[BP_HEART]
|
||||
heart.take_internal_damage(1, TRUE)
|
||||
|
||||
/decl/reagent/mental/vkrexi
|
||||
name = "V'krexi taffy"
|
||||
description = "V'krexi meat, processed to become a chewy, sticky candy."
|
||||
reagent_state = SOLID
|
||||
scannable = TRUE
|
||||
color = "#d6ec57"
|
||||
metabolism = 0.4 * REM
|
||||
taste_description = "bittersweetness, insect meat and regret"
|
||||
metabolism_min = 0.5
|
||||
breathe_mul = 0
|
||||
goodmessage = list("You feel strange, in a good way.")
|
||||
@@ -5191,3 +5191,32 @@
|
||||
filling_color = "#dcd9cd"
|
||||
reagents_to_add = list(/decl/reagent/kois = 20, /decl/reagent/toxin/phoron = 20)
|
||||
bitesize = 2
|
||||
|
||||
/obj/item/storage/box/fancy/vkrexitaffy
|
||||
name = "V'krexi Snax"
|
||||
desc = "A packet of V'krexi taffy. Made from free-range V'krexi!"
|
||||
desc_fluff = "V'krexi, while edible, hold no nutritional value, either for humans or Vaurca. The V'krexi meat was mostly neglected until human food-processing techniques were introduced to the Zo'ra Hive."
|
||||
icon = 'icons/obj/food.dmi'
|
||||
icon_state = "vkrexitaffy"
|
||||
icon_type = "vkrexi taffy"
|
||||
storage_type = "packaging"
|
||||
starts_with = list(/obj/item/reagent_containers/food/snacks/vkrexitaffy = 6)
|
||||
can_hold = list(/obj/item/reagent_containers/food/snacks/vkrexitaffy)
|
||||
max_storage_space = 6
|
||||
|
||||
use_sound = 'sound/items/storage/wrapper.ogg'
|
||||
drop_sound = 'sound/items/drop/wrapper.ogg'
|
||||
pickup_sound = 'sound/items/pickup/wrapper.ogg'
|
||||
|
||||
trash = /obj/item/trash/vkrexitaffy
|
||||
closable = FALSE
|
||||
icon_overlays = FALSE
|
||||
|
||||
/obj/item/reagent_containers/food/snacks/vkrexitaffy
|
||||
name = "V'krexi taffy"
|
||||
desc = "A delicious V'krexi chewy candy."
|
||||
icon_state = "vkrexichewy"
|
||||
slot_flags = SLOT_EARS
|
||||
filling_color = "#dcd9cd"
|
||||
reagents_to_add = list(/decl/reagent/mental/vkrexi = 0.5)
|
||||
bitesize = 1
|
||||
@@ -0,0 +1,6 @@
|
||||
author: Desven & BunkyB
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- rscadd: "Adds V'krexi Snax, you can find them in the Getmore vendor."
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 178 KiB After Width: | Height: | Size: 179 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
Reference in New Issue
Block a user