mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
-Added an energy cutlass and made a pirate version of the space suit in preparation for a later nuke update. -Changeling now ends 15 minutes after changeling death, unless he's ressurected. -Further fixing of wizarditis teleporting into space. -Fixed the wise beard sprite. -Fixed missing sprite for monkeyburgers. -Fixed Beepsky automatically adding 2 treason points to EVERYONE. I believe that's everything. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@365 316c924e-a436-60f5-8080-3fe189b3f50e
31 lines
813 B
Plaintext
31 lines
813 B
Plaintext
/*
|
|
/datum/disease/beesease
|
|
name = "Beesease"
|
|
max_stages = 5
|
|
spread = "Contact" //ie shot bees
|
|
cure = "???"
|
|
cure_id = "???"
|
|
agent = "Bees"
|
|
affected_species = list("Human","Monkey")
|
|
curable = 0
|
|
|
|
/datum/disease/beesease/stage_act()
|
|
..()
|
|
switch(stage)
|
|
if(1)
|
|
if(prob(2))
|
|
affected_mob << "\red You feel like something is moving inside of you"
|
|
if(2) //also changes say, see say.dm
|
|
if(prob(2))
|
|
affected_mob << "\red You feel like something is moving inside of you"
|
|
if(prob(2))
|
|
affected_mob << "\red BZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ"
|
|
if(3)
|
|
//Should give the bee spit verb
|
|
if(4)
|
|
//Plus bees now spit randomly
|
|
if(5)
|
|
//Plus if you die, you explode into bees
|
|
return
|
|
*/
|
|
//Started working on it, but am too lazy to finish it today -- Urist |