Renames Strange Reagent to Lazarus Reagent (#20614)

* the great renamining
also changes the description to be more flavorful

* capitalization
This commit is contained in:
JimKil3
2023-03-26 07:04:02 -04:00
committed by GitHub
parent b5f3b7442b
commit 845c842f14
8 changed files with 26 additions and 26 deletions
@@ -281,7 +281,7 @@
// Medchem
/obj/item/storage/pill_bottle/random_meds/labelled = 100, // random medical and other chems
/obj/item/reagent_containers/glass/bottle/reagent/omnizine = 50,
/obj/item/reagent_containers/glass/bottle/reagent/strange_reagent = 50,
/obj/item/reagent_containers/glass/bottle/reagent/lazarus_reagent = 50,
// Surgery
/obj/item/scalpel/laser/manager = 100,
@@ -42,7 +42,7 @@
if(A.id == "blood")
if(!(A.data["donor"] in blood_list))
blood_list += A.data["donor"]
if(A.id == "strange_reagent") //RELOAD THE BEES (1 bee per 1 unit, max 15 bees)
if(A.id == "lazarus_reagent") //RELOAD THE BEES (1 bee per 1 unit, max 15 bees)
if(bees_left < 15)
bees_left = min(15, round((bees_left + A.volume), 1)) //No partial bees, max 15 bees in case at any given time
to_chat(user, "<span class='warning'>The buzzing inside the briefcase intensifies as new bees form inside.</span>")
@@ -65,7 +65,7 @@
next_sound = world.time + 90
playsound(loc, sound_file, 35)
//Release up to 5 bees per use. Without using strange reagent, that means two uses. WITH strange reagent, you can get more if you don't release the last bee
//Release up to 5 bees per use. Without using Lazarus Reagent, that means two uses. WITH Lazarus Reagent, you can get more if you don't release the last bee
for(var/bee = min(5, bees_left), bee > 0, bee--)
var/mob/living/simple_animal/hostile/poison/bees/syndi/B = new /mob/living/simple_animal/hostile/poison/bees/syndi(get_turf(user)) // RELEASE THE BEES!
B.master_and_friends = blood_list.Copy() //Doesn't automatically add the person who opens the case, so the bees will attack the user unless they gave their blood
+2 -2
View File
@@ -710,7 +710,7 @@
adjustPests(rand(2,4))
// FEED ME SEYMOUR
if(S.has_reagent("strange_reagent", 1))
if(S.has_reagent("lazarus_reagent", 1))
spawnplant()
// The best stuff there is. For testing/debugging.
@@ -982,7 +982,7 @@
weedlevel = clamp(weedlevel + adjustamt, 0, 10)
plant_hud_set_weed()
/obj/machinery/hydroponics/proc/spawnplant() // why would you put strange reagent in a hydro tray you monster I bet you also feed them blood
/obj/machinery/hydroponics/proc/spawnplant() // why would you put Lazarus Reagent in a hydro tray you monster I bet you also feed them blood
var/list/livingplants = list(/mob/living/simple_animal/hostile/tree, /mob/living/simple_animal/hostile/killertomato)
var/chosen = pick(livingplants)
var/mob/living/simple_animal/hostile/C = new chosen(get_turf(src))
@@ -734,10 +734,10 @@
M.emote("collapse")
return list(effect, update_flags)
/datum/reagent/medicine/strange_reagent
name = "Strange Reagent"
id = "strange_reagent"
description = "A glowing green fluid highly reminiscent of nuclear waste."
/datum/reagent/medicine/lazarus_reagent
name = "Lazarus Reagent"
id = "lazarus_reagent"
description = "A bioluminescent green fluid that seems to move on its own."
reagent_state = LIQUID
color = "#A0E85E"
metabolization_rate = 0.2
@@ -745,14 +745,14 @@
harmless = FALSE
var/revive_type = SENTIENCE_ORGANIC //So you can't revive boss monsters or robots with it
/datum/reagent/medicine/strange_reagent/on_mob_life(mob/living/M)
/datum/reagent/medicine/lazarus_reagent/on_mob_life(mob/living/M)
var/update_flags = STATUS_UPDATE_NONE
if(prob(10))
update_flags |= M.adjustBruteLoss(2*REAGENTS_EFFECT_MULTIPLIER, FALSE)
update_flags |= M.adjustToxLoss(2*REAGENTS_EFFECT_MULTIPLIER, FALSE)
return ..() | update_flags
/datum/reagent/medicine/strange_reagent/reaction_mob(mob/living/M, method = REAGENT_TOUCH, volume)
/datum/reagent/medicine/lazarus_reagent/reaction_mob(mob/living/M, method = REAGENT_TOUCH, volume)
if(volume < 1)
// gotta pay to play
return ..()
@@ -762,7 +762,7 @@
return
if(SM.stat == DEAD)
SM.revive()
SM.loot.Cut() //no abusing strange reagent for farming unlimited resources
SM.loot.Cut() //no abusing Lazarus Reagent for farming unlimited resources
SM.visible_message("<span class='warning'>[SM] seems to rise from the dead!</span>")
if(iscarbon(M))
@@ -800,8 +800,8 @@
M.grab_ghost()
M.update_revive()
add_attack_logs(M, M, "Revived with strange reagent") //Yes, the logs say you revived yourself.
SSblackbox.record_feedback("tally", "players_revived", 1, "strange_reagent")
add_attack_logs(M, M, "Revived with lazarus reagent") //Yes, the logs say you revived yourself.
SSblackbox.record_feedback("tally", "players_revived", 1, "lazarus_reagent")
..()
/datum/reagent/medicine/mannitol
@@ -188,10 +188,10 @@
mix_message = "Tiny white crystals precipitate out of the solution."
mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'
/datum/chemical_reaction/strange_reagent
name = "Strange Reagent"
id = "strange_reagent"
result = "strange_reagent"
/datum/chemical_reaction/lazarus_reagent
name = "Lazarus Reagent"
id = "lazarus_reagent"
result = "lazarus_reagent"
required_reagents = list("omnizine" = 1, "holywater" = 1, "mutagen" = 1)
result_amount = 3
mix_message = "The substance begins moving on its own somehow."
@@ -200,7 +200,7 @@
name = "Life"
id = "life"
result = null
required_reagents = list("strange_reagent" = 1, "synthflesh" = 1, "blood" = 1)
required_reagents = list("lazarus_reagent" = 1, "synthflesh" = 1, "blood" = 1)
result_amount = 1
min_temp = T0C + 100
@@ -210,7 +210,7 @@
/datum/chemical_reaction/life/friendly
name = "Life (Friendly)"
id = "life_friendly"
required_reagents = list("strange_reagent" = 1, "synthflesh" = 1, "sugar" = 1)
required_reagents = list("lazarus_reagent" = 1, "synthflesh" = 1, "sugar" = 1)
/datum/chemical_reaction/life/friendly/on_reaction(datum/reagents/holder, created_volume)
chemical_mob_spawn(holder, rand(1, round(created_volume, 1)), "Life (friendly)", FRIENDLY_SPAWN)
@@ -183,7 +183,7 @@
name = "corgium"
id = "corgium"
result = null
required_reagents = list("nutriment" = 1, "colorful_reagent" = 1, "strange_reagent" = 1, "blood" = 1)
required_reagents = list("nutriment" = 1, "colorful_reagent" = 1, "lazarus_reagent" = 1, "blood" = 1)
result_amount = 3
min_temp = T0C + 100
@@ -196,7 +196,7 @@
name = "Flaptonium"
id = "flaptonium"
result = null
required_reagents = list("egg" = 1, "colorful_reagent" = 1, "chicken_soup" = 1, "strange_reagent" = 1, "blood" = 1)
required_reagents = list("egg" = 1, "colorful_reagent" = 1, "chicken_soup" = 1, "lazarus_reagent" = 1, "blood" = 1)
result_amount = 5
min_temp = T0C + 100
mix_message = "The substance turns an airy sky-blue and foams up into a new shape."
@@ -30,7 +30,7 @@
name = "Bee Explosion"
id = "beesplosion"
result = null
required_reagents = list("honey" = 1, "strange_reagent" = 1, "radium" = 1)
required_reagents = list("honey" = 1, "lazarus_reagent" = 1, "radium" = 1)
result_amount = 1
/datum/chemical_reaction/beesplosion/on_reaction(datum/reagents/holder, created_volume)
@@ -239,10 +239,10 @@
desc = "A reagent bottle. Contains Omnizine."
list_reagents = list("omnizine" = 50)
/obj/item/reagent_containers/glass/bottle/reagent/strange_reagent
name = "strange reagent bottle"
/obj/item/reagent_containers/glass/bottle/reagent/lazarus_reagent
name = "lazarus reagent bottle"
desc = "A bottle of glowing fluid."
list_reagents = list("strange_reagent" = 30)
list_reagents = list("lazarus_reagent" = 30)
////////////////////Traitor Poison Bottle//////////////////////////////