Skip to content

Commit

Permalink
Bajabljast (#11)
Browse files Browse the repository at this point in the history
* Added Baja Blast as a Mixed Drink

* Recipe Change as Requested by TeaTree

2 parts soda water
1 part oxycodone
1 part space drugs

* Requested Effects of Drinking Baja Blast from TeaTree

* Increased Stumbling Odds

* Increased Painkilling Power

* Increased Prominence of the Effects

* Increases Potency again

* Baja Blast not available within the loadout screen

Co-authored-by: Tim <[email protected]>
  • Loading branch information
That0nePerson and DatBoiTim committed Feb 18, 2022
1 parent 7c55f34 commit c4963c0
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1417,4 +1417,27 @@
taste_description = "bitter energising tea"
color = "#0e0900"
glass_name = "skrianhi tea"
glass_desc = "A blend of teas from Moghes, commonly drank by Unathi."
glass_desc = "A blend of teas from Moghes, commonly drank by Unathi."

//ITS BAJA BLAST BABEY!!!!!!!!!!!!1!!!!
/datum/reagent/drink/bajablast
name = "Baja Blast"
description = "A Tropical Lime Flavored Soda. Dangerously Tasty."
taste_description = "Dangerously Good Tropical Lime"
color = "#63FFE0"
glass_name = "Baja Blast"
glass_desc = "A Tropical Lime Flavored Soda. Dangerously Tasty."
glass_special = list(DRINK_FIZZ)
var/pain_power = 120 //Painkilling Effect

/datum/reagent/drink/bajablast/affect_ingest(mob/living/carbon/M, alien, removed)
var/drug_strength = 15

M.druggy = max(M.druggy, drug_strength)
M.hallucination(50, 50)
M.SelfMove(pick(GLOB.cardinal))
if(prob(65))
M.emote(pick("twitch", "drool", "moan", "giggle"))
M.add_chemical_effect(CE_PULSE, -1)
M.add_chemical_effect(CE_PAINKILLER, pain_power)
M.add_chemical_effect(CE_MIND, -1)
9 changes: 9 additions & 0 deletions code/modules/reagents/Chemistry-Recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3122,3 +3122,12 @@
catalysts = list(
/datum/reagent/enzyme = 1
)

//BajaBlast is apparently an InterStellar Delicacy. It's exact makeup however, has changed over the years.
/datum/chemical_reaction/bajablast
name = "Baja Blast"
result = /datum/reagent/drink/bajablast
result_amount = 1
required_reagents = list(/datum/reagent/space_drugs=1,
/datum/reagent/tramadol/oxycodone=1,
/datum/reagent/drink/sodawater=2)
3 changes: 2 additions & 1 deletion code/modules/reagents/reagent_containers/food/lunch.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ var/list/lunchables_drink_reagents_ = list(
/datum/reagent/drink/dry_ramen,
/datum/reagent/drink/hell_ramen,
/datum/reagent/drink/hot_ramen,
/datum/reagent/drink/nuka_cola
/datum/reagent/drink/nuka_cola,
/datum/reagent/drink/bajablast
)

// This default list is a bit different, it contains items we don't want
Expand Down

0 comments on commit c4963c0

Please sign in to comment.