Meowstuff

Testing.
This commit is contained in:
Meowykins
2014-10-03 15:03:49 -05:00
parent 0f18d7c2b0
commit 08801bf789
5 changed files with 51 additions and 1 deletions
+5
View File
@@ -25,6 +25,11 @@ proc/populate_gear_list()
path = /obj/item/weapon/dice/d20
cost = 1
/datum/gear/watch
display_name = "watch"
path = /obj/item/clothing/gloves/watch
cost = 1
/datum/gear/wallet
display_name = "wallet"
path = /obj/item/weapon/storage/wallet
@@ -60,3 +60,27 @@
item_state = "ggloves"
permeability_coefficient = 0.9
siemens_coefficient = 0.9
/obj/item/clothing/gloves/watch
desc = "A small wristwatch, capable of telling time."
name = "watch"
icon_state = "watch"
item_state = "watchgloves"
w_class = 1
var/time = 1
verb/checktime()
set category = "Object"
set name = "Check Time"
set src in usr
if(time == 1)
usr << "You check your watch, spotting a digital collection of numbers reading '[worldtime2text()]'"
verb/pointatwatch()
set category = "Object"
set name = "Point at watch"
set src in usr
if(time == 1)
usr.visible_message ("<span class='notice'>[usr] taps their foot on the floor, arrogantly pointing at the [src] on their wrist with a look of derision in their eyes.</span>", "<span class='notice'>You point down at the [src], an arrogant look about your eyes.</span>")
+22 -1
View File
@@ -839,4 +839,25 @@
spamcheck = 1
spawn(20)
spamcheck = 0
return
return
/obj/item/clothing/tie/fluff/hamil_badge
name = "Internal Investigations Badge"
desc = "An Internal Investigation badge. Used by a special branch of the Elyran police force."
icon = 'icons/obj/custom_items.dmi'
item_state = "hamil_badge"
/obj/item/clothing/tie/fluff/hamil_badge/attack_self(mob/user as mob)
if(isliving(user))
user.visible_message("\red [user] flashes their [src].\nIt reads: Muhammad Hamil, Internal Investigations, Persepolis..","\red You display the [src].\nIt reads: Muhammad Hamil, Internal Investigations, Persepolis.")
/obj/item/clothing/tie/fluff/hamil_badge/attack(mob/living/carbon/human/M, mob/living/user)
if(isliving(user))
user.visible_message("\red [user] invades [M]'s personal space, thrusting [src] into their face insistently.","\red You invade [M]'s personal space, thrusting [src] into their face insistently. You are the law.")
/obj/item/clothing/mask/gas/fluff/stefan_mask
desc = "This odd looking gas mask is quite clearly not of NanoTrasen origin as it sports a black metal polish, as well as a reflective face plate that mirrors the view of the mask itself. This particular mask appears to breathe with the user, hissing when they exhale, and whining softly as they inhale."
name = "Modified Gas Mask"
icon = 'icons/obj/custom_items.dmi'
icon_state = "stefan_mask"
item_state = "stefan_mask"