Skip to content

Commit

Permalink
capsaicin no longer straight up kills you (#3150)
Browse files Browse the repository at this point in the history
## About The Pull Request

removes the body temperature increase from capsaicin

## Why It's Good For The Game

>eats two chili peppers
>starts running a fever 30C over the boiling point of water


![nacho](https://github.com/shiptest-ss13/Shiptest/assets/139387950/4ee8470c-f220-4181-83ab-a0d78755aa12)


## Changelog

:cl:
del: Capsaicin no longer Boils you
/:cl:
  • Loading branch information
generalthrax committed Jul 12, 2024
1 parent 5c988aa commit 72f65e6
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions code/modules/reagents/chemistry/reagents/food_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -209,30 +209,6 @@
taste_description = "hot peppers"
taste_mult = 1.5

/datum/reagent/consumable/capsaicin/on_mob_life(mob/living/carbon/M)
var/heating = 0
switch(current_cycle)
if(1 to 15)
heating = 5 * TEMPERATURE_DAMAGE_COEFFICIENT
if(holder.has_reagent(/datum/reagent/cryostylane))
holder.remove_reagent(/datum/reagent/cryostylane, 5)
if(isslime(M))
heating = rand(5,20)
if(15 to 25)
heating = 10 * TEMPERATURE_DAMAGE_COEFFICIENT
if(isslime(M))
heating = rand(10,20)
if(25 to 35)
heating = 15 * TEMPERATURE_DAMAGE_COEFFICIENT
if(isslime(M))
heating = rand(15,20)
if(35 to INFINITY)
heating = 20 * TEMPERATURE_DAMAGE_COEFFICIENT
if(isslime(M))
heating = rand(20,25)
M.adjust_bodytemperature(heating)
..()

/datum/reagent/consumable/frostoil
name = "Frost Oil"
description = "A special oil that noticeably chills the body. Extracted from chilly peppers and slimes."
Expand Down

0 comments on commit 72f65e6

Please sign in to comment.