diff --git a/code/game/gamemodes/handofgod/structures.dm b/code/game/gamemodes/handofgod/structures.dm index 3ac0165bbb2..ed4264e5fe6 100644 --- a/code/game/gamemodes/handofgod/structures.dm +++ b/code/game/gamemodes/handofgod/structures.dm @@ -217,7 +217,7 @@ /obj/structure/divine/nexus name = "nexus" - desc = "It anchors a deity to this world. It radiates an unusual aura. Cultists protect this at all costs. It looks well protected from explosion shock." + desc = "It anchors a deity to this world. It radiates an unusual aura. Cultists protect this at all costs. It looks well protected from explosive shock." icon_state = "nexus" health = 500 maxhealth = 500 @@ -399,7 +399,7 @@ user.reagents.add_reagent("hell_water",20) else user << "The water feels warm and soothing as you touch it. The fountain immediately dries up shortly afterwards." - user.reagents.add_reagent("doctorsdelight",20) + user.reagents.add_reagent("godblood",20) update_icons() spawn(time_between_uses) if(src) diff --git a/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm b/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm index 747ba7e0dd6..94346077361 100644 --- a/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents/Other-Reagents.dm @@ -240,6 +240,12 @@ M.adjustBrainLoss(5) holder.remove_reagent(src.id, 1) +/datum/reagent/medicine/omnizine/godblood + name = "Godblood" + id = "godblood" + description = "Slowly heals all damage types. Has a rather high overdose threshold. Glows with mysterious power." + overdose_threshold = 150 + /datum/reagent/lube name = "Space Lube" id = "lube" @@ -1044,4 +1050,4 @@ if(O.type == /obj/item/clothing/shoes/galoshes) var/t_loc = get_turf(O) qdel(O) - new /obj/item/clothing/shoes/galoshes/dry(t_loc) \ No newline at end of file + new /obj/item/clothing/shoes/galoshes/dry(t_loc)