diff --git a/code/__DEFINES/food.dm b/code/__DEFINES/food.dm index 72e6a12f84..a347fd7327 100644 --- a/code/__DEFINES/food.dm +++ b/code/__DEFINES/food.dm @@ -18,3 +18,4 @@ #define DRINK_VERYGOOD 3 #define DRINK_FANTASTIC 4 #define FOOD_AMAZING 5 +#define RACE_DRINK 6 \ No newline at end of file diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm index 4be0985fbc..439583c859 100644 --- a/code/__DEFINES/is_helpers.dm +++ b/code/__DEFINES/is_helpers.dm @@ -67,10 +67,15 @@ GLOBAL_LIST_INIT(turfs_without_ground, typecacheof(list( #define iscatperson(A) (ishumanbasic(A) && istype(A.dna.species, /datum/species/human/felinid) ) #define isdwarf(A) (is_species(A, /datum/species/dwarf)) #define isdullahan(A) (is_species(A, /datum/species/dullahan)) -#define isvampire(A) (is_species(A,/datum/species/vampire)) +#define isangel(A) (is_species(A, /datum/species/angel)) +#define isvampire(A) (is_species(A, /datum/species/vampire)) +#define ismush(A) (is_species(A, /datum/species/mush)) +#define isshadow(A) (is_species(A, /datum/species/shadow)) +#define isskeleton(A) (is_species(A, /datum/species/skeleton)) // Citadel specific species #define isipcperson(A) (is_species(A, /datum/species/ipc)) +#define issynthliz(A) (is_species(A, /datum/species/synthliz)) #define ismammal(A) (is_species(A, /datum/species/mammal)) #define isavian(A) (is_species(A, /datum/species/avian)) #define isaquatic(A) (is_species(A, /datum/species/aquatic)) diff --git a/code/datums/mood_events/drink_events.dm b/code/datums/mood_events/drink_events.dm index 70acffdb8f..4107fd7380 100644 --- a/code/datums/mood_events/drink_events.dm +++ b/code/datums/mood_events/drink_events.dm @@ -23,6 +23,11 @@ mood_change = 4 timeout = 2 MINUTES +/datum/mood_event/race_drink + description = "That drink was made for me!\n" + mood_change = 6 + timeout = 5 MINUTES + /datum/mood_event/amazingtaste description = "Amazing taste!\n" mood_change = 50 //Is this not really high..? diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index e1c0646e80..8d8049194b 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -915,3 +915,80 @@ results = list(/datum/reagent/consumable/ethanol/commander_and_chief = 50) required_reagents = list(/datum/reagent/consumable/ethanol/alliescocktail = 50, /datum/reagent/consumable/ethanol/champagne = 20, /datum/reagent/consumable/doctor_delight = 10, /datum/reagent/consumable/ethanol/quintuple_sec = 10, /datum/reagent/consumable/ethanol/screwdrivercocktail = 10) mix_message = "When your powers combine, I am Captain Pl-..." + +////////////////////////////////////////// Race Base Drinks ////////////////////////////////////// + +/datum/chemical_reaction/coldscales + name = "Cold Scales" + id = /datum/reagent/consumable/ethanol/coldscales + results = list(/datum/reagent/consumable/ethanol/coldscales = 3) + required_reagents = list(/datum/reagent/consumable/tea = 1, /datum/reagent/toxin/slimejelly = 1, /datum/reagent/consumable/menthol = 1) + +/datum/chemical_reaction/oil_drum + name = "Oil Drum" + id = /datum/reagent/consumable/ethanol/oil_drum + results = list(/datum/reagent/consumable/ethanol/oil_drum = 3) + required_reagents = list(/datum/reagent/consumable/ethanol = 1, /datum/reagent/oil = 1, /datum/reagent/consumable/ethanol/champagne = 12) + +/datum/chemical_reaction/nord_king + name = "Nord King" + id = /datum/reagent/consumable/ethanol/nord_king + results = list(/datum/reagent/consumable/ethanol/nord_king = 10) + required_reagents = list(/datum/reagent/consumable/ethanol = 5, /datum/reagent/consumable/honey = 1, /datum/reagent/consumable/ethanol/red_mead = 10) + +/datum/chemical_reaction/velvet_kiss + name = "Velvet Kiss" + id = /datum/reagent/consumable/ethanol/velvet_kiss + results = list(/datum/reagent/consumable/ethanol/velvet_kiss = 15) //Limited races use this + required_reagents = list(/datum/reagent/blood = 5, /datum/reagent/consumable/tea = 1, /datum/reagent/consumable/ethanol/wine = 10) + +/datum/chemical_reaction/abduction_fruit + name = "Abduction Fruit" + id = /datum/reagent/consumable/ethanol/abduction_fruit + results = list(/datum/reagent/consumable/ethanol/abduction_fruit = 3) + required_reagents = list(/datum/reagent/consumable/limejuice = 10, /datum/reagent/consumable/strawberryjuice = 5, /datum/reagent/consumable/watermelonjuice = 10) + +/datum/chemical_reaction/bug_zapper + name = "Bug Zapper" + id = /datum/reagent/consumable/ethanol/bug_zapper + results = list(/datum/reagent/consumable/ethanol/bug_zapper = 20) //Harder to make + required_reagents = list(/datum/reagent/consumable/lemonjuice = 10, /datum/reagent/teslium = 1, /datum/reagent/copper = 10) + +/datum/chemical_reaction/mush_crush + name = "Mush Crush" + id = /datum/reagent/consumable/ethanol/mush_crush + results = list(/datum/reagent/consumable/ethanol/mush_crush = 10) + required_reagents = list(/datum/reagent/iron = 5, /datum/reagent/ash = 5, /datum/reagent/toxin/coffeepowder = 10) + +/datum/chemical_reaction/darkbrew + name = "Darkbrew" + id = /datum/reagent/consumable/ethanol/darkbrew + results = list(/datum/reagent/consumable/ethanol/darkbrew = 20)//Limited races use this + required_reagents = list(/datum/reagent/liquid_dark_matter = 5, /datum/reagent/toxin/bungotoxin = 5, /datum/reagent/toxin/coffeepowder = 10) + +/datum/chemical_reaction/hollow_bone + name = "Hollow Bone" + id = /datum/reagent/consumable/ethanol/hollow_bone + results = list(/datum/reagent/consumable/ethanol/hollow_bone = 10) + required_reagents = list(/datum/reagent/toxin/bonehurtingjuice = 5, /datum/reagent/consumable/milk = 10, /datum/reagent/consumable/coconutmilk = 10) + +/datum/chemical_reaction/frisky_kitty + name = "Frisky Kitty" + id = /datum/reagent/consumable/ethanol/frisky_kitty + results = list(/datum/reagent/consumable/ethanol/frisky_kitty = 2) + required_reagents = list(/datum/reagent/consumable/catnip_tea = 1, /datum/reagent/consumable/milk = 1) + required_temp = 296 //Just above room temp (22.85'C) + +/datum/chemical_reaction/jell_wyrm + name = "Jell Wyrm" + id = /datum/reagent/consumable/ethanol/jell_wyrm + results = list(/datum/reagent/consumable/ethanol/jell_wyrm = 2) + required_reagents = list(/datum/reagent/toxin/slimejelly = 1, /datum/reagent/toxin/carpotoxin = 1, /datum/reagent/carbondioxide = 5) + required_temp = 333 // (59.85'C) + +/datum/chemical_reaction/laval_spit + name = "Laval Spit" + id = /datum/reagent/consumable/ethanol/laval_spit + results = list(/datum/reagent/consumable/ethanol/laval_spit = 20) //Limited use + required_reagents = list(/datum/reagent/iron = 5, /datum/reagent/consumable/ethanol/mauna_loa = 10, /datum/reagent/sulfur = 5) + required_temp = 900 // (626.85'C) diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm index 7ee233b449..abe5c7de46 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm @@ -2356,6 +2356,219 @@ All effects don't start immediately, but rather get worse over time; the rate is M.adjustStaminaLoss(-2) return ..() +//////////////////// +//Race-Base-Drinks// +//////////////////// + +/datum/reagent/consumable/ethanol/coldscales + name = "Coldscales" + color = "#5AEB52" //(90, 235, 82) + description = "A cold looking drink made for people with scales." + boozepwr = 50 //strong! + taste_description = "dead flies" + glass_icon_state = "coldscales" + glass_name = "glass of Coldscales" + glass_desc = "A soft green drink that looks inviting!" + +/datum/reagent/consumable/ethanol/coldscales/on_mob_life(mob/living/carbon/M) + if(islizard(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/oil_drum + name = "Oil Drum" + color = "#000000" //(0, 0, 0) + description = "Industeral grade oil mixed with some ethanol to make it a drink. Somehow not known to be toxic." + boozepwr = 45 + taste_description = "oil spill" + glass_icon_state = "oil_drum" + glass_name = "Drum of oil" + glass_desc = "A gray can of booze and oil..." + +/datum/reagent/consumable/ethanol/oil_drum/on_mob_life(mob/living/carbon/M) + if(isipcperson(M) || issynthliz(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/nord_king + name = "Nord King" + color = "#EB1010" //(235, 16, 16) + description = "Strong mead mixed with more honey and ethanol. Known to beloved by most palettes." + boozepwr = 50 //strong! + taste_description = "honey and red wine" + glass_icon_state = "nord_king" + glass_name = "Keg of Nord King" + glass_desc = "A dripping keg of red mead." + +/datum/reagent/consumable/ethanol/nord_king/on_mob_life(mob/living/carbon/M) + if(ishumanbasic(M) || isdwarf(M) || isangel(M)) //Humans and angel races are rare + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/velvet_kiss + name = "Velvet Kiss" + color = "#EB1010" //(235, 16, 16) + description = "A bloody drink mixed with wine." + boozepwr = 10 //weak + taste_description = "iron with grapejuice" + glass_icon_state = "velvet_kiss" + glass_name = "glass of Velvet Kiss" + glass_desc = "Red and white drink for the upper classes or undead." + +/datum/reagent/consumable/ethanol/velvet_kiss/on_mob_life(mob/living/carbon/M) + if(iszombie(M) || isvampire(M) || isdullahan(M)) //Rare races! + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/abduction_fruit + name = "Abduction Fruit" + color = "#DEFACD" //(222, 250, 205) + description = "Mixing of juices to make an alien taste." + boozepwr = 80 //Strong + taste_description = "grass and lime" + glass_icon_state = "abduction_fruit" + glass_name = "glass of Abduction Fruit" + glass_desc = "Mixed fruits that were never ment to be mixed..." + +/datum/reagent/consumable/ethanol/abduction_fruit/on_mob_life(mob/living/carbon/M) + if(isabductor(M) || isxenoperson(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/bug_zapper + name = "Bug Zapper" + color = "#F5882A" //(222, 250, 205) + description = "Metals and lemon juice. Hardly even a drink." + boozepwr = 5 //No booze really + taste_description = "copper and AC power" + glass_icon_state = "bug_zapper" + glass_name = "glass of Bug Zapper" + glass_desc = "An odd mix of copper, lemon juice and power meant for non-human consumption." + +/datum/reagent/consumable/ethanol/bug_zapper/on_mob_life(mob/living/carbon/M) + if(isinsect(M) || isflyperson(M) || ismoth(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/mush_crush + name = "Mush Crush" + color = "#F5882A" //(222, 250, 205) + description = "Soil in a glass." + boozepwr = 5 //No booze really + taste_description = "dirt and iron" + glass_icon_state = "mush_crush" + glass_name = "glass of Mush Crush" + glass_desc = "Popular among people that want to grow their own food rather then drink the soil." + +/datum/reagent/consumable/ethanol/mush_crush/on_mob_life(mob/living/carbon/M) + if(ispodperson(M) || ismush(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/darkbrew + name = "Darkbrew" + color = "#000000" //(0, 0, 0) + description = "Contained dark matter mixed with coffee." + boozepwr = 5 //No booze really + taste_description = "Shadows and coffee trees" + glass_icon_state = "darkbrew" + glass_name = "glass of Darkbrew" + glass_desc = "A pitch black drink that's commonly confused with a type of coffee." + +/datum/reagent/consumable/ethanol/darkbrew/on_mob_life(mob/living/carbon/M) + if(isshadow(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/hollow_bone + name = "Hollow Bone" + color = "#FCF7D4" //(252, 247, 212) + description = "Shockingly none-harmful mix of toxins and milk." + boozepwr = 15 + taste_description = "Milk and salt" + glass_icon_state = "hollow_bone" + glass_name = "skull of Hollow Bone" + glass_desc = "Mixing of milk and bone hurting juice for enjoyment for rather skinny people." + +/datum/reagent/consumable/ethanol/hollow_bone/on_mob_life(mob/living/carbon/M) + if(isplasmaman(M) || isskeleton(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/frisky_kitty + name = "Frisky Kitty" + color = "#FCF7D4" //(252, 247, 212) + description = "Warm milk mixed with a catnip." + boozepwr = 0 //No one dont get drunk off milk! + taste_description = "Warm milk and catnip" + glass_icon_state = "frisky_kitty" + glass_name = "cup of Drisky Kitty" + glass_desc = "Warm milk and some catnip." + +/datum/reagent/consumable/ethanol/frisky_kitty/on_mob_life(mob/living/carbon/M) + if(ismammal(M) || iscatperson(M)) //well its not to bad for mammals + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/datum/reagent/consumable/ethanol/jell_wyrm + name = "Jell Wyrm" + color = "#FF6200" //(255, 98, 0) + description = "Horrible mix of Co2, toxins and heat. Meant for slime based life." + boozepwr = 40 + taste_description = "tropical sea" + glass_icon_state = "jell_wyrm" + glass_name = "glass of Jell Wyrm" + glass_desc = "A bubbly drink that is rather inviting to those that don't know who it's meant for." + +/datum/reagent/consumable/ethanol/jell_wyrm/on_mob_life(mob/living/carbon/M) + if(isjellyperson(M) || isstartjelly(M) || isslimeperson(M) || isluminescent(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + M.adjustToxLoss(1, 0) //Low tox do to being carp + jell toxins. + return ..() + +/datum/reagent/consumable/ethanol/laval_spit //Yes Laval + name = "Laval Spit" + color = "#DE3009" //(222, 48, 9) + description = "Heat minerals and some mauna loa. Meant for rock based life." + boozepwr = 30 + taste_description = "tropical island" + glass_icon_state = "laval_spit" + glass_name = "glass of Laval Spit" + glass_desc = "Piping hot drink for those who can stomach the heat of lava." + +/datum/reagent/consumable/ethanol/laval_spit/on_mob_life(mob/living/carbon/M) + if(isgolem(M)) + quality = RACE_DRINK + else + M.adjust_disgust(25) + return ..() + +/////////////// +//Barrle Wine// +/////////////// + /datum/reagent/consumable/ethanol/fruit_wine name = "Fruit Wine" description = "A wine made from grown plants." diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm index 52c06bca9b..ebbce61c57 100644 --- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm @@ -1,7 +1,7 @@ ///////////////////////////////////////////////////////////////////////////////////////////////////////// -/////////////////////// DRINKS BELOW, Beer is up there though, along with cola. Cap'n Pete's Cuban Spiced Rum//////////////////////////////// +//////DRINKS BELOW, Beer is up there though, along with cola. Cap'n Pete's Cuban Spiced Rum////////////// ///////////////////////////////////////////////////////////////////////////////////////////////////////// /datum/reagent/consumable/orangejuice diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index c003fc7111..39b687c64a 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -33,6 +33,8 @@ SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, "quality_drink", /datum/mood_event/quality_verygood) if (DRINK_FANTASTIC) SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, "quality_drink", /datum/mood_event/quality_fantastic) + if (RACE_DRINK) + SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, "quality_drink", /datum/mood_event/race_drink) if (FOOD_AMAZING) SEND_SIGNAL(M, COMSIG_ADD_MOOD_EVENT, "quality_food", /datum/mood_event/amazingtaste) return ..() diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index f2ea9fa55d..3c5dfe5012 100644 Binary files a/icons/mob/clothing/head.dmi and b/icons/mob/clothing/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 2e0906ea20..c88d1ce766 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 07e7bf1da8..c178cdba04 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ