mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-27 05:57:24 +01:00
Adds Secway Crate to Cargo orderables. (#24460)
* life imitates blart * Update code/game/objects/structures/crates_lockers/largecrate.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> * Update code/game/objects/structures/crates_lockers/largecrate.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --------- Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com>
This commit is contained in:
@@ -102,3 +102,12 @@
|
||||
if(istype(W, /obj/item/crowbar))
|
||||
new /mob/living/simple_animal/pet/cat(loc)
|
||||
return ..()
|
||||
|
||||
/obj/structure/largecrate/secway
|
||||
name = "secway crate"
|
||||
|
||||
/obj/structure/largecrate/secway/attackby(obj/item/W, mob/user, params)
|
||||
if(istype(W, /obj/item/crowbar))
|
||||
new /obj/vehicle/secway(loc)
|
||||
new /obj/item/key/security(loc)
|
||||
return ..()
|
||||
|
||||
@@ -349,3 +349,10 @@
|
||||
/obj/item/clothing/suit/armor/secjacket)
|
||||
cost = 500 // Convenience has a price and this pack is genuinely loaded
|
||||
containername = "officer starter crate"
|
||||
|
||||
/datum/supply_packs/security/secway
|
||||
name = "Secway Crate"
|
||||
cost = 800
|
||||
containertype = /obj/structure/largecrate/secway
|
||||
containername = "secway crate"
|
||||
access = ACCESS_HEADS
|
||||
|
||||
Reference in New Issue
Block a user