mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 04:30:44 +01:00
[MIRROR] Fixes monkeycube size and organ callback and microwaves (#1107)
* Fixes monkeycube size and organ callback and microwaves (#54095) * fixes * dumb runtime * fixes eggs * Fixes monkeycube size and organ callback and microwaves Co-authored-by: Qustinnus <Floydje123@hotmail.com>
This commit is contained in:
@@ -769,7 +769,8 @@ GLOBAL_VAR_INIT(embedpocalypse, FALSE) // if true, all items will be able to emb
|
||||
..()
|
||||
|
||||
/obj/item/proc/microwave_act(obj/machinery/microwave/M)
|
||||
SEND_SIGNAL(src, COMSIG_ITEM_MICROWAVE_ACT, M)
|
||||
if(SEND_SIGNAL(src, COMSIG_ITEM_MICROWAVE_ACT, M) & COMPONENT_SUCCESFUL_MICROWAVE)
|
||||
return
|
||||
if(istype(M) && M.dirty < 100)
|
||||
M.dirty++
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
name = "egg"
|
||||
desc = "An egg!"
|
||||
icon_state = "egg"
|
||||
food_reagents = list(/datum/reagent/consumable/eggyolk = 5)
|
||||
food_reagents = list(/datum/reagent/consumable/eggyolk = 4)
|
||||
microwaved_type = /obj/item/food/boiledegg
|
||||
foodtypes = MEAT
|
||||
var/static/chick_count = 0 //I copied this from the chicken_count (note the "en" in there) variable from chicken code.
|
||||
@@ -95,7 +95,7 @@
|
||||
name = "boiled egg"
|
||||
desc = "A hard boiled egg."
|
||||
icon_state = "egg"
|
||||
food_reagents = list(/datum/reagent/consumable/nutriment/protein = 4, /datum/reagent/consumable/nutriment/vitamin = 1)
|
||||
food_reagents = list(/datum/reagent/consumable/nutriment/protein = 3, /datum/reagent/consumable/nutriment/vitamin = 1)
|
||||
tastes = list("egg" = 1)
|
||||
foodtypes = MEAT | BREAKFAST
|
||||
|
||||
|
||||
@@ -147,6 +147,7 @@
|
||||
food_reagents = list(/datum/reagent/monkey_powder = 30)
|
||||
tastes = list("the jungle" = 1, "bananas" = 1)
|
||||
foodtypes = MEAT | SUGAR
|
||||
w_class = WEIGHT_CLASS_TINY
|
||||
var/faction
|
||||
var/spawned_mob = /mob/living/carbon/monkey
|
||||
|
||||
|
||||
Reference in New Issue
Block a user