Arachnid Slammer

Made a new drink derived from stimulants, energy drink and hearty ale! Good to warm the heart and soul when mining and slaying spiders!

Also made a recipe for making some absolute loko energy drinks!
This commit is contained in:
Shadow
2021-11-10 17:25:18 +01:00
parent 8adc469d49
commit fc2597de2a
4 changed files with 155 additions and 0 deletions

View File

@@ -206,6 +206,103 @@
reaction_sound = 'sound/machines/clockcult/steam_whoosh.ogg'
result_amount = 3
//thirteen loko possible to make now, so easier to make arachnid slammer - Jack
/decl/chemical_reaction/instant/drinks/thirteenloko
name = "Thirteen Loko"
id = "thirteenloko"
result = "thirteenloko"
required_reagents = list("beer" = 1, "tequilla" = 1, "coffee" = 1)
result_amount = 3
//Arachnid slammer reactions - Jack
/decl/chemical_reaction/instant/drinks/arachnidslammer
name = "Arachnid Slammer"
id = "arachnidslammer"
result = "arachnidslammer"
required_reagents = list("ale" = 1, "thirteenloko" = 1, "hyperzine" = 1)
mix_message = "The concortion of ale, energy drink and stimulants starts to heavily foam and fizzle, even sparkle a little."
result_amount = 3
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
result = "enragedarachnidslammer"
required_reagents = list("infusedarachnidslammer" = 1, "spidertoxin" = 1)
mix_message = "The dormant Arachnid Slammer bubbles and fizzles loudly as it gets enraged by the spider toxin and breaks it down!"
result_amount = 5
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer1
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "cyanide" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer2
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "chloralhydrate" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer3
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "stimm" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer4
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "cryotoxin" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer5
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "cryptobiolin" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer6
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "stoxin" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer7
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "condensedcapsaicin_v" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer8
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "phoron" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer9
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "thermite_v" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
/decl/chemical_reaction/instant/drinks/enragedarachnidslammer10
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
required_reagents = list("enragedarachnidslammer" = 1, "serotrotium_v" = 1)
result = "enragedarachnidslammer"
result_amount = 0.1
//YW drinks
/decl/chemical_reaction/instant/drinks/lovepotion_yw
name = "Strawberry Love Potion"

View File

@@ -498,6 +498,60 @@
glass_icon_state = "cogchamp"
glass_icon_file = 'icons/obj/drinks_ch.dmi'
//Arachnid slammer states - Jack
/datum/reagent/ethanol/arachnidslammer
name = "Arachnid Slammer"
id = "arachnidslammer"
description = "An adventurous mix of a cheap, powerful ale with an equally cheap, powerful energy drink and combat drugs. The result should have been undrikable, and yet it sure does put a spring in your step."
taste_description = "hearty barley ale, almost illegal energy drink, combat stimulants, and the urge to go mine and wrestle a spider"
color = "#594219"
strength = 30
nutriment_factor = 1
glass_name = "arachnid slammer"
glass_desc = "A freezing pint of delicious Araching Slammer, it foams constantly with the air crisp around it."
allergen_type = ALLERGEN_GRAINS //Barley is grain
/datum/reagent/ethanol/arachnidslammer/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed)
.=..()
M.reagents.add_reagent("infusedarachnidslammer", removed * 5)
/datum/reagent/ethanol/arachnidslammer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
.=..()
M.reagents.add_reagent("infusedarachnidslammer", removed * 5)
/datum/reagent/infusedarachnidslammer
name = "Infused Arachnid Slammer"
id = "infusedarachnidslammer"
description = "When Arachnid Slammer is metabolized you get a concortion of chemicals that breaks down slower. While the alcohol is burned off, the new compounds seems dormant, like they're waiting for some malicious toxin.."
taste_description = "flat watered down Arachnid Slammer and a brewing tempest"
reagent_state = LIQUID
color = "#8040FF"
scannable = 1
metabolism = REM
ingest_met = REM
glass_name = "infused arachnid slammer"
glass_desc = "A pint of metabolized Arachnid Slammer. Even if its flat it still somehow foams and sparkles as well as bubbles more actively when spiders are nearby."
/datum/reagent/infusedarachnidslammer/enragedarachnidslammer
name = "Enraged Arachnid Slammer"
id = "enragedarachnidslammer"
description = "The best term to scientifically describe this concortion is that the compounds of the Arachnid Slammer are going into a raging frenzy from spider toxin. Its now functioning like a form of potent chemical-based white blood cells that aims to break down harmful compounds and repair the body."
taste_description = "cold burning liquid rage and the urge to destroy any spider you see"
glass_name = "enraged arachnid slammer"
glass_desc = "A pint of Enraged Arachnid Slammer. It bubbles and sparkles fiercly as if it was in a berserking state!"
/datum/reagent/infusedarachnidslammer/enragedarachnidslammer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
var/chem_effective = 1 * M.species.chem_strength_heal
M.adjustOxyLoss(-1.5 * removed * chem_effective)
M.adjustToxLoss(-1.5 * removed * chem_effective)
M.heal_organ_damage(1.5 * removed, 1.5 * removed * chem_effective)
M.add_chemical_effect(CE_PAINKILLER, 80 * chem_effective)
M.add_chemical_effect(CE_SPEEDBOOST, 0)
////////////////////////////////////////////////
/////////FOODSTUFF/////////////////////////////
//////////////////////////////////////////////