Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions code/modules/reagents/chemistry/reagents/drink_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -852,20 +852,3 @@
glass_icon_state = "red_queen"
glass_name = "Red Queen"
glass_desc = "DRINK ME."
var/current_size = 1

/datum/reagent/consumable/red_queen/on_mob_life(mob/living/carbon/H)
if(prob(75))
return ..()
var/newsize = pick(0.5, 0.75, 1, 1.50, 2)
H.resize = newsize/current_size
current_size = newsize
H.update_transform()
if(prob(40))
H.emote("sneeze")
..()

/datum/reagent/consumable/red_queen/on_mob_end_metabolize(mob/living/M)
M.resize = 1/current_size
M.update_transform()
..()
2 changes: 1 addition & 1 deletion code/modules/reagents/chemistry/reagents/food_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@
color = "#b5a213"
taste_description = "tingling mushroom"

/datum/reagent/consumable/tinlux/reaction_mob(mob/living/M)
/datum/reagent/consumable/tinlux/on_mob_metabolize(mob/living/M)
M.set_light(2)

/datum/reagent/consumable/tinlux/on_mob_end_metabolize(mob/living/M)
Expand Down
4 changes: 2 additions & 2 deletions code/modules/reagents/chemistry/reagents/other_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1597,7 +1597,7 @@
var/current_size = 1
taste_description = "bitterness" // apparently what viagra tastes like

/datum/reagent/growthserum/on_mob_life(mob/living/carbon/H)
/datum/reagent/growthserum/on_mob_metabolize(mob/living/carbon/H)
var/newsize = current_size
switch(volume)
if(0 to 19)
Expand Down Expand Up @@ -1749,4 +1749,4 @@
description = "A highly specialized extract coming from the Australicus sector, used to create broodmother spiders."
color = "#ED2939"
taste_description = "upside down"
can_synth = FALSE
can_synth = FALSE