Custom items 06/11 (#1126)

Items being added:

Tagging Collar - R.U.R - coalf
Fancy Scarf - Simon Greene - icydew
Karson's Cap - Eric Karson - dronzthewolf
Framed Zatimono - Azkuyua Triaka - jackboot
This commit is contained in:
Alberyk
2016-11-07 20:19:27 -02:00
committed by skull132
parent cd26e68d8a
commit 3000944d68
4 changed files with 48 additions and 0 deletions
+48
View File
@@ -616,9 +616,57 @@ All custom items with worn sprites must follow the contained sprite system: http
item_state = "poslan_jacket"
contained_sprite = 1
/obj/item/sign/fluff/alexis_degree //Xenonuerology Doctorate - Alexis Shaw - Tenenza - DONE
name = "xenonuerology degree"
desc = "Certification for a doctorate in Xenonuerology, made out to Alexis Shaw by the St. Grahelm University of Biesel, authenticated by watermarking."
icon_state = "alexis_degree"
sign_state = "alexis_degree"
w_class = 2
/obj/item/clothing/mask/fluff/rur_collar //Tagging Collar - R.U.R - coalf - DONE
name = "tagging collar"
desc = "A steel tagging collar, a giant golden D is imprinted on the front."
icon = 'icons/obj/custom_items/rur_collar.dmi'
icon_state = "rur_collar"
item_state = "rur_collar"
contained_sprite = 1
flags = MASKCOVERSMOUTH
body_parts_covered = 0
canremove = 0
species_restricted = list("Machine")
var/emagged = 0
/obj/item/clothing/mask/fluff/rur_collar/attackby(obj/item/I, mob/user)
if(istype(I, /obj/item/weapon/card/emag) && !emagged)
user << "<span class='danger'>You short out \the [src]'s locking mechanism.</span>"
src.icon_state = "rur_collar_broken"
src.canremove = 1
src.emagged = 1
playsound(src.loc, 'sound/effects/sparks1.ogg', 100, 0)
return
return
/obj/item/clothing/mask/bluescarf/fluff/simon_scarf //Fancy Scarf - Simon Greene - icydew - DONE
name = "fancy scarf"
desc = "A very smooth, dark blue scarf with a golden trim. It feels really new and clean."
icon = 'icons/obj/custom_items/simon_scarf.dmi'
icon_state = "simon_scarf"
item_state = "simon_scarf"
contained_sprite = 1
/obj/item/clothing/head/soft/sec/corp/fluff/karson_cap //Karson's Cap - Eric Karson - dronzthewolf - DONE
name = "well-worn corporate security cap"
desc = "A well-worn corporate security cap. The name Karson is written on the underside of the brim, it is well-worn at the point where it has shaped to the owner's head."
/obj/item/sign/fluff/triaka_atimono //Framed Zatimono - Azkuyua Triaka - jackboot - DONE
name = "framed zatimono"
desc = "A framed Zatimono, a Unathi standard worn into battle similar to an old-Earth Sashimono. This one is slightly faded."
icon_state = "triaka_atimono"
sign_state = "triaka_atimono"
w_class = 2