mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
adds more drake plushies, and changes scidrake lights to match sci colors
This commit is contained in:
committed by
CHOMPStation2
parent
e966a01446
commit
d13fc550dc
@@ -99,16 +99,55 @@
|
||||
name = "janihound plushie"
|
||||
icon_state = "scrubpuppy"
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drakiesec
|
||||
name = "security drake plushie"
|
||||
/obj/item/toy/plushie/borgplushie/drake
|
||||
icon = 'icons/obj/drakietoy_vr.dmi'
|
||||
var/lights_glowing = FALSE
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/AltClick(mob/living/user)
|
||||
. = ..()
|
||||
var/turf/T = get_turf(src)
|
||||
if(!T.AdjacentQuick(user)) // So people aren't messing with these from across the room
|
||||
return FALSE
|
||||
lights_glowing = !lights_glowing
|
||||
to_chat(user, "<span class='notice'>You turn the [src]'s glow-fabric [lights_glowing ? "on" : "off"].</span>")
|
||||
update_icon()
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/update_icon()
|
||||
cut_overlays()
|
||||
if (lights_glowing)
|
||||
add_overlay(emissive_appearance(icon, "[icon_state]-lights"))
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/get_description_info()
|
||||
return "The lights on the plushie can be toggled [lights_glowing ? "off" : "on"] by alt-clicking on it."
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/sec
|
||||
name = "security drake plushie"
|
||||
icon_state = "secdrake"
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drakiemed
|
||||
/obj/item/toy/plushie/borgplushie/drake/med
|
||||
name = "medical drake plushie"
|
||||
icon = 'icons/obj/drakietoy_vr.dmi'
|
||||
icon_state = "meddrake"
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/sci
|
||||
name = "science drake plushie"
|
||||
icon_state = "scidrake"
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/jani
|
||||
name = "janitor drake plushie"
|
||||
icon_state = "janidrake"
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/eng
|
||||
name = "engineering drake plushie"
|
||||
icon_state = "engdrake"
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/mine
|
||||
name = "mining drake plushie"
|
||||
icon_state = "minedrake"
|
||||
|
||||
/obj/item/toy/plushie/borgplushie/drake/trauma
|
||||
name = "trauma drake plushie"
|
||||
icon_state = "traumadrake"
|
||||
|
||||
/obj/item/toy/plushie/foxbear
|
||||
name = "toy fox"
|
||||
desc = "Issa fox!"
|
||||
|
||||
Reference in New Issue
Block a user