Edits to a Few things

-Pill Bottles able to be renamed like Paper
-Changed body scanner consoles, provided by Dea. They match the colour
of the actual scanner now.
This commit is contained in:
Meowykins
2014-07-28 06:36:09 -05:00
parent f6fc7ee4a2
commit 9c6feb0ed2
2 changed files with 15 additions and 0 deletions
@@ -125,6 +125,21 @@
storage_slots = 14
use_sound = null
/obj/item/weapon/storage/pill_bottle/verb/rename()
set name = "Rename Label"
set category = "Object"
set src in usr
if((CLUMSY in usr.mutations) && prob(50))
usr << "<span class='warning'>You drop the bottle, slipping on it and giving you a bruise ankle as you stumble.</span>"
return
var/n_name = copytext(sanitize(input(usr, "What would you like to label the Pill Bottle?", "Bottle Label", null) as text), 1, MAX_NAME_LEN)
if((loc == usr && usr.stat == 0))
name = "[(n_name ? text("[n_name]") : "Pill Bottle")]"
add_fingerprint(usr)
return
/obj/item/weapon/storage/pill_bottle/kelotane
name = "bottle of kelotane pills"
desc = "Contains pills used to treat burns."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 94 KiB