mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-12 07:33:34 +01:00
Two new microwave recipes:
- Tele Bacon: Requires one piece of meat and a remote signaler. It is delicious and may allow people to teleport to your location. - Banana Phone: Requires a banana, a radio, and 5 units of psilocybin. Basically an edible radio. Eat at your own risk (MAY CAUSE HOMICIDAL URGES, NOT LIKE THAT IS ANYTHING UNUSUAL). On a totally unrelated note: - Banana Phone (full version of the song, not the short loop version) can now be played via the "Banana Phone" fun admin command. It only runs once. - Fixed a potential runtime error in the juicer code. DRINKS! - Potato juice added, produced from putting a potato in a juicer. - 10 Potato Juice + 2 Enzyme = Vodka - 5 coffee + 5 sugar + 2 enzyme = Kahlua git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1484 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -1536,11 +1536,11 @@ datum
|
||||
id = "hot_ramen"
|
||||
description = "The noodles are boiled, the flavors are artificial, just like being back in school."
|
||||
reagent_state = LIQUID
|
||||
nutriment_factor = 5 * REAGENTS_METABOLISM
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
..()
|
||||
if (M.bodytemperature < 310)//310 is the normal bodytemp. 310.055
|
||||
M.bodytemperature = min(310, M.bodytemperature+10)
|
||||
M:nutrition += 5
|
||||
return
|
||||
|
||||
hell_ramen
|
||||
@@ -1548,12 +1548,19 @@ datum
|
||||
id = "hell_ramen"
|
||||
description = "The noodles are boiled, the flavors are artificial, just like being back in school."
|
||||
reagent_state = LIQUID
|
||||
nutriment_factor = 5 * REAGENTS_METABOLISM
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
..()
|
||||
M:bodytemperature += 10
|
||||
M:nutrition += 5
|
||||
return
|
||||
|
||||
potato_juice
|
||||
name = "Potato Juice"
|
||||
id = "potato"
|
||||
description = "Juice of the potato. Bleh."
|
||||
reagent_state = LIQUID
|
||||
nutriment_factor = 2 * REAGENTS_METABOLISM
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
/////////////////////// DRINKS BELOW, Beer is up there though, along with cola. Cap'n Pete's Cuban Spiced Rum////////////////////////////////
|
||||
|
||||
@@ -568,6 +568,21 @@ datum
|
||||
required_reagents = list("berryjuice" = 10, "enzyme" = 2)
|
||||
result_amount = 5
|
||||
|
||||
vodka
|
||||
name = "Vodka"
|
||||
id = "vodka"
|
||||
result = "vodka"
|
||||
required_reagents = list("potato" = 10, "enzyme" = 2)
|
||||
result_amount = 5
|
||||
|
||||
kahlua
|
||||
name = "Kahlua"
|
||||
id = "kahlua"
|
||||
result = "kahlua"
|
||||
required_reagents = list("coffee" = 5, "sugar" = 5, "enzyme" = 2)
|
||||
|
||||
|
||||
|
||||
gin_tonic
|
||||
name = "Gin and Tonic"
|
||||
id = "gintonic"
|
||||
|
||||
Reference in New Issue
Block a user