Skip to content

Commit

Permalink
fixes crates
Browse files Browse the repository at this point in the history
  • Loading branch information
ChromeFoxxity committed Aug 28, 2024
1 parent 1868d76 commit d6b5f65
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "critter crate"
desc = "A crate designed for safe transport of animals. It has an oxygen tank for safe transport in space."
icon_state = "crittercrate"
base_icon_state = "crittercrate"
horizontal = FALSE
allow_objects = FALSE
breakout_time = 600
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "large crate"
desc = "A hefty wooden crate. You'll need a crowbar to get it open."
icon_state = "largecrate"
base_icon_state = "largecrate"
density = TRUE
storage_capacity = 100 //its mapper only, cant be closed again, its logical
material_drop = /obj/item/stack/sheet/mineral/wood
Expand Down
4 changes: 1 addition & 3 deletions code/game/objects/structures/crates_lockers/crates/secure.dm
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@
to_chat(user, span_warning("[src] is broken!"))


/obj/structure/closet/crate/secure/exo
/obj/structure/closet/crate/secure/cargo/mining/exo
desc = "A lock-enabled crate used to carry EXOCON merchandise destined for export to potential buyers."
name = "EXOCON storage crate"
icon = 'icons/obj/crates.dmi'
icon_state = "exocrate"
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
material_drop = /obj/item/stack/sheet/mineral/wood
material_drop_amount = 6
icon_state = "wooden"
base_icon_state = "wooden"
open_sound = 'sound/machines/wooden_closet_open.ogg'
close_sound = 'sound/machines/wooden_closet_close.ogg'
open_sound_volume = 25
Expand Down
4 changes: 2 additions & 2 deletions code/modules/cargo/packs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1732,15 +1732,15 @@
access = ACCESS_QM
contains = list(/obj/item/storage/backpack/duffelbag/mining_conscript)
crate_name = "EXOCON Frontier starter kit"
crate_type = /obj/structure/closet/crate/secure/exo
crate_type = /obj/structure/closet/crate/secure/cargo/mining/exo

/datum/supply_pack/service/hvyminer
name = "Heavy Mining Kit"
desc = "A set of supplementary premium equipment for particularly challenging frontier expeditions. Comes equipped with an enhanced mining suit, crusher, launch boots, and two emerency stimulant injectors."
cost = 7500
access = ACCESS_QM
crate_name = "EXOCON Heavy Operations Kit"
crate_type = /obj/structure/closet/crate/secure/exo
crate_type = /obj/structure/closet/crate/secure/cargo/mining/exo
contains = list(/obj/item/clothing/suit/space/hardsuit/mining/heavy,
/obj/item/clothing/shoes/bhop,
/obj/item/reagent_containers/hypospray/medipen/stimpack/crisis,
Expand Down
1 change: 1 addition & 0 deletions code/modules/mining/lavaland/necropolis_chests.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
name = "necropolis chest"
desc = "It's watching you closely."
icon_state = "necrocrate"
base_icon_state = "necrocrate"
resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF

/obj/structure/closet/crate/necropolis/tendril
Expand Down
1 change: 1 addition & 0 deletions code/modules/mining/mine_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,4 @@
desc = "A mining car. This one doesn't work on rails, but has to be dragged."
name = "Mining car (not for rails)"
icon_state = "miningcar"
base_icon_state = "miningcar"
2 changes: 2 additions & 0 deletions code/modules/ruins/lavalandruin_code/elephantgraveyard.dm
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
desc = "An marked patch of soil, showing signs of a burial long ago. You wouldn't disturb a grave... right?"
icon = 'icons/obj/crates_new.dmi'
icon_state = "grave"
base_icon_state = "grave"
dense_when_open = TRUE
material_drop = /obj/item/stack/ore/glass/basalt
material_drop_amount = 5
Expand Down Expand Up @@ -203,6 +204,7 @@
desc = "Even in a place filled to the brim with graves, this one shows a level of preperation and planning that fills you with dread."
icon = 'icons/obj/crates_new.dmi'
icon_state = "grave_lead"
base_icon_state = "grave_lead"
lead_tomb = TRUE
first_open = TRUE

Expand Down

0 comments on commit d6b5f65

Please sign in to comment.