Skip to content

Commit

Permalink
Nerf nuka-cola, energy drinks, adrenaline (#8299)
Browse files Browse the repository at this point in the history
* nukanerf

* e

* r
  • Loading branch information
Firefox13 authored Sep 15, 2023
1 parent c1698c3 commit caf1f44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion code/modules/reagents/reagent_containers/food/drinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
desc = "A heart attack that fits in your pocket."
icon_state = "energy_drink"
center_of_mass = list("x"=15, "y"=13)
preloaded_reagents = list("sugar" = 10, "nuka_cola" = 20)
preloaded_reagents = list("sugar" = 10, "adrenaline" = 20)
spawn_tags = SPAWN_TAG_JUNKFOOD
rarity_value = 15

Expand Down
8 changes: 4 additions & 4 deletions code/modules/reagents/reagents/food-Drinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@
color = "#100800"
adj_temp = -5
adj_sleepy = -2
nerve_system_accumulations = 50
nerve_system_accumulations = 30
taste_tag = list(TASTE_SWEET,TASTE_BUBBLY)

glass_unique_appearance = TRUE
Expand All @@ -925,12 +925,12 @@

/datum/reagent/drink/nuka_cola/affect_ingest(mob/living/carbon/M, alien, effect_multiplier)
..()
M.add_chemical_effect(CE_SPEEDBOOST, 0.6)
M.add_chemical_effect(CE_SPEEDBOOST, 0.2)
M.add_chemical_effect(CE_PULSE, 2)
M.make_jittery(20 * effect_multiplier)
M.druggy = max(M.druggy, 30 * effect_multiplier)
M.dizziness += 5 * effect_multiplier
M.drowsyness = 0
M.apply_effect(0.5 * effect_multiplier, IRRADIATE, 0)
M.apply_effect(1 * effect_multiplier, IRRADIATE, 0)

/datum/reagent/drink/grenadine
name = "Grenadine Syrup"
Expand Down
1 change: 1 addition & 0 deletions code/modules/reagents/reagents/other.dm
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@
M.add_chemical_effect(CE_PAINKILLER, 15)
M.stats.addTempStat(STAT_TGH, STAT_LEVEL_ADEPT * effect_multiplier, STIM_TIME, "adrenaline")
M.add_chemical_effect(CE_TOXIN, 3)
M.add_chemical_effect(CE_PULSE, 1)

/datum/reagent/adrenaline/withdrawal_act(mob/living/carbon/M)
M.adjustOxyLoss(15)
Expand Down

0 comments on commit caf1f44

Please sign in to comment.