mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-20 18:47:20 +01:00
Renames Strange Reagent to Lazarus Reagent (#20614)
* the great renamining also changes the description to be more flavorful * capitalization
This commit is contained in:
@@ -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//////////////////////////////
|
||||
|
||||
|
||||
Reference in New Issue
Block a user