Skip to content

Commit

Permalink
what is testing code?
Browse files Browse the repository at this point in the history
  • Loading branch information
MMMiracles committed Jun 6, 2016
1 parent cad969c commit ffcde7f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions _maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
/obj/effect/step_trigger/sound_effect{
name = "turn around";
sound = "turn_around";
sound = 'sound/hallucinations/turn_around1.ogg';
triggerer_only = 1
},
/turf/open/floor/plasteel/cult{
Expand Down Expand Up @@ -98,7 +98,7 @@
},
/obj/effect/step_trigger/sound_effect{
name = "turn around";
sound = "turn_around";
sound = 'sound/hallucinations/turn_around1.ogg';
triggerer_only = 1
},
/turf/open/floor/plasteel/cult{
Expand All @@ -117,7 +117,7 @@
/obj/effect/step_trigger/sound_effect{
happens_once = 1;
name = "a grave mistake";
sound = "i_see_you";
sound = 'sound/hallucinations/i_see_you1.ogg';
triggerer_only = 1
},
/obj/effect/step_trigger/message{
Expand All @@ -138,7 +138,7 @@
},
/obj/effect/step_trigger/sound_effect{
name = "turn around";
sound = "turn_around";
sound = 'sound/hallucinations/turn_around1.ogg';
triggerer_only = 1
},
/turf/open/floor/plasteel/cult{
Expand All @@ -165,7 +165,7 @@
},
/obj/effect/step_trigger/sound_effect{
name = "turn around";
sound = "turn_around";
sound = 'sound/hallucinations/turn_around1.ogg';
triggerer_only = 1
},
/turf/open/floor/plasteel/cult{
Expand Down
10 changes: 5 additions & 5 deletions code/modules/ruins/lavaland_ruin_code.dm
Original file line number Diff line number Diff line change
Expand Up @@ -412,27 +412,27 @@
mob_species = /datum/species/human
flavour_text = {"Doomed to walk this eternal hellscape due to means you barely remember at this point, every day is a struggle for survival as you barely scrape by in your makeshift housing."}

/obj/effect/mob_spawn/human/hermit/special(mob/living/new_spawn)
/obj/effect/mob_spawn/human/hermit/New()
var/arrpee = rand(1,4)
switch(arrpee)
if(1)
new_spawn << "You were the sole survivor of a raid-party's onslaught on a small orbital tradestation. You were forced to early-eject your pod to escape, the horrifed faces of the remaining crew when the raiders blew apart the room's airlock forever ingrained in your mind."
flavour_text = {"You were the sole survivor of a raid-party's onslaught on a small orbital tradestation. You were forced to early-eject your pod to escape, the horrifed faces of the remaining crew when the raiders blew apart the room's airlock forever ingrained in your mind."}
uniform = /obj/item/clothing/under/assistantformal
shoes = /obj/item/clothing/shoes/sneakers/black
back = /obj/item/weapon/storage/backpack
if(2)
new_spawn << "A castaway from a far-off civilization, banished for crimes of heresy against the church. You awoke from hypersleep your pod crashlanding into this hellscape, only the essentials left to make a new life for yourself."
flavour_text = {"A castaway from a far-off civilization, banished for crimes of heresy against the church. You awoke from hypersleep your pod crashlanding into this hellscape, only the essentials left to make a new life for yourself."}
uniform = /obj/item/clothing/under/rank/prisoner
shoes = /obj/item/clothing/shoes/sneakers/orange
back = /obj/item/weapon/storage/backpack
if(3)
new_spawn << "A runaway from the tyranny of Nanotrasen and everything all these damnned corporations stand for. From a metaphorical hell to a literal one, you do your best to put your station-life behind you to try and survive in this harsh land."
flavour_text = {"A runaway from the tyranny of Nanotrasen and everything all these damnned corporations stand for. From a metaphorical hell to a literal one, you do your best to put your station-life behind you to try and survive in this harsh land."}
uniform = /obj/item/clothing/under/rank/medical
suit = /obj/item/clothing/suit/toggle/labcoat
back = /obj/item/weapon/storage/backpack/medic
shoes = /obj/item/clothing/shoes/sneakers/black
if(4)
new_spawn << "You weren't exactly the sharpest tool in the shed, hitting that big red button on the escape pod wondering what it'd do. Whether this 'special' attribute of yours is a defect of cloning or just genuine stupidity, the fact you've survived this long in a literal hellhole is enough to make Darwin roll in his grave."
flavour_text = {"You weren't exactly the sharpest tool in the shed, hitting that big red button on the escape pod wondering what it'd do. Whether this 'special' attribute of yours is a defect of cloning or just genuine stupidity, the fact you've survived this long in a literal hellhole is enough to make Darwin roll in his grave."}
uniform = /obj/item/clothing/under/color/grey/glorf
shoes = /obj/item/clothing/shoes/sneakers/black
back = /obj/item/weapon/storage/backpack

0 comments on commit ffcde7f

Please sign in to comment.