-ADDED MINING! HOLY FUCK! SPECIAL THANKS TO ERRORAGE FOR CODING THIS!

-A mining outpost spawns on its own isolated z-level. Only way to get there right now, is admin-travel
 -A lot of the related sprites are going to be altered/completely redone
 -Testing is going to be controlled by the admins, on request only.
 -Too much to describe, you'll have to check it out for yourself
-Commented out the new disease while a needed file is missing

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@759 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
daelith.rhedynfre
2011-01-03 21:07:20 +00:00
parent 0e1ed7920d
commit 3514dd94e1
12 changed files with 1811 additions and 7 deletions

View File

@@ -1242,7 +1242,7 @@
var/datum/disease/F = new /datum/disease/flu(0)
var/list/data = list("virus"= F)
reagents.add_reagent("blood", 20, data)
/*
/obj/item/weapon/reagent_containers/glass/bottle/pierrot_throat
name = "Pierrot's Throat culture bottle"
desc = "A small bottle. Contains H0NI<42 virion culture in synthblood medium."
@@ -1254,7 +1254,7 @@
var/datum/disease/F = new /datum/disease/pierrot_throat(0)
var/list/data = list("virus"= F)
reagents.add_reagent("blood", 20, data)
*/
/obj/item/weapon/reagent_containers/glass/bottle/cold
name = "Rhinovirus culture bottle"
desc = "A small bottle. Contains XY-rhinovirus culture in synthblood medium."

File diff suppressed because it is too large Load Diff

View File

@@ -228,7 +228,7 @@
world << sound('outbreak7.ogg')
var/virus_type
if(!virus)
virus_type = pick(/datum/disease/dnaspread,/datum/disease/flu,/datum/disease/cold,/datum/disease/brainrot,/datum/disease/magnitis,/datum/disease/pierrot_throat)
virus_type = pick(/datum/disease/dnaspread,/datum/disease/flu,/datum/disease/cold,/datum/disease/brainrot,/datum/disease/magnitis/*,/datum/disease/pierrot_throat*/)
else
switch(virus)
if("fake gbs")
@@ -245,8 +245,8 @@
virus_type = /datum/disease/dnaspread
if("flu")
virus_type = /datum/disease/flu
if("pierrot's throat")
virus_type = /datum/disease/pierrot_throat
// if("pierrot's throat")
// virus_type = /datum/disease/pierrot_throat
for(var/mob/living/carbon/human/H in world)
if((H.virus) || (H.stat == 2))
continue

View File

@@ -2,7 +2,7 @@
if(src.mutantrace == "lizard")
if(copytext(message, 1, 2) != "*")
message = dd_replaceText(message, "s", stutter("ss"))
if(istype(src.virus, /datum/disease/pierrot_throat))
/* if(istype(src.virus, /datum/disease/pierrot_throat))
var/list/temp_message = dd_text2list(message, " ")
var/list/pick_list = list()
for(var/i = 1, i <= temp_message.len, i++)
@@ -15,6 +15,7 @@
pick_list -= H
message = dd_list2text(temp_message, " ")
..(message)
*/
/mob/living/carbon/human/say_understands(var/other)
if (istype(other, /mob/living/silicon/ai))