[MIRROR] Adds the CRAZY HAMBURGER (#877)

* Merge pull request #53812 from SgtHunk/ITS-HAURRIBLE

Adds the CRAZY HAMBURGER

* Adds the CRAZY HAMBURGER

Co-authored-by: Jordan Brown <Cyberboss@users.noreply.github.com>
This commit is contained in:
SkyratBot
2020-09-20 00:35:23 +01:00
committed by GitHub
co-authored by Jordan Brown
parent b679c7617d
commit 7f84409fd4
4 changed files with 44 additions and 0 deletions
@@ -334,3 +334,15 @@
smoke.effect_type = smoke_type
smoke.set_up(range, location)
smoke.start()
/////////////////////////////////////////////
// Bad Smoke (But Green)
/////////////////////////////////////////////
/obj/effect/particle_effect/smoke/bad/green
name = "green smoke"
color = "#00FF00"
opaque = FALSE
/datum/effect_system/smoke_spread/bad/green
effect_type = /obj/effect/particle_effect/smoke/bad/green
+17
View File
@@ -366,3 +366,20 @@
if(prob(33))
icon_state = "cheeseburgeralt"
/obj/item/food/burger/crazy
name = "crazy hamburger"
desc = "This looks like the sort of food that a demented clown in a trenchcoat would make."
icon_state = "crazyburger"
tastes = list("bun" = 2, "beef patty" = 4, "cheese" = 2, "beef soaked in chili" = 3, "a smoking flare" = 2)
food_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/protein = 6, /datum/reagent/consumable/capsaicin = 3, /datum/reagent/consumable/condensedcapsaicin = 3, /datum/reagent/consumable/nutriment/vitamin = 6)
foodtypes = GRAIN | MEAT | DAIRY
/obj/item/food/burger/crazy/Initialize()
. = ..()
START_PROCESSING(SSobj, src)
/obj/item/food/burger/crazy/process(delta_time) // DIT EES HORRIBLE
if(DT_PROB(2.5, delta_time))
var/datum/effect_system/smoke_spread/bad/green/smoke = new
smoke.set_up(0, src)
smoke.start()