Skip to content

Commit

Permalink
Dimorlin recipe slight buff (#4187)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

halves the reagent requirements & hydrogen output for dimorlin since
they are all even
the amount of dimorlin output from the recipe is unchanged (at 2),
resulting in doubled output. The original pr had an output buff (2-4)
but it was committed after the pr entered the merge queue so it wasn't
merged

## Why It's Good For The Game

Makes painkiller mechanics easier to use by making the recipe more
efficient

## Changelog

:cl:
tweak: mixing dimorlin now requires half the required reagents, meaning
the same amount makes twice as much
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->

Signed-off-by: Theos <[email protected]>
  • Loading branch information
SomeguyManperson authored Feb 17, 2025
1 parent 0d6ed5c commit 07aa33a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/reagents/chemistry/recipes/medicine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ WS End */
required_temp = 340

/datum/chemical_reaction/dimorlin
results = list(/datum/reagent/medicine/dimorlin = 2, /datum/reagent/hydrogen = 4)
required_reagents = list(/datum/reagent/carbon = 6, /datum/reagent/diethylamine = 2, /datum/reagent/oxygen = 2, /datum/reagent/phenol = 2,)
results = list(/datum/reagent/medicine/dimorlin = 2, /datum/reagent/hydrogen = 2)
required_reagents = list(/datum/reagent/carbon = 3, /datum/reagent/diethylamine = 1, /datum/reagent/oxygen = 1, /datum/reagent/phenol = 1)
required_temp = 730
mix_message = "The mixture rapidly incorporates, leaving a layer of liquid hydrogen atop!"

Expand Down

0 comments on commit 07aa33a

Please sign in to comment.