mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Cult tomes can't be destroyed with ethanol
This commit is contained in:
@@ -842,18 +842,18 @@ datum
|
|||||||
description = "Sterilizes wounds in preparation for surgery."
|
description = "Sterilizes wounds in preparation for surgery."
|
||||||
reagent_state = LIQUID
|
reagent_state = LIQUID
|
||||||
color = "#C8A5DC" // rgb: 200, 165, 220
|
color = "#C8A5DC" // rgb: 200, 165, 220
|
||||||
|
|
||||||
//makes you squeaky clean
|
//makes you squeaky clean
|
||||||
reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)
|
reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)
|
||||||
if (method == TOUCH)
|
if (method == TOUCH)
|
||||||
M.germ_level -= min(volume*20, M.germ_level)
|
M.germ_level -= min(volume*20, M.germ_level)
|
||||||
|
|
||||||
reaction_obj(var/obj/O, var/volume)
|
reaction_obj(var/obj/O, var/volume)
|
||||||
O.germ_level -= min(volume*20, O.germ_level)
|
O.germ_level -= min(volume*20, O.germ_level)
|
||||||
|
|
||||||
reaction_turf(var/turf/T, var/volume)
|
reaction_turf(var/turf/T, var/volume)
|
||||||
T.germ_level -= min(volume*20, T.germ_level)
|
T.germ_level -= min(volume*20, T.germ_level)
|
||||||
|
|
||||||
/* reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)
|
/* reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)
|
||||||
src = null
|
src = null
|
||||||
if (method==TOUCH)
|
if (method==TOUCH)
|
||||||
@@ -1332,7 +1332,7 @@ datum
|
|||||||
if(!M) M = holder.my_atom
|
if(!M) M = holder.my_atom
|
||||||
if(ishuman(M))
|
if(ishuman(M))
|
||||||
var/mob/living/carbon/human/H = M
|
var/mob/living/carbon/human/H = M
|
||||||
|
|
||||||
//Peridaxon is hard enough to get, it's probably fair to make this all internal organs
|
//Peridaxon is hard enough to get, it's probably fair to make this all internal organs
|
||||||
for(var/datum/organ/internal/I in H.internal_organs)
|
for(var/datum/organ/internal/I in H.internal_organs)
|
||||||
if(I.damage > 0)
|
if(I.damage > 0)
|
||||||
@@ -3050,6 +3050,9 @@ datum
|
|||||||
paperaffected.clearpaper()
|
paperaffected.clearpaper()
|
||||||
usr << "The solution dissolves the ink on the paper."
|
usr << "The solution dissolves the ink on the paper."
|
||||||
if(istype(O,/obj/item/weapon/book))
|
if(istype(O,/obj/item/weapon/book))
|
||||||
|
if(istype(O,/obj/item/weapon/book/tome))
|
||||||
|
usr << "The solution does nothing. Whatever this is, it isn't normal ink."
|
||||||
|
return
|
||||||
if(volume >= 5)
|
if(volume >= 5)
|
||||||
var/obj/item/weapon/book/affectedbook = O
|
var/obj/item/weapon/book/affectedbook = O
|
||||||
affectedbook.dat = null
|
affectedbook.dat = null
|
||||||
|
|||||||
Reference in New Issue
Block a user