mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-06 07:23:16 +00:00
Added in some new food and drinks. Credit goes to Firecage for all of the work except the actual commit.
git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1799 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -2957,4 +2957,31 @@ datum
|
||||
..()
|
||||
return
|
||||
|
||||
bananahonk
|
||||
name = "Banana Honk"
|
||||
id = "bananahonk"
|
||||
description = "A drink from Clown Heaven."
|
||||
nutriment_factor = 1 * REAGENTS_METABOLISM
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
M:nutrition += nutriment_factor
|
||||
if(istype(M, /mob/living/carbon/human) && M.job in list("Clown"))
|
||||
if(!M) M = holder.my_atom
|
||||
M:heal_organ_damage(1,1)
|
||||
..()
|
||||
return
|
||||
if(istype(M, /mob/living/carbon/monkey))
|
||||
if(!M) M = holder.my_atom
|
||||
M:heal_organ_damage(1,1)
|
||||
M.stunned = 4
|
||||
if(!data) data = 1
|
||||
data++
|
||||
M.dizziness +=5
|
||||
if(data >= 55 && data <165)
|
||||
if (!M.stuttering) M.stuttering = 1
|
||||
M.stuttering += 5
|
||||
else if(data >= 165 && prob(33))
|
||||
M.confused = max(M:confused+5,0)
|
||||
..()
|
||||
return
|
||||
|
||||
|
||||
|
||||
@@ -925,3 +925,10 @@ datum
|
||||
result = "hippiesdelight"
|
||||
required_reagents = list("psilocybin" = 1, "gargleblaster" = 1, "space_drugs" = 1)
|
||||
result_amount = 3
|
||||
|
||||
bananahonk
|
||||
name = "Banana Honk"
|
||||
id = "bananahonk"
|
||||
result = "bananahonk"
|
||||
required_reagents = list("banana" = 1, "cream" = 1, "sugar" = 1)
|
||||
result_amount = 3
|
||||
|
||||
@@ -2765,6 +2765,10 @@
|
||||
icon_state = "hippiesdelightglass"
|
||||
name = "Hippiesdelight"
|
||||
desc = "A drink enjoyed by people during the 1960's."
|
||||
if("bananahonk")
|
||||
icon_state = "bananahonkglass"
|
||||
name = "Banana Honk"
|
||||
desc = "A drink from Clown Heaven."
|
||||
else
|
||||
icon_state ="glass_brown"
|
||||
name = "Glass of ..what?"
|
||||
|
||||
Reference in New Issue
Block a user