mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-19 03:50:32 +01:00
Belch emote
A belchier emote for hornier burpers
This commit is contained in:
@@ -60,3 +60,34 @@
|
||||
/datum/emote/living/burunyu/run_emote(mob/living/user, params)
|
||||
playsound(user, 'GainStation13/sound/voice/funnycat.ogg', 50, 1, -1)
|
||||
. = ..()
|
||||
|
||||
|
||||
/datum/emote/living/belch
|
||||
key = "belch"
|
||||
key_third_person = "belches loudly"
|
||||
message = " belches"
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
|
||||
|
||||
//god hates me for this -Metha
|
||||
|
||||
/datum/emote/living/belch/run_emote(mob/living/user, params)
|
||||
if(ishuman(user))
|
||||
|
||||
var/fartSoundChoice = rand(5)
|
||||
|
||||
switch(fartSoundChoice)
|
||||
if (0) playsound(user, 'GainStation13/sound/voice/belch3.ogg', 50, 1, -1)
|
||||
|
||||
if (1) playsound(user, 'GainStation13/sound/voice/belch4.ogg', 50, 1, -1)
|
||||
|
||||
if (2) playsound(user, 'GainStation13/sound/voice/belch2.ogg', 50, 1, -1)
|
||||
|
||||
if (3) playsound(user, 'GainStation13/sound/voice/belch1.ogg', 50, 1, -1)
|
||||
|
||||
if (4) playsound(user, 'GainStation13/sound/voice/belch5.ogg', 50, 1, -1)
|
||||
|
||||
if (5) playsound(user, 'GainStation13/sound/voice/belch6.ogg', 50, 1, -1)
|
||||
|
||||
|
||||
. = ..()
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -277,7 +277,7 @@
|
||||
|
||||
/obj/item/storage/fancy/rollingpapers
|
||||
name = "rolling paper pack"
|
||||
desc = "A pack of Kinaris brand rolling papers."
|
||||
desc = "A pack of GATO brand rolling papers."
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
icon = 'icons/obj/cigarettes.dmi'
|
||||
icon_state = "cig_paper_pack"
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
icon_state = "screwdriver_nt"
|
||||
|
||||
/obj/item/paper/guides/antag/nuke_instructions
|
||||
info = "How to break into a Kinaris self-destruct terminal and remove its plutonium core:<br>\
|
||||
info = "How to break into a GATO self-destruct terminal and remove its plutonium core:<br>\
|
||||
<ul>\
|
||||
<li>Use a screwdriver with a very thin tip (provided) to unscrew the terminal's front panel</li>\
|
||||
<li>Dislodge and remove the front panel with a crowbar</li>\
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#define WELDER_FUEL_BURN_INTERVAL 13
|
||||
/obj/item/weldingtool
|
||||
name = "welding tool"
|
||||
desc = "A standard edition welder provided by Kinaris."
|
||||
desc = "A standard edition welder provided by GATO."
|
||||
icon = 'icons/obj/tools.dmi'
|
||||
icon_state = "welder"
|
||||
item_state = "welder"
|
||||
|
||||
@@ -22,6 +22,12 @@
|
||||
message = "burps."
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
|
||||
/datum/emote/living/belch
|
||||
key = "belch"
|
||||
key_third_person = "belches loudly"
|
||||
message = "belches."
|
||||
emote_type = EMOTE_AUDIBLE
|
||||
|
||||
/datum/emote/living/choke
|
||||
key = "choke"
|
||||
key_third_person = "chokes"
|
||||
|
||||
Reference in New Issue
Block a user