diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 21117262f64..3b26a0c5c1e 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -550,7 +550,9 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that "emergency response team", "nanotrasen representative", "nanotrasen officer", - "nanotrasen captain" + "nanotrasen captain", + "hawke - combat", + "hawke - formal" ) var/dostrip = input("Do you want to strip [M] before equipping them? (0=no, 1=yes)", "STRIPTEASE") as null|anything in list(0,1) if(isnull(dostrip)) @@ -938,9 +940,60 @@ But you can call procs that are of type /mob/living/carbon/human/proc/ for that W.registered_name = M.real_name M.equip_to_slot_or_del(W, slot_wear_id) + if("hawke - combat") + M.equip_to_slot_or_del(new /obj/item/clothing/under/syndicate/combat(M), slot_w_uniform) + M.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/swat/officer(M), slot_wear_suit) + M.equip_to_slot_or_del(new /obj/item/clothing/shoes/combat(M), slot_shoes) + M.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat(M), slot_gloves) + M.equip_to_slot_or_del(new /obj/item/device/radio/headset/ert(src), slot_l_ear) + M.equip_to_slot_or_del(new /obj/item/clothing/glasses/thermal/cyber(M), slot_glasses) + M.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar/cohiba(M), slot_wear_mask) + M.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/space/deathsquad/beret(M), slot_head) + M.equip_to_slot_or_del(new /obj/item/weapon/gun/energy/pulse_rifle/M1911(M), slot_belt) + M.equip_to_slot_or_del(new /obj/item/weapon/storage/box/matches(M), slot_r_store) + M.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/satchel(M), slot_back) + M.equip_to_slot_or_del(new /obj/item/weapon/storage/box/flashbangs(src), slot_in_backpack) + M.equip_to_slot_or_del(new /obj/item/weapon/storage/firstaid/regular(src), slot_in_backpack) + M.equip_to_slot_or_del(new /obj/item/weapon/melee/telebaton(M), slot_in_backpack) + M.equip_to_slot_or_del(new /obj/item/clothing/mask/gas(M), slot_in_backpack) + + + if("hawke - formal") + M.equip_if_possible(new /obj/item/clothing/under/rank/centcom/captain(M), slot_w_uniform) + M.equip_to_slot_or_del(new /obj/item/clothing/glasses/thermal/cyber(M), slot_glasses) + M.equip_to_slot_or_del(new /obj/item/device/radio/headset/ert(src), slot_l_ear) + M.equip_if_possible(new /obj/item/clothing/gloves/white(M), slot_gloves) + M.equip_to_slot_or_del(new /obj/item/clothing/shoes/centcom(M), slot_shoes) + M.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/space/deathsquad/beret(M), slot_head) + M.equip_to_slot_or_del(new /obj/item/weapon/gun/energy/pulse_rifle/M1911(M), slot_belt) + M.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/satchel(M), slot_back) + M.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar/cohiba(M), slot_in_backpack) + M.equip_to_slot_or_del(new /obj/item/weapon/storage/box/matches(M), slot_in_backpack) + + var/obj/item/device/pda/heads/pda = new(M) + pda.owner = M.real_name + pda.ownjob = "Special Operations Officer" + pda.icon_state = "pda-syndi" + pda.name = "PDA-[M.real_name] ([pda.ownjob])" + pda.desc = "A portable microcomputer by Thinktronic Systems, LTD. This is model is a special edition designed for military field work." + pda.default_cartridge = /obj/item/weapon/cartridge/captain + + M.equip_if_possible(pda, slot_wear_pda) + + M.equip_if_possible(new /obj/item/weapon/melee/telebaton(M), slot_r_store) + + var/obj/item/weapon/card/id/W = new(M) + W.name = "[M.real_name]'s ID Card" + W.icon_state = "centcom" + W.access = get_all_accesses() + W.access += get_all_centcom_access() + W.assignment = "Special Operations Officer" + W.registered_name = M.real_name + M.equip_to_slot_or_del(W, slot_wear_id) if("blue wizard") + M.equip_to_slot_or_del(new /obj/item/clothing/under/lightpurple(M), slot_w_uniform) M.equip_to_slot_or_del(new /obj/item/clothing/suit/wizrobe(M), slot_wear_suit) M.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(M), slot_shoes) diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index ba8e4d45a55..a3e75bbd702 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -30,6 +30,13 @@ "Vox" = 'icons/mob/species/vox/eyes.dmi' ) +/obj/item/clothing/glasses/meson/cyber + name = "Eye Replacement Implant" + desc = "An implanted replacement for a left eye with meson vision capabilities." + icon_state = "cybereye-green" + item_state = "eyepatch" + canremove = 0 + /obj/item/clothing/glasses/science name = "Science Goggles" desc = "nothing" @@ -77,6 +84,13 @@ "Vox" = 'icons/mob/species/vox/eyes.dmi' ) +/obj/item/clothing/glasses/material/cyber + name = "Eye Replacement Implant" + desc = "An implanted replacement for a left eye with material vision capabilities." + icon_state = "cybereye-blue" + item_state = "eyepatch" + canremove = 0 + /obj/item/clothing/glasses/regular name = "Prescription Glasses" desc = "Made by Nerd. Co." @@ -273,3 +287,10 @@ sprite_sheets = list( "Vox" = 'icons/mob/species/vox/eyes.dmi' ) + +/obj/item/clothing/glasses/thermal/cyber + name = "Eye Replacement Implant" + desc = "An implanted replacement for a left eye with thermal vision capabilities." + icon_state = "cybereye-red" + item_state = "eyepatch" + canremove = 0 diff --git a/icons/mob/eyes.dmi b/icons/mob/eyes.dmi index dfa9d69fa8a..be63a82cb18 100644 Binary files a/icons/mob/eyes.dmi and b/icons/mob/eyes.dmi differ diff --git a/icons/obj/clothing/glasses.dmi b/icons/obj/clothing/glasses.dmi index 4c32803e21f..6436f2abfa3 100644 Binary files a/icons/obj/clothing/glasses.dmi and b/icons/obj/clothing/glasses.dmi differ