mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 19:17:50 +01:00
Removes Ghost Chilli Juice and Dragon's Breath (#4495)
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
|
||||
|
||||
|
||||
/datum/reagent/ethanol/dragons_breath
|
||||
/datum/reagent/ethanol/dragons_breath //inaccessible to players, but here for admin shennanigans
|
||||
name = "Dragon's Breath"
|
||||
id = "dragonsbreath"
|
||||
description = "Possessing this stuff probably breaks the Geneva convention."
|
||||
@@ -108,15 +108,6 @@
|
||||
return
|
||||
..()
|
||||
|
||||
/datum/chemical_reaction/dragons_breath
|
||||
name = "Dragon's Breath"
|
||||
id = "dragonsbreath"
|
||||
result = "dragonsbreath"
|
||||
required_reagents = list("whiskey" = 1, "phlogiston" = 1, "pyrosium" = 1, "fuel" = 1, "ghostchilijuice"= 1)
|
||||
result_amount = 1
|
||||
mix_message = "A tiny mushroom cloud erupts from the container. That's not worrying at all!"
|
||||
mix_sound = 'sound/effects/meteorimpact.ogg'
|
||||
|
||||
// ROBOT ALCOHOL PAST THIS POINT
|
||||
// WOOO!
|
||||
|
||||
|
||||
@@ -600,45 +600,4 @@ datum/reagent/pepperoni/reaction_mob(var/mob/living/M, var/method=TOUCH, var/vol
|
||||
var/mob/living/carbon/human/H = M
|
||||
if(!H.heart_attack)
|
||||
H.heart_attack = 1
|
||||
..()
|
||||
|
||||
/datum/reagent/ghost_chili_juice
|
||||
name = "Ghost chili juice"
|
||||
id = "ghostchilijuice"
|
||||
description = "Juice from the universe's hottest chilli. Do not consume."
|
||||
reagent_state = LIQUID
|
||||
color = "#FF7F32"
|
||||
|
||||
/datum/reagent/ghost_chili_juice/on_mob_life(var/mob/living/M as mob)
|
||||
if(!M) M = holder.my_atom
|
||||
if(M.reagents.has_reagent("milk"))
|
||||
to_chat(M, "<span class='notice'>The milk stops the burning. Ahhh.</span>")
|
||||
M.reagents.del_reagent("milk")
|
||||
M.reagents.del_reagent("ghostchilijuice")
|
||||
return
|
||||
if(prob(8))
|
||||
to_chat(M, "<span class='userdanger'>Oh god! Oh GODD!!</span>")
|
||||
if(prob(50))
|
||||
to_chat(M, "<span class='danger'>Your throat burns furiously!</span>")
|
||||
M.emote(pick("scream","cry","choke","gasp"))
|
||||
M.Stun(1)
|
||||
if(prob(8))
|
||||
to_chat(M, "<span class='danger'>Why!? WHY!?</span>")
|
||||
if(prob(8))
|
||||
to_chat(M, "<span class='danger'>ARGHHHH!</span>")
|
||||
if(prob(33))
|
||||
M.visible_message("<span class='danger'>[M] suddenly and violently vomits!</span>")
|
||||
M.fakevomit(no_text = 1)
|
||||
to_chat(M, "<span class='notice'>Thank goodness. You're not sure how long you could have held out with heat that intense!</span>")
|
||||
M.reagents.del_reagent("ghostchilijuice")
|
||||
return
|
||||
if(prob(10))
|
||||
to_chat(M, "<span class='userdanger'>OH GOD OH GOD PLEASE NO!!</span>")
|
||||
if(M.on_fire)
|
||||
M.adjust_fire_stacks(5)
|
||||
if(prob(50))
|
||||
to_chat(M, "<span class='userdanger'>IT BURNS!!!!</span>")
|
||||
M.visible_message("<span class='danger'>[M] is consumed in flames!</span>")
|
||||
M.dust()
|
||||
return
|
||||
..()
|
||||
Reference in New Issue
Block a user