forked from Sandstorm-Station/Sandstorm-Station-13
-
-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1228 from SpaceCat404/carbonated-cum
Carbonated Cum Update
- Loading branch information
Showing
7 changed files
with
75 additions
and
9 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
31 changes: 31 additions & 0 deletions
31
modular_splurt/code/modules/food_and_drinks/drinks/drinks/drinks.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,31 @@ | ||
/obj/item/reagent_containers/food/drinks/soda_cans/carbonatedcum | ||
name = "Mosley's Special Carbonated Cum" | ||
desc = "A pink can with the image of a Mal0 on the front. Very seductive eyes." | ||
icon = 'modular_splurt/icons/obj/drinks.dmi' | ||
icon_state = "carbonatedcum" | ||
list_reagents = list(/datum/reagent/consumable/semen = 30) | ||
foodtype = SUGAR | BREAKFAST // This is intentional, Meow :3 - Lucky | ||
|
||
/obj/item/reagent_containers/food/drinks/soda_cans/carbonatedfemcum | ||
name = "Mosley's Special Carbonated Femcum" | ||
desc = "A purple can with the image of a Mal0 on the front. Very seductive eyes." | ||
icon = 'modular_splurt/icons/obj/drinks.dmi' | ||
icon_state = "carbonatedfemcum" | ||
list_reagents = list(/datum/reagent/consumable/semen/femcum = 30) | ||
foodtype = SUGAR | ||
|
||
/obj/item/reagent_containers/food/drinks/soda_cans/blood | ||
name = "Stoker's Reserve" | ||
desc = "A cola bottle made to look like a night out on the town, bears a large V." | ||
icon = 'modular_splurt/icons/obj/drinks.dmi' | ||
icon_state = "blood" | ||
list_reagents = list(/datum/reagent/blood = 30) | ||
foodtype = MEAT | ||
|
||
/obj/item/reagent_containers/food/drinks/soda_cans/blooddiscrete | ||
name = "Space Cola V" // Stoker's Reserve discrete | ||
desc = "Looks like cola, smells like iron." | ||
icon = 'icons/obj/drinks.dmi' | ||
icon_state = "cola" | ||
list_reagents = list(/datum/reagent/blood = 30) | ||
foodtype = MEAT |
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 |
---|---|---|
@@ -1,6 +1,10 @@ | ||
/obj/machinery/vending/cola/Initialize() | ||
var/list/extra_products = list( | ||
/obj/item/reagent_containers/glass/beaker/waterbottle/large = 5 | ||
) | ||
LAZYADD(products, extra_products) | ||
. = ..() | ||
/obj/machinery/vending/cola/Initialize(mapload) | ||
var/list/extra_products = list( | ||
/obj/item/reagent_containers/glass/beaker/waterbottle/large = 5, | ||
/obj/item/reagent_containers/food/drinks/soda_cans/carbonatedcum = 5, | ||
/obj/item/reagent_containers/food/drinks/soda_cans/carbonatedfemcum = 5, | ||
/obj/item/reagent_containers/food/drinks/soda_cans/blood = 5, | ||
/obj/item/reagent_containers/food/drinks/soda_cans/blooddiscrete = 5 | ||
) | ||
LAZYADD(products, extra_products) | ||
. = ..() |
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