Skip to content

Commit

Permalink
Minute Energy Bar (shiptest-ss13#4173)
Browse files Browse the repository at this point in the history
## About The Pull Request

Replaces the High-Energy Bar (which could previously only be consumed by
a single species without violently electrocuting you) with an actual
energy bar, themed after the real-life Hooah! Bar
(https://en.wikipedia.org/wiki/Soldier_Fuel).


![image](https://github.com/user-attachments/assets/e2655513-e7b1-411f-807f-8df1b5a5dfba)

## Why It's Good For The Game

As funny as it was to have an energy bar that shocked you, the species
it was originally intended for basically no longer exists in our
codebase and doesn't really reflect them in a modern state. Plus, a lack
of energy bars that *everyone* could eat was something that bothered me.

So hey! You can have your slop energy bar RP now.

## Changelog

:cl:
add: Minute Energy bar, replacing High Energy bars in vendors.
/:cl:
  • Loading branch information
firebudgy authored Feb 12, 2025
1 parent 4065325 commit 4e9abcb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/modules/food_and_drinks/food/snacks_vend.dm
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@
w_class = WEIGHT_CLASS_SMALL

/obj/item/reagent_containers/food/snacks/energybar
name = "High-power energy bars"
name = "Minute Energy bar"
icon_state = "energybar"
desc = "An energy bar with a lot of punch, you probably shouldn't eat this if you're not an Elzuosa."
desc = "Referred to by many colorful names by the Minutemen it was issued to, this bar was produced by the Lanchester Foods Co. in order to supplement Minuteman rations in the field and improve morale. Though the initial version was infamous for being used more as a blunt weapon than anything else, nowadays it has found a place within the Minuteman and Civilian markets as a reliable source of nutrition."
trash = /obj/item/trash/energybar
list_reagents = list(/datum/reagent/consumable/nutriment = 3, /datum/reagent/consumable/liquidelectricity = 3)
filling_color = "#97ee63"
tastes = list("pure electricity" = 3, "fitness" = 2)
foodtype = TOXIC
list_reagents = list(/datum/reagent/consumable/nutriment = 4, /datum/reagent/consumable/nutriment/vitamin = 2, /datum/reagent/calcium = 2)
filling_color = "#639fee"
tastes = list("orange chocolate" = 3, "an awful lemon filling" = 2, "something hard" = 1)
foodtype = JUNKFOOD | SUGAR
/*food_flags = FOOD_FINGER_FOOD*/
w_class = WEIGHT_CLASS_SMALL
Binary file modified icons/obj/food/food.dmi
Binary file not shown.
Binary file modified icons/obj/janitor.dmi
Binary file not shown.

0 comments on commit 4e9abcb

Please sign in to comment.