-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
screw you *un-monopolizes your nuka cola (#1249)
* screw you *unmoponilises your nuka cola first atempt at adding sunset sarsparilla * never let me not google how to spell something again thanks fixes the spelling on everything spelling of the name * swear that had a comma i promise * few minor fixes tada you opened the description id give you a cookie but i dont have any * now it heals in TWO FLAVORS fixed so it heals both brute and burn now * aaaaaaaaaaaaa * gah now to fix the soda.dmi and sunsets icon location * onemoreforfix * tada * Update drink_reagents.dm * fix it so its actually code * *screams of the tired* * Update uniform_digi.dmi * ihatecodeihatecodeihatecode * whymustcodehateme * ohboyilovemissingaperiod * imadrunkenscottishcyclops * why * Update sunset_sarsaparilla.dm * it would be great if i remembered to tick my files * falloutreferenceachieved
- Loading branch information
Showing
10 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
monkestation/code/modules/reagents/reagent_containers/sunsetglass.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/obj/item/reagent_containers/cup/glass/drinkingglass/filled/sunset_sarsaparilla | ||
name = "Sunset Sarsaparilla" | ||
list_reagents = list(/datum/reagent/consumable/sunset_sarsaparilla = 50,) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
//tada modularized now (please merge this back in) | ||
|
||
/datum/reagent/consumable/sunset_sarsaparilla | ||
name = "Sunset Sarsaparilla" | ||
description = "Build Mass with Sass!" | ||
color = "#633504" // rgb: 99, 53, 4 | ||
quality = DRINK_VERYGOOD | ||
taste_description = "the wild west" | ||
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED | ||
|
||
/datum/glass_style/drinking_glass/sunset_sarsaparilla | ||
required required_drink_type = /datum/reagent/consumable/sunset_sarsaparilla | ||
name = "glass of Sunset Sarsparilla" | ||
desc = "Locally sourced from your nearest nuclear wasteland." | ||
icon = 'monkestation/icons/obj/drinks/soda.dmi' | ||
icon_state = "sunset_sarsparillaglass" | ||
|
||
/datum/reagent/consumable/sunset_sarsaparilla/on_mob_life(mob/living/carbon/drinker) | ||
. = ..() | ||
drinker.heal_bodypart_damage(brute = 2.5) | ||
drinker.heal_bodypart_damage(burn = 2.5) | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters