mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 12:41:09 +01:00
[MIRROR] Empty graves can now be spawned (#4755)
* Empty graves can now be spawned (#58200) * i walked along the no mans road POV: you got fucked on a previous branch from something stupid * Update code/modules/ruins/lavalandruin_code/elephantgraveyard.dm Co-authored-by: Fikou <piotrbryla@ onet.pl> * Update code/modules/ruins/lavalandruin_code/elephantgraveyard.dm Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com> Co-authored-by: Fikou <piotrbryla@ onet.pl> Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com> * Empty graves can now be spawned Co-authored-by: ishitbyabullet <deathzombine@outlook.com> Co-authored-by: Fikou <piotrbryla@ onet.pl> Co-authored-by: Mothblocks <35135081+Mothblocks@ users.noreply.github.com>
This commit is contained in:
co-authored by
Fikou
Mothblocks
ishitbyabullet
parent
a67dee5ac7
commit
da2215fb0d
@@ -10,7 +10,7 @@
|
||||
/area/ruin/unpowered/elephant_graveyard)
|
||||
"ad" = (
|
||||
/obj/effect/decal/cleanable/cobweb,
|
||||
/obj/structure/closet/crate/grave/lead_researcher,
|
||||
/obj/structure/closet/crate/grave/filled/lead_researcher,
|
||||
/obj/effect/decal/cleanable/blood/gibs/old,
|
||||
/obj/effect/mob_spawn/human/skeleton,
|
||||
/turf/open/floor/plating/asteroid/basalt/wasteland,
|
||||
@@ -438,7 +438,7 @@
|
||||
/area/ruin/unpowered/elephant_graveyard)
|
||||
"bM" = (
|
||||
/obj/item/storage/fancy/cigarettes/cigpack_mindbreaker,
|
||||
/obj/structure/closet/crate/grave,
|
||||
/obj/structure/closet/crate/grave/filled,
|
||||
/turf/open/floor/plating/asteroid/basalt/wasteland,
|
||||
/area/ruin/unpowered/elephant_graveyard)
|
||||
"bN" = (
|
||||
@@ -568,7 +568,7 @@
|
||||
/turf/open/floor/plating/asteroid/basalt/wasteland,
|
||||
/area/ruin/unpowered/elephant_graveyard)
|
||||
"cl" = (
|
||||
/obj/structure/closet/crate/grave,
|
||||
/obj/structure/closet/crate/grave/filled,
|
||||
/obj/effect/mob_spawn/human/skeleton,
|
||||
/turf/open/floor/plating/asteroid/basalt/wasteland,
|
||||
/area/ruin/unpowered/elephant_graveyard)
|
||||
@@ -628,7 +628,7 @@
|
||||
/turf/open/floor/mineral/titanium/white,
|
||||
/area/ruin/powered/graveyard_shuttle)
|
||||
"cw" = (
|
||||
/obj/structure/closet/crate/grave,
|
||||
/obj/structure/closet/crate/grave/filled,
|
||||
/obj/effect/decal/cleanable/dirt/dust,
|
||||
/obj/effect/mob_spawn/human/skeleton,
|
||||
/turf/open/floor/plating/asteroid/basalt/wasteland,
|
||||
|
||||
@@ -110,6 +110,7 @@
|
||||
new /obj/effect/decal/cleanable/oil(loc)
|
||||
|
||||
//***Grave mounds.
|
||||
/// has no items inside unless you use the filled subtype
|
||||
/obj/structure/closet/crate/grave
|
||||
name = "burial mound"
|
||||
desc = "A marked patch of soil, showing signs of a burial long ago. You wouldn't disturb a grave... right?"
|
||||
@@ -128,7 +129,7 @@
|
||||
var/lead_tomb = FALSE
|
||||
var/first_open = FALSE
|
||||
|
||||
/obj/structure/closet/crate/grave/PopulateContents() //GRAVEROBBING IS NOW A FEATURE
|
||||
/obj/structure/closet/crate/grave/filled/PopulateContents() //GRAVEROBBING IS NOW A FEATURE
|
||||
..()
|
||||
new /obj/effect/decal/remains/human/grave(src)
|
||||
switch(rand(1,8))
|
||||
@@ -201,7 +202,7 @@
|
||||
dump_contents()
|
||||
return
|
||||
|
||||
/obj/structure/closet/crate/grave/lead_researcher
|
||||
/obj/structure/closet/crate/grave/filled/lead_researcher
|
||||
name = "ominous burial mound"
|
||||
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.dmi'
|
||||
@@ -209,7 +210,7 @@
|
||||
lead_tomb = TRUE
|
||||
first_open = TRUE
|
||||
|
||||
/obj/structure/closet/crate/grave/lead_researcher/PopulateContents() //ADVANCED GRAVEROBBING
|
||||
/obj/structure/closet/crate/grave/filled/lead_researcher/PopulateContents() //ADVANCED GRAVEROBBING
|
||||
..()
|
||||
new /obj/effect/decal/cleanable/blood/gibs/old(src)
|
||||
new /obj/item/book/granter/crafting_recipe/boneyard_notes(src)
|
||||
|
||||
Reference in New Issue
Block a user