mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 05:57:24 +01:00
Merge remote-tracking branch 'upstream/master' into blood-changes
This commit is contained in:
@@ -226,6 +226,8 @@
|
||||
health = 3
|
||||
var/organhonked = 0
|
||||
var/suffering_delay = 900
|
||||
var/datum/component/waddle
|
||||
var/datum/component/squeak
|
||||
|
||||
/obj/item/organ/internal/honktumor/insert(mob/living/carbon/M, special = 0)
|
||||
..()
|
||||
@@ -236,6 +238,8 @@
|
||||
genemutcheck(M,CLUMSYBLOCK,null,MUTCHK_FORCED)
|
||||
genemutcheck(M,COMICBLOCK,null,MUTCHK_FORCED)
|
||||
organhonked = world.time
|
||||
waddle = M.AddComponent(/datum/component/waddling)
|
||||
squeak = M.AddComponent(/datum/component/squeak, list('sound/items/bikehorn.ogg' = 1), 50)
|
||||
|
||||
/obj/item/organ/internal/honktumor/remove(mob/living/carbon/M, special = 0)
|
||||
. = ..()
|
||||
@@ -246,6 +250,8 @@
|
||||
M.dna.SetSEState(COMICBLOCK,0)
|
||||
genemutcheck(M,CLUMSYBLOCK,null,MUTCHK_FORCED)
|
||||
genemutcheck(M,COMICBLOCK,null,MUTCHK_FORCED)
|
||||
QDEL_NULL(waddle)
|
||||
QDEL_NULL(squeak)
|
||||
qdel(src)
|
||||
|
||||
/obj/item/organ/internal/honktumor/on_life()
|
||||
@@ -282,6 +288,28 @@
|
||||
owner.nutrition = 9000
|
||||
owner.overeatduration = 9000
|
||||
|
||||
|
||||
/obj/item/organ/internal/honkbladder
|
||||
name = "honk bladder"
|
||||
desc = "a air filled sac that produces honking noises."
|
||||
icon_state = "honktumor"//Not making a new icon
|
||||
origin_tech = "biotech=1"
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
parent_organ = "groin"
|
||||
slot = "honk_bladder"
|
||||
health = 3
|
||||
var/datum/component/squeak
|
||||
|
||||
/obj/item/organ/internal/honkbladder/insert(mob/living/carbon/M, special = 0)
|
||||
|
||||
squeak = M.AddComponent(/datum/component/squeak, list('sound/effects/clownstep1.ogg'=1,'sound/effects/clownstep2.ogg'=1), 50)
|
||||
|
||||
/obj/item/organ/internal/honkbladder/remove(mob/living/carbon/M, special = 0)
|
||||
. = ..()
|
||||
|
||||
QDEL_NULL(squeak)
|
||||
qdel(src)
|
||||
|
||||
/obj/item/organ/internal/beard
|
||||
name = "beard organ"
|
||||
desc = "Let they who is worthy wear the beard of Thorbjorndottir."
|
||||
|
||||
@@ -125,6 +125,9 @@ var/static/regex/multispin_words = regex("like a record baby")
|
||||
return
|
||||
owner.say(".x[command]")
|
||||
|
||||
/obj/item/organ/internal/vocal_cords/colossus/prepare_eat()
|
||||
return
|
||||
|
||||
/obj/item/organ/internal/vocal_cords/colossus/can_speak_with()
|
||||
if(world.time < next_command)
|
||||
to_chat(owner, "<span class='notice'>You must wait [(next_command - world.time)/10] seconds before Speaking again.</span>")
|
||||
|
||||
Reference in New Issue
Block a user