mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-20 14:45:05 +00:00
* Basic bots (medibots) * UpdatePaths, modular --------- Co-authored-by: Ben10Omintrix <138636438+Ben10Omintrix@users.noreply.github.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
73 lines
2.6 KiB
Plaintext
73 lines
2.6 KiB
Plaintext
/obj/structure/closet/secure_closet/ert_com
|
|
name = "emergency response team commander's locker"
|
|
desc = "A storage unit containing equipment for an Emergency Response Team Commander."
|
|
req_access = list(ACCESS_CENT_CAPTAIN)
|
|
icon_state = "cap"
|
|
|
|
/obj/structure/closet/secure_closet/ert_com/PopulateContents()
|
|
..()
|
|
new /obj/item/storage/medkit/regular(src)
|
|
new /obj/item/storage/box/handcuffs(src)
|
|
new /obj/item/assembly/flash/handheld(src)
|
|
if(prob(50))
|
|
new /obj/item/ammo_box/magazine/m50(src)
|
|
new /obj/item/ammo_box/magazine/m50(src)
|
|
new /obj/item/gun/ballistic/automatic/pistol/deagle(src)
|
|
else
|
|
new /obj/item/ammo_box/a357(src)
|
|
new /obj/item/ammo_box/a357(src)
|
|
new /obj/item/gun/ballistic/revolver/mateba(src)
|
|
|
|
/obj/structure/closet/secure_closet/ert_com/populate_contents_immediate()
|
|
. = ..()
|
|
|
|
// Traitor steal objective
|
|
new /obj/item/aicard(src)
|
|
|
|
/obj/structure/closet/secure_closet/ert_sec
|
|
name = "emergency response team security locker"
|
|
desc = "A storage unit containing equipment for an Emergency Response Team Security Officer."
|
|
req_access = list(ACCESS_CENT_SPECOPS)
|
|
icon_state = "hos"
|
|
|
|
/obj/structure/closet/secure_closet/ert_sec/PopulateContents()
|
|
..()
|
|
new /obj/item/storage/box/flashbangs(src)
|
|
new /obj/item/storage/box/teargas(src)
|
|
new /obj/item/storage/box/flashes(src)
|
|
new /obj/item/storage/box/handcuffs(src)
|
|
new /obj/item/shield/riot/tele(src)
|
|
|
|
/obj/structure/closet/secure_closet/ert_med
|
|
name = "emergency response team medical locker"
|
|
desc = "A storage unit containing equipment for an Emergency Response Team Medical Officer."
|
|
req_access = list(ACCESS_CENT_MEDICAL)
|
|
icon_state = "cmo"
|
|
|
|
/obj/structure/closet/secure_closet/ert_med/PopulateContents()
|
|
. = ..()
|
|
new /mob/living/basic/bot/medbot(src)
|
|
new /obj/item/storage/medkit/o2(src)
|
|
new /obj/item/storage/medkit/toxin(src)
|
|
new /obj/item/storage/medkit/fire(src)
|
|
new /obj/item/storage/medkit/brute(src)
|
|
new /obj/item/storage/medkit/regular(src)
|
|
new /obj/item/defibrillator/compact/combat/loaded/nanotrasen(src)
|
|
|
|
/obj/structure/closet/secure_closet/ert_engi
|
|
name = "emergency response team engineer locker"
|
|
desc = "A storage unit containing equipment for an Emergency Response Team Engineer."
|
|
req_access = list(ACCESS_CENT_STORAGE)
|
|
icon_state = "ce"
|
|
|
|
/obj/structure/closet/secure_closet/ert_engi/PopulateContents()
|
|
..()
|
|
new /obj/item/stack/sheet/plasteel(src, 50)
|
|
new /obj/item/stack/sheet/iron(src, 50)
|
|
new /obj/item/stack/sheet/glass(src, 50)
|
|
new /obj/item/stack/sheet/mineral/sandbags(src, 30)
|
|
new /obj/item/clothing/shoes/magboots(src)
|
|
new /obj/item/storage/box/smart_metal_foam(src)
|
|
for(var/i in 1 to 3)
|
|
new /obj/item/rcd_ammo/large(src)
|