mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-16 00:26:56 +01:00
* spanish? * aaaagain * keep maptext * Update robot_items.dm * Update span_defines.dm * compiles * Update silicon_mob.dm * compile
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
/datum/disease/rhumba_beat
|
|
name = "The Rhumba Beat"
|
|
max_stages = 5
|
|
spread_text = "On contact"
|
|
spread_flags = SPREAD_CONTACT_GENERAL
|
|
cure_text = "Chick Chicky Boom!"
|
|
cures = list("plasma")
|
|
agent = "Unknown"
|
|
viable_mobtypes = list(/mob/living/carbon/human)
|
|
severity = VIRUS_BIOHAZARD
|
|
|
|
/datum/disease/rhumba_beat/stage_act()
|
|
if(!..())
|
|
return FALSE
|
|
if(affected_mob.ckey == "rosham")
|
|
cure()
|
|
return
|
|
switch(stage)
|
|
if(2)
|
|
if(prob(45))
|
|
affected_mob.adjustToxLoss(5)
|
|
if(prob(1))
|
|
to_chat(affected_mob, SPAN_DANGER("You feel strange..."))
|
|
if(3)
|
|
if(prob(5))
|
|
to_chat(affected_mob, SPAN_DANGER("You feel the urge to dance..."))
|
|
else if(prob(5))
|
|
affected_mob.emote("gasp")
|
|
else if(prob(10))
|
|
to_chat(affected_mob, SPAN_DANGER("You feel the need to chick chicky boom..."))
|
|
if(4)
|
|
if(prob(10))
|
|
affected_mob.emote("gasp")
|
|
to_chat(affected_mob, SPAN_DANGER("You feel a burning beat inside..."))
|
|
if(prob(20))
|
|
affected_mob.adjustToxLoss(5)
|
|
if(5)
|
|
to_chat(affected_mob, SPAN_DANGER("Your body is unable to contain the Rhumba Beat..."))
|
|
if(prob(50))
|
|
affected_mob.gib()
|