Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alchemy buff #713

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions code/modules/roguetown/roguecrafting/alchemy/potionbuffs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/datum/status_effect/buff/alch/strengthpot
id = "strpot"
alert_type = /atom/movable/screen/alert/status_effect/buff/alch/strengthpot
effectedstats = list("strength" = 3)
effectedstats = list("strength" = 4)
duration = 930

/atom/movable/screen/alert/status_effect/buff/alch/strengthpot
Expand All @@ -15,7 +15,7 @@
/datum/status_effect/buff/alch/perceptionpot
id = "perpot"
alert_type = /atom/movable/screen/alert/status_effect/buff/alch/perceptionpot
effectedstats = list("perception" = 3)
effectedstats = list("perception" = 4)
duration = 3000

/atom/movable/screen/alert/status_effect/buff/alch/perceptionpot
Expand All @@ -25,7 +25,7 @@
/datum/status_effect/buff/alch/intelligencepot
id = "intpot"
alert_type = /atom/movable/screen/alert/status_effect/buff/alch/intelligencepot
effectedstats = list("intelligence" = 3)
effectedstats = list("intelligence" = 4)
duration = 3000

/atom/movable/screen/alert/status_effect/buff/alch/intelligencepot
Expand All @@ -35,7 +35,7 @@
/datum/status_effect/buff/alch/constitutionpot
id = "conpot"
alert_type = /atom/movable/screen/alert/status_effect/buff/alch/constitutionpot
effectedstats = list("constitution" = 3)
effectedstats = list("constitution" = 4)
duration = 930

/atom/movable/screen/alert/status_effect/buff/alch/constitutionpot
Expand All @@ -45,7 +45,7 @@
/datum/status_effect/buff/alch/endurancepot
id = "endpot"
alert_type = /atom/movable/screen/alert/status_effect/buff/alch/endurancepot
effectedstats = list("endurance" = 3)
effectedstats = list("endurance" = 4)
duration = 930

/atom/movable/screen/alert/status_effect/buff/alch/endurancepot
Expand All @@ -55,7 +55,7 @@
/datum/status_effect/buff/alch/speedpot
id = "spdpot"
alert_type = /atom/movable/screen/alert/status_effect/buff/alch/speedpot
effectedstats = list("speed" = 3)
effectedstats = list("speed" = 4)
duration = 930

/atom/movable/screen/alert/status_effect/buff/alch/speedpot
Expand All @@ -65,7 +65,7 @@
/datum/status_effect/buff/alch/fortunepot
id = "forpot"
alert_type = /atom/movable/screen/alert/status_effect/buff/alch/fortunepot
effectedstats = list("fortune" = 3)
effectedstats = list("fortune" = 4)
duration = 3000

/atom/movable/screen/alert/status_effect/buff/alch/fortunepot
Expand Down
8 changes: 4 additions & 4 deletions code/modules/roguetown/roguecrafting/alchemy/reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -118,24 +118,24 @@
color = "#129c00"
taste_description = "sweet tea"
overdose_threshold = 0
metabolization_rate = REAGENTS_METABOLISM
metabolization_rate = REAGENTS_METABOLISM * 0.25
alpha = 173

/datum/reagent/medicine/stampot/on_mob_life(mob/living/carbon/M)
if(!HAS_TRAIT(M,TRAIT_NOSTAMINA))
M.adjust_stamina(-1.5)
M.adjust_stamina(-6)
..()

/datum/reagent/medicine/strongstam
name = "Strong Stamina Potion"
description = "Rapidly regenerates stamina."
color = "#13df00"
taste_description = "sparkly static"
metabolization_rate = REAGENTS_METABOLISM * 3
metabolization_rate = REAGENTS_METABOLISM * 0.5

/datum/reagent/medicine/strongstam/on_mob_life(mob/living/carbon/M)
if(!HAS_TRAIT(M,TRAIT_NOSTAMINA))
M.adjust_stamina(-6)
M.adjust_stamina(-32) // pretty much infinite stamina during the duration
..()

/datum/reagent/medicine/antidote
Expand Down
Loading