Skip to content

Commit

Permalink
Adjusted Pure Soulus Dust (#2935)
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

Adjusts pure soulus dust to not require system cleaner, and output is
20u. It already requires 2 very hard to get reagents on shiptest
anyways.

## Why It's Good For The Game

It's a nice chem, but holy/hollow water are super duper rare, on top of
needing to collect legion cores. It doesn't need to be this hard. In a
hilarious sense...... straight applying legion cores is better pre-PR

## Changelog

:cl:
balance: pure soulus dust now makes 20u per reaction, and system cleaner
is not required.
/: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. -->
  • Loading branch information
Anticept authored May 5, 2024
1 parent 7822361 commit d5529ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/reagents/chemistry/recipes/medicine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,12 @@ WS End */
required_reagents = list(/datum/reagent/medicine/lavaland_extract = 1, /datum/reagent/medicine/bonefixingjuice = 1, /datum/reagent/titanium = 5)

/datum/chemical_reaction/pure_soulus_dust_hollow
results = list(/datum/reagent/medicine/soulus/pure = 10,)
required_reagents = list(/datum/reagent/medicine/soulus = 20, /datum/reagent/medicine/system_cleaner = 1, /datum/reagent/water/hollowwater = 10)
results = list(/datum/reagent/medicine/soulus/pure = 20,)
required_reagents = list(/datum/reagent/medicine/soulus = 20, /datum/reagent/water/hollowwater = 10)

/datum/chemical_reaction/pure_soulus_dust_holy
results = list(/datum/reagent/medicine/soulus/pure = 10,)
required_reagents = list(/datum/reagent/medicine/soulus = 20, /datum/reagent/medicine/system_cleaner = 1, /datum/reagent/water/holywater = 10)
results = list(/datum/reagent/medicine/soulus/pure = 20,)
required_reagents = list(/datum/reagent/medicine/soulus = 20, /datum/reagent/water/holywater = 10)

/datum/chemical_reaction/chartreuse
results = list(/datum/reagent/medicine/chartreuse = 10)
Expand Down

0 comments on commit d5529ef

Please sign in to comment.