mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2026-08-22 04:07:04 +01:00
Adds Carbonated Cum
This commit is contained in:
@@ -19,3 +19,28 @@
|
||||
volume = 100
|
||||
list_reagents = list(/datum/reagent/consumable/ethanol/navy_rum = 100)
|
||||
|
||||
// New Splurt bottles for the barman.
|
||||
|
||||
/obj/item/reagent_containers/food/drinks/bottle/cum_rum
|
||||
name = "NT Femboy Navy Cum Rum"
|
||||
desc = "Can't have female mates in the Navy! Sourced from NT femboy cum farms."
|
||||
icon = 'modular_splurt/icons/obj/drinks.dmi'
|
||||
icon_state = "cum_rum"
|
||||
volume = 100
|
||||
list_reagents = list(/datum/reagent/consumable/ethanol/navy_rum = 40, /datum/reagent/consumable/semen = 60)
|
||||
|
||||
/obj/item/reagent_containers/food/drinks/bottle/femcum_whiskey
|
||||
name = "2440's Special Femcum whiskey"
|
||||
desc = "For the womanizer detective."
|
||||
icon = 'modular_splurt/icons/obj/drinks.dmi'
|
||||
icon_state = "femcum_whiskey"
|
||||
volume = 100
|
||||
list_reagents = list(/datum/reagent/consumable/ethanol/whiskey = 40, /datum/reagent/consumable/semen/femcum = 60)
|
||||
|
||||
/obj/item/reagent_containers/food/drinks/bottle/bloodwine
|
||||
name = "Stoker's Special reserve Bloodwine"
|
||||
desc = "Horribly sweet, wonderfuly wicked and aged to perfection."
|
||||
icon = 'modular_splurt/icons/obj/drinks.dmi'
|
||||
icon_state = "bloodwine"
|
||||
volume = 100
|
||||
list_reagents = list(/datum/reagent/consumable/ethanol/wine = 40, /datum/reagent/blood = 60)
|
||||
|
||||
@@ -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
|
||||
@@ -2,7 +2,10 @@
|
||||
var/list/extra_products = list(
|
||||
/obj/item/reagent_containers/food/drinks/bottle/bitters = 6,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/curacao = 3,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/navy_rum = 3
|
||||
/obj/item/reagent_containers/food/drinks/bottle/navy_rum = 3,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/bloodwine = 3,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/femcum_whiskey = 4,
|
||||
/obj/item/reagent_containers/food/drinks/bottle/cum_rum = 4
|
||||
)
|
||||
LAZYADD(products, extra_products)
|
||||
. = ..()
|
||||
|
||||
@@ -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)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user