Adds the Dorian Casino, a new space ruin. (#25800)

* Add the Dorian Casino, a new space ruin.

* fix maplint issues

* add area to walls missing it

* Update code/modules/awaymissions/mob_spawn.dm

Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

* just plating under foyer windows

---------

Signed-off-by: warriorstar-orion <orion@snowfrost.garden>
Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com>
This commit is contained in:
warriorstar-orion
2024-06-29 08:41:33 +00:00
committed by GitHub
co-authored by Ryan
parent 79cd6f06c5
commit f1df68f210
5 changed files with 3988 additions and 0 deletions
+46
View File
@@ -588,6 +588,52 @@
mob_species = /datum/species/skeleton/brittle
mob_gender = NEUTER
/datum/outfit/randomizer
name = "randomizer"
/datum/outfit/randomizer/pre_equip(mob/living/carbon/human/H, visualsOnly)
. = ..()
// Add picks for more slots as necessary for your needs
if(islist(uniform))
uniform = pick(uniform)
if(islist(shoes))
shoes = pick(shoes)
/datum/outfit/randomizer/gambler
name = "gambler"
shoes = list(
/obj/item/clothing/shoes/laceup,
/obj/item/clothing/shoes/leather
)
uniform = list(
/obj/item/clothing/under/suit/navy,
/obj/item/clothing/under/suit/really_black,
/obj/item/clothing/under/suit/checkered,
)
/obj/effect/mob_spawn/human/corpse/random_species/Initialize(mapload)
mob_species = pick(
/datum/species/human,
/datum/species/unathi,
/datum/species/moth,
/datum/species/skrell,
/datum/species/vox,
/datum/species/vulpkanin,
/datum/species/tajaran,
/datum/species/slime,
/datum/species/kidan,
/datum/species/drask,
/datum/species/grey,
/datum/species/diona,
)
return ..()
/obj/effect/mob_spawn/human/corpse/random_species/gambler
name = "Gambler"
mob_name = "Gambler"
outfit = /datum/outfit/randomizer/gambler
/obj/effect/mob_spawn/human/alive/zombie
name = "NPC Zombie (Infectious)"
icon = 'icons/mob/human.dmi'