-
Notifications
You must be signed in to change notification settings - Fork 95
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
Adds ERP #395
Merged
AndroBetel
merged 11 commits into
cmss13-devs:master
from
BonniePandora:Eating-RolePlay
Aug 23, 2024
Merged
Adds ERP #395
Changes from 9 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1fbe31b
Dried Egg snack subtype added
BonniePandora 77d386c
Chem-reactions added
BonniePandora 19552af
Poweder packets added
BonniePandora c9694c7
MRE's given juice, milk-powder box added
BonniePandora b0232e9
Powder reagents
BonniePandora 3020d95
Missing juice types added
BonniePandora e18a33a
Merge branch 'cmss13-devs:master' into Eating-RolePlay
BonniePandora c730ece
Update condiment.dm
BonniePandora 94521d6
Food.dmi updated
BonniePandora 921a68c
Updates golden_arrow.dmm
BonniePandora c15f2ba
No more TARDIS food storage
BonniePandora File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ | |
to_chat(user, SPAN_NOTICE(" You transfer [trans] units of the condiment to [target].")) | ||
|
||
/obj/item/reagent_container/food/condiment/on_reagent_change() | ||
if(icon_state == "saltshakersmall" || icon_state == "peppermillsmall" || icon_state == "hotsauce_cholula" || icon_state == "hotsauce_franks" || icon_state == "hotsauce_sriracha" || icon_state == "hotsauce_tabasco" || icon_state == "coldsauce_cole") | ||
if(icon_state == "saltshakersmall" || icon_state == "peppermillsmall" || icon_state == "hotsauce_cholula" || icon_state == "hotsauce_franks" || icon_state == "hotsauce_sriracha" || icon_state == "hotsauce_tabasco" || icon_state == "coldsauce_cole" || icon_state == "eggpowder" || icon_state == "milkpowder" || icon_state == "bjpowder" || icon_state == "ojpowder" || icon_state == "ajpowder" || icon_state == "wjpowder" || icon_state == "gjpowder" || icon_state == "pjpowder") | ||
return | ||
if(reagents.reagent_list.len > 0) | ||
switch(reagents.get_master_reagent_id()) | ||
|
@@ -236,3 +236,79 @@ | |
/obj/item/reagent_container/food/condiment/coldsauce/Initialize() | ||
. = ..() | ||
reagents.add_reagent("frostoil", 60) | ||
|
||
/obj/item/reagent_container/food/condiment/juice | ||
name = "Juice Packet" | ||
desc = "A small packet of dehydrated fruit-juice powder. Mix with water for a 'tasty' beverage. This one appears to be missing the label indicating what flavor it is however." | ||
w_class = SIZE_TINY | ||
icon_state = "bjpowder" | ||
amount_per_transfer_from_this = 1 | ||
volume = 6 | ||
|
||
/obj/item/reagent_container/food/condiment/juice/orange | ||
name = "Orange Juice Packet" | ||
desc = "A small packet of dehydrated orange-juice powder. Mix with water for a 'tasty' beverage." | ||
icon_state = "ojpowder" | ||
|
||
/obj/item/reagent_container/food/condiment/juice/orange/Initialize() | ||
. = ..() | ||
reagents.add_reagent("dehydrated_orange_juice", 6) | ||
|
||
/obj/item/reagent_container/food/condiment/juice/apple | ||
name = "Apple Juice Packet" | ||
desc = "A small packet of dehydrated apple-juice powder. Mix with water for a 'tasty' beverage." | ||
icon_state = "ajpowder" | ||
|
||
/obj/item/reagent_container/food/condiment/juice/apple/Initialize() | ||
. = ..() | ||
reagents.add_reagent("dehydrated_apple_juice", 6) | ||
|
||
/obj/item/reagent_container/food/condiment/juice/watermelon | ||
name = "Watermelon Juice Packet" | ||
desc = "A small packet of dehydrated watermelon-juice powder. Mix with water for a 'tasty' beverage." | ||
icon_state = "wjpowder" | ||
|
||
/obj/item/reagent_container/food/condiment/juice/watermelon/Initialize() | ||
. = ..() | ||
reagents.add_reagent("dehydrated_watermelon_juice", 6) | ||
|
||
/obj/item/reagent_container/food/condiment/juice/grape | ||
name = "Grape Juice Packet" | ||
desc = "A small packet of dehydrated grape-juice powder. Mix with water for a 'tasty' beverage." | ||
icon_state = "gjpowder" | ||
|
||
/obj/item/reagent_container/food/condiment/juice/grape/Initialize() | ||
. = ..() | ||
reagents.add_reagent("dehydrated_grape_juice", 6) | ||
|
||
/obj/item/reagent_container/food/condiment/juice/pineapple | ||
name = "Pineapple Juice Packet" | ||
desc = "A small packet of dehydrated pineapple-juice powder. Mix with water for a 'tasty' beverage." | ||
icon_state = "pjpowder" | ||
|
||
/obj/item/reagent_container/food/condiment/juice/pineapple/Initialize() | ||
. = ..() | ||
reagents.add_reagent("dehydrated_pineapple_juice", 6) | ||
|
||
/obj/item/reagent_container/food/condiment/juice/egg | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. mmm egg juice |
||
name = "Powdered Egg Packet" | ||
desc = "A small packet of dehydrated egg-whites and egg-yolk powder. Mix with water for a passable alternative to the real deal." | ||
icon_state = "eggpowder" | ||
volume = 12 | ||
w_class = SIZE_SMALL | ||
|
||
/obj/item/reagent_container/food/condiment/juice/egg/Initialize() | ||
. = ..() | ||
reagents.add_reagent("dehydrated_egg_powder", 12) | ||
|
||
/obj/item/reagent_container/food/condiment/juice/milk | ||
name = "Dehydrated Milk Packet" | ||
desc = "A small packet of dehydrated milk powder. Mix with water for a passable alternative to actual milk." | ||
icon_state = "milkpowder" | ||
amount_per_transfer_from_this = 1 | ||
volume = 12 | ||
w_class = SIZE_SMALL | ||
|
||
/obj/item/reagent_container/food/condiment/juice/milk/Initialize() | ||
. = ..() | ||
reagents.add_reagent("dehydrated_milk_powder", 12) |
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
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a fucked up piece of code