diff --git a/code/game/machinery/vending_types.dm b/code/game/machinery/vending_types.dm index 7f03f2d9c4a..6fc0f9237d1 100644 --- a/code/game/machinery/vending_types.dm +++ b/code/game/machinery/vending_types.dm @@ -539,6 +539,7 @@ /obj/item/storage/chewables/tobacco/fine = 5, /obj/item/storage/chewables/tobacco/federation = 2, /obj/item/storage/chewables/tobacco/dyn = 2, + /obj/item/storage/chewables/tobacco/koko = 2, /obj/item/storage/chewables/oracle = 4, /obj/item/storage/box/fancy/chewables/tobacco/nico = 3, /obj/item/storage/cigfilters = 6, @@ -588,6 +589,7 @@ /obj/item/storage/chewables/tobacco/dyn = 85, /obj/item/storage/box/fancy/chewables/tobacco/nico = 91, /obj/item/storage/chewables/oracle = 76, + /obj/item/storage/chewables/tobacco/koko = 86, /obj/item/storage/box/fancy/matches = 12, /obj/item/flame/lighter/random = 12, /obj/item/storage/cigfilters = 28, diff --git a/code/game/objects/items/weapons/chewables.dm b/code/game/objects/items/weapons/chewables.dm index c743116eef3..859c4c23ea0 100644 --- a/code/game/objects/items/weapons/chewables.dm +++ b/code/game/objects/items/weapons/chewables.dm @@ -184,6 +184,19 @@ chewtime = 300 reagents_to_add = list(/singleton/reagent/sugar = 2) +/obj/item/clothing/mask/chewable/chewingkoko + name = "wad" + desc = "A sweet chewy wad of koko reeds, treated with a persevative syrup." + throw_speed = 0.5 + icon_state = "chew" + type_butt = /obj/item/trash/spitwad + w_class = ITEMSIZE_TINY + slot_flags = SLOT_EARS | SLOT_MASK + chem_volume = 50 + chewtime = 300 + brand = "koko" + reagents_to_add = list(/singleton/reagent/mental/kokoreed = 7) + /obj/item/trash/spitgum name = "old gum" desc = "A disgusting chewed up wad of gum." diff --git a/code/modules/client/preference_setup/loadout/items/smoking.dm b/code/modules/client/preference_setup/loadout/items/smoking.dm index c656e5f2f91..c93a9c207fc 100644 --- a/code/modules/client/preference_setup/loadout/items/smoking.dm +++ b/code/modules/client/preference_setup/loadout/items/smoking.dm @@ -77,6 +77,7 @@ chews["Leviathan Chew chewing tobacco"] = /obj/item/storage/chewables/tobacco/federation chews["Weibi's Breeze chewing tobacco"] = /obj/item/storage/chewables/tobacco/dyn chews["box of Nico-Tine gum"] = /obj/item/storage/box/fancy/chewables/tobacco/nico + chews["Ha'zana chewing koko"] = /obj/item/storage/chewables/tobacco/koko gear_tweaks += new /datum/gear_tweak/path(chews) /datum/gear/smoking/leaves diff --git a/code/modules/reagents/reagent_containers/food/snacks/cultural/unathi.dm b/code/modules/reagents/reagent_containers/food/snacks/cultural/unathi.dm index a350def8522..da5554b80fc 100644 --- a/code/modules/reagents/reagent_containers/food/snacks/cultural/unathi.dm +++ b/code/modules/reagents/reagent_containers/food/snacks/cultural/unathi.dm @@ -231,3 +231,10 @@ drop_sound = 'sound/items/drop/glass.ogg' pickup_sound = 'sound/items/pickup/glass.ogg' +/obj/item/storage/chewables/tobacco/koko + name = "Ha'zana chewing koko" + desc = "A tin of preserved and prepared koko reeds." + desc_extended = "Cultivated exclusively on the Compact ruled world of Ha'zana. A good pick-me-up for Unathi, but has no effect on other species." + icon_state = "chew_koko" + item_state = "chew_koko" + starts_with = list(/obj/item/clothing/mask/chewable/chewingkoko = 6) diff --git a/html/changelogs/crosarius-chewingkoko.yml b/html/changelogs/crosarius-chewingkoko.yml new file mode 100644 index 00000000000..137aec6ca47 --- /dev/null +++ b/html/changelogs/crosarius-chewingkoko.yml @@ -0,0 +1,6 @@ +author: Crosarius + +delete-after: True + +changes: + - rscadd: "Added chewing koko. An chewable form of the Unathi narcotic 'Koko', available in vending machines and the loadout." diff --git a/icons/obj/cigs_lighters.dmi b/icons/obj/cigs_lighters.dmi index d163a065723..b3a2c781245 100644 Binary files a/icons/obj/cigs_lighters.dmi and b/icons/obj/cigs_lighters.dmi differ