Nerfs Poultices (#30110)

This commit is contained in:
PollardTheDragon
2025-09-02 05:48:06 +00:00
committed by GitHub
parent e1f42f4673
commit f0ddf0a4ba
2 changed files with 8 additions and 4 deletions
@@ -256,8 +256,12 @@
/obj/structure/stone_tile/cracked{
dir = 4
},
/obj/item/seeds/comfrey,
/obj/item/seeds/aloe,
/obj/item/seeds/comfrey{
potency = 40
},
/obj/item/seeds/aloe{
potency = 40
},
/turf/simulated/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered/ash_walkers)
"aN" = (
+2 -2
View File
@@ -25,7 +25,7 @@
return ITEM_INTERACT_COMPLETE
var/obj/item/stack/medical/bruise_pack/comfrey/C = new(get_turf(user))
C.heal_brute = seed.potency
C.heal_brute = seed.potency / 4
to_chat(user, "<span class='notice'>You mash [src] into a poultice.</span>")
user.drop_item()
qdel(src)
@@ -56,7 +56,7 @@
return ITEM_INTERACT_COMPLETE
var/obj/item/stack/medical/ointment/aloe/A = new(get_turf(user))
A.heal_burn = seed.potency
A.heal_burn = seed.potency / 4
to_chat(user, "<span class='notice'>You mash [src] into a poultice.</span>")
user.drop_item()
qdel(src)