Merge pull request #25 from Aurorastation/development

Code Catchup
This commit is contained in:
SoundScopes
2015-02-20 21:53:35 +00:00
7 changed files with 114 additions and 2 deletions
+48
View File
@@ -476,6 +476,12 @@ proc/populate_gear_list()
cost = 3
allowed_roles = list("Captain", "Head of Personnel", "Security Officer", "Head of Security", "Warden")
/datum/gear/waist
display_name = "waist holster"
path = /obj/item/clothing/tie/holster/waist
cost = 3
allowed_roles = list("Captain", "Head of Personnel", "Security Officer", "Head of Security", "Warden")
/datum/gear/normal_beret
display_name = "beret"
@@ -489,6 +495,43 @@ proc/populate_gear_list()
// slot = slot_head
allowed_roles = list("Security Officer","Head of Security","Warden")
/datum/gear/formal_uni
display_name = "formal officer's uniform"
path = /obj/item/clothing/under/rank/security/formal
cost = 1
allowed_roles = list("Security Officer")
/datum/gear/formal_cap
display_name = "officer's formal cap"
path = /obj/item/clothing/head/helmet/secfcap
cost = 1
allowed_roles = list("Security Officer","Head of Security","Warden")
/datum/gear/formal_uniw
display_name = "formal warden's uniform"
path = /obj/item/clothing/under/rank/warden/formal
cost = 1
allowed_roles = list("Warden")
/datum/gear/formal_jacketw
display_name = "formal warden's jacket"
path = /obj/item/clothing/suit/armor/vest/warden/jacket
cost = 2
allowed_roles = list("Warden")
/datum/gear/formal_unihos
display_name = "formal Head of Security's uniform"
path = /obj/item/clothing/under/rank/head_of_security/formal
cost = 1
allowed_roles = list("Head of Security")
/datum/gear/formal_jackethos
display_name = "formal Head of Security's jacket"
path = /obj/item/clothing/suit/armor/hos/formal
cost = 2
allowed_roles = list("Head of Security")
//Engineering
/datum/gear/eng_beret
display_name = "engineering beret"
@@ -549,3 +592,8 @@ proc/populate_gear_list()
cost = 2
// slot = slot_wear_suit
whitelisted = "Unathi"
/datum/gear/cigar_case
display_name = "cigar case"
path = /obj/item/weapon/storage/fancy/cigars
cost = 3
+24 -1
View File
@@ -995,4 +995,27 @@ obj/structure/stool/bed/chair/wheelchair/fluff/kit/handle_rotation()
if(3)
ink = 1
colour = "black"
user << "<span class='notice'>You cycle the pen to use the black ink cartridge.</span>"
user << "<span class='notice'>You cycle the pen to use the black ink cartridge.</span>"
/obj/structure/sign/shaw_degree //Xenonuerology Doctorate - Alexis Shaw - Tenenza
name = "\improper Xenonuerology degree"//Description trimmed down, summarized.
desc = "Certification for a doctorate in Xenonuerology, made out to Alexis Shaw by the St. Grahelm University of Beisel, authenticated by watermarking."
icon_state = "shaw_degree"
/obj/item/clothing/suit/storage/fluff/dalton_coat //Black Overcoat - Robert Dalton - Valkrae
name = "black overcoat"
desc = " A black overcoat. It seems worn, and well-made. The coat smells of tobacco and smoke."
icon = 'icons/obj/custom_items.dmi'
icon_state = "dalton_coat"
item_state = "dalton_coat"
/obj/item/clothing/suit/storage/rohitin_jacket //CSI Jacket - Ana Ro'hi'tin - SueTheCake
name = "CSI jacket"
desc = " A black jacket with the words 'CSI' printed in the back in bright, white letters."
icon_state = "rohitinjacket"
item_state = "rohitinjacket"
blood_overlay_type = "armor"
allowed = list(/obj/item/stack/medical, /obj/item/weapon/reagent_containers/dropper, /obj/item/weapon/reagent_containers/hypospray, /obj/item/weapon/reagent_containers/syringe, \
/obj/item/device/healthanalyzer, /obj/item/device/flashlight, /obj/item/device/radio, /obj/item/weapon/tank/emergency_oxygen)