mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-17 18:13: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:
@@ -152,6 +152,7 @@
|
||||
src.verbs += /client/proc/object_talk // -- TLE
|
||||
src.verbs += /client/proc/play_sound
|
||||
src.verbs += /client/proc/cuban_pete // -- Urist
|
||||
src.verbs += /client/proc/bananaphone // -- Darem
|
||||
src.verbs += /client/proc/only_one // muskets
|
||||
src.verbs += /client/proc/space_asshole // --Agouri :3
|
||||
src.verbs += /client/proc/strike_team //N
|
||||
@@ -283,6 +284,7 @@
|
||||
//src.verbs += /client/proc/object_talk // -- TLE
|
||||
src.verbs += /client/proc/play_sound
|
||||
src.verbs += /client/proc/cuban_pete // -- Urist
|
||||
src.verbs += /client/proc/bananaphone
|
||||
src.verbs += /client/proc/only_one // muskets
|
||||
src.verbs += /client/proc/space_asshole // --Agouri :3
|
||||
//src.verbs += /client/proc/strike_team //N
|
||||
@@ -411,6 +413,7 @@
|
||||
//src.verbs += /client/proc/object_talk // -- TLE
|
||||
src.verbs += /client/proc/play_sound
|
||||
//src.verbs += /client/proc/cuban_pete // -- Urist
|
||||
//src.verbs += /client/proc/bananaphone
|
||||
//src.verbs += /client/proc/space_asshole // --Agouri :3
|
||||
//src.verbs += /client/proc/strike_team //N
|
||||
src.verbs += /client/proc/space_ninja //N
|
||||
@@ -567,6 +570,7 @@
|
||||
//src.verbs += /client/proc/object_talk // -- TLE
|
||||
src.verbs += /client/proc/play_sound
|
||||
//src.verbs += /client/proc/cuban_pete // -- Urist
|
||||
//src.verbs += /client/proc/bananaphone
|
||||
//src.verbs += /client/proc/space_asshole // --Agouri :3
|
||||
//src.verbs += /client/proc/strike_team //N
|
||||
//src.verbs += /client/proc/space_ninja //N
|
||||
@@ -713,6 +717,7 @@
|
||||
//src.verbs += /client/proc/object_talk // -- TLE
|
||||
src.verbs += /client/proc/play_sound
|
||||
//src.verbs += /client/proc/cuban_pete // -- Urist
|
||||
//src.verbs += /client/proc/bananaphone
|
||||
//src.verbs += /client/proc/space_asshole // --Agouri :3
|
||||
//src.verbs += /client/proc/strike_team //N
|
||||
//src.verbs += /client/proc/space_ninja //N
|
||||
@@ -854,6 +859,7 @@
|
||||
//src.verbs += /client/proc/object_talk // -- TLE
|
||||
//src.verbs += /client/proc/play_sound
|
||||
//src.verbs += /client/proc/cuban_pete // -- Urist
|
||||
//src.verbs += /client/proc/bananaphone
|
||||
//src.verbs += /client/proc/space_asshole // --Agouri :3
|
||||
//src.verbs += /client/proc/strike_team //N
|
||||
//src.verbs += /client/proc/space_ninja //N
|
||||
@@ -979,6 +985,7 @@
|
||||
//src.verbs += /client/proc/object_talk // -- TLE
|
||||
//src.verbs += /client/proc/play_sound
|
||||
//src.verbs += /client/proc/cuban_pete // -- Urist
|
||||
//src.verbs += /client/proc/bananaphone
|
||||
//src.verbs += /client/proc/space_asshole // --Agouri :3
|
||||
//src.verbs += /client/proc/strike_team //N
|
||||
//src.verbs += /client/proc/space_ninja //N
|
||||
@@ -1147,6 +1154,7 @@
|
||||
src.verbs -= /client/proc/object_talk // -- TLE
|
||||
src.verbs -= /client/proc/play_sound
|
||||
src.verbs -= /client/proc/cuban_pete // -- Urist
|
||||
src.verbs -= /client/proc/bananaphone // -- Darem
|
||||
src.verbs -= /client/proc/space_asshole // --Agouri :3
|
||||
src.verbs -= /client/proc/strike_team //N
|
||||
src.verbs -= /client/proc/space_ninja //N
|
||||
|
||||
@@ -54,6 +54,17 @@
|
||||
CP << "Your body can't contain the rhumba beat"
|
||||
CP.gib(1)
|
||||
|
||||
/client/proc/bananaphone()
|
||||
set category = "Fun"
|
||||
set name = "Banana Phone"
|
||||
|
||||
message_admins("[key_name_admin(usr)] has activated Banana Phone!", 1)
|
||||
|
||||
for(var/mob/M in world)
|
||||
if(M.client)
|
||||
if(M.client.midis)
|
||||
M << 'bananaphone.ogg'
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -743,6 +743,44 @@
|
||||
reagents.add_reagent("tomatojuice", 2)
|
||||
bitesize = 5
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/telebacon
|
||||
name = "Tele Bacon"
|
||||
desc = "It takes a little odd but it is still delicious."
|
||||
icon_state = "bacon"
|
||||
var/obj/item/device/radio/beacon/bacon/baconbeacon
|
||||
bitesize = 3
|
||||
New()
|
||||
..()
|
||||
reagents.add_reagent("nutriment", 6)
|
||||
baconbeacon = new /obj/item/device/radio/beacon/bacon(src)
|
||||
On_Consume()
|
||||
if(!reagents.total_volume)
|
||||
baconbeacon.loc = usr
|
||||
baconbeacon.digest_delay()
|
||||
|
||||
|
||||
/obj/item/weapon/reagent_containers/food/snacks/bananaphone
|
||||
name = "Banana Phone"
|
||||
desc = "Ring ring ring ring ring..."
|
||||
icon = 'items.dmi'
|
||||
icon_state = "banana" //needs a new icon.
|
||||
bitesize = 5
|
||||
var/obj/item/device/radio/banana/bananaphone
|
||||
New()
|
||||
..()
|
||||
reagents.add_reagent("banana", 5)
|
||||
bananaphone = new /obj/item/device/radio/banana(src)
|
||||
bananaphone.listening = 1
|
||||
bananaphone.broadcasting = 1
|
||||
|
||||
On_Consume()
|
||||
if(!reagents.total_volume)
|
||||
usr << sound('bananaphone.ogg',1)
|
||||
hear_talk(mob/M as mob, msg)
|
||||
if(bananaphone)
|
||||
bananaphone.hear_talk(M, msg)
|
||||
|
||||
|
||||
/////////////////////////////////////////////////Sliceable////////////////////////////////////////
|
||||
// All the food items that can be sliced into smaller bits like Meatbread and Cheesewheels
|
||||
|
||||
|
||||
@@ -1,6 +1,21 @@
|
||||
|
||||
// see code/datums/recipe.dm
|
||||
|
||||
/datum/recipe/telebacon
|
||||
items = list(
|
||||
/obj/item/weapon/reagent_containers/food/snacks/meat,
|
||||
/obj/item/device/radio/signaler
|
||||
)
|
||||
result = /obj/item/weapon/reagent_containers/food/snacks/telebacon
|
||||
|
||||
/datum/recipe/bananaphone
|
||||
reagents = list("psilocybin" = 5) //Trippin' balls, man.
|
||||
items = list(
|
||||
/obj/item/weapon/reagent_containers/food/snacks/banana,
|
||||
/obj/item/device/radio
|
||||
)
|
||||
result = /obj/item/weapon/reagent_containers/food/snacks/bananaphone
|
||||
|
||||
/datum/recipe/jellydonut
|
||||
reagents = list("berryjuice" = 5)
|
||||
items = list(
|
||||
|
||||
Reference in New Issue
Block a user