mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01:00
Ports TauCeti's briefcases! (#13328)
* wew * Update briefcases.dm * Update mutant_cure.dm * Update research2.dmm
This commit is contained in:
@@ -2087,7 +2087,7 @@
|
||||
dir = 4
|
||||
},
|
||||
/obj/structure/table/glass,
|
||||
/obj/item/storage/briefcase/hnz,
|
||||
/obj/item/storage/briefcase/virology/hnz,
|
||||
/turf/open/floor/iron/white,
|
||||
/area/awaymission/research/interior/cryo)
|
||||
"gz" = (
|
||||
|
||||
@@ -238,10 +238,10 @@
|
||||
fixedtype = /obj/item/inflatable/door
|
||||
|
||||
/obj/item/storage/inflatable
|
||||
icon = 'modular_skyrat/modules/inflatables/icons/inflatable.dmi'
|
||||
icon = 'modular_skyrat/modules/more_briefcases/icons/briefcases.dmi'
|
||||
name = "inflatable barrier box"
|
||||
desc = "Contains inflatable walls and doors."
|
||||
icon_state = "inf"
|
||||
icon_state = "briefcase_inflate"
|
||||
w_class = WEIGHT_CLASS_NORMAL
|
||||
|
||||
/obj/item/storage/inflatable/ComponentInitialize()
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
/obj/item/storage/briefcase
|
||||
icon = 'modular_skyrat/modules/more_briefcases/icons/briefcases.dmi'
|
||||
inhand_icon_state = "briefcase"
|
||||
|
||||
/obj/item/storage/briefcase/lawyer
|
||||
icon_state = "briefcase_black"
|
||||
inhand_icon_state = "sec-case"
|
||||
|
||||
/obj/item/storage/briefcase/central_command
|
||||
name = "nanotrasen briefcase"
|
||||
icon_state = "briefcase_cc"
|
||||
inhand_icon_state = "sec-case"
|
||||
|
||||
/obj/item/storage/briefcase/medical
|
||||
name = "medical briefcase"
|
||||
icon_state = "briefcase_med"
|
||||
inhand_icon_state = "lockbox"
|
||||
|
||||
/obj/item/storage/briefcase/virology
|
||||
name = "virology briefcase"
|
||||
icon_state = "briefcase_vir"
|
||||
inhand_icon_state = "lockbox"
|
||||
|
||||
/obj/item/storage/briefcase/engineering
|
||||
name = "engineering briefcase"
|
||||
icon_state = "briefcase_eng"
|
||||
|
||||
/obj/item/storage/secure/briefcase
|
||||
icon = 'modular_skyrat/modules/more_briefcases/icons/briefcases.dmi'
|
||||
inhand_icon_state = "sec-case"
|
||||
icon_state = "briefcase_secure_black"
|
||||
|
||||
/obj/item/storage/secure/briefcase/attack_self(mob/user)
|
||||
. = ..()
|
||||
update_appearance()
|
||||
|
||||
/obj/item/storage/secure/briefcase/update_overlays()
|
||||
. = ..()
|
||||
if(SEND_SIGNAL(src, COMSIG_IS_STORAGE_LOCKED))
|
||||
. += "briefcase_locked"
|
||||
else
|
||||
. += "briefcase_open"
|
||||
|
||||
/obj/item/storage/secure/briefcase/white
|
||||
name = "white secure briefcase"
|
||||
icon_state = "briefcase_secure_white"
|
||||
inhand_icon_state = "lockbox"
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,3 @@
|
||||
## Credits
|
||||
Gandalf2k15 - Porting
|
||||
TauCeti - Original sprites(https://github.com/TauCetiStation/TauCetiClassic/pull/8966)
|
||||
@@ -352,15 +352,13 @@
|
||||
list_reagents = list(/datum/reagent/hnz = 1)
|
||||
|
||||
|
||||
/obj/item/storage/briefcase/hnz
|
||||
name = "HNZ-1 biocontainer"
|
||||
/obj/item/storage/briefcase/virology/hnz
|
||||
name = "\improper HNZ-1 Biocontainer"
|
||||
desc = "An airtight biosealed box containing the highly reactive substance, HNZ1. Authorised personnel only."
|
||||
icon = 'modular_skyrat/modules/mutants/icons/extractor.dmi'
|
||||
icon_state = "tvirus_box"
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
max_integrity = 500
|
||||
|
||||
/obj/item/storage/briefcase/hnz/PopulateContents()
|
||||
/obj/item/storage/briefcase/virology/hnz/PopulateContents()
|
||||
new /obj/item/reagent_containers/glass/bottle/hnz/one(src)
|
||||
new /obj/item/reagent_containers/glass/bottle/hnz/one(src)
|
||||
new /obj/item/circuitboard/machine/rna_recombinator(src)
|
||||
|
||||
@@ -5494,6 +5494,7 @@
|
||||
#include "modular_skyrat\modules\modular_weapons\code\recipes.dm"
|
||||
#include "modular_skyrat\modules\modular_weapons\code\revolver.dm"
|
||||
#include "modular_skyrat\modules\modular_weapons\code\rifle.dm"
|
||||
#include "modular_skyrat\modules\more_briefcases\code\briefcases.dm"
|
||||
#include "modular_skyrat\modules\morefermentplants\code\ambrosia.dm"
|
||||
#include "modular_skyrat\modules\morefermentplants\code\banana.dm"
|
||||
#include "modular_skyrat\modules\morefermentplants\code\beans.dm"
|
||||
|
||||
Reference in New Issue
Block a user