Rebalances Ethereal "eating" (#17022)

* Makes ethereal easier to charge

* no longer start full charge

* changes it to use ETHEREAL_CHARGE_SCALING_MULTIPLIER
This commit is contained in:
Molti
2022-12-17 08:52:16 -06:00
committed by GitHub
parent e7bb610ddd
commit 2b8cd07f6f
6 changed files with 7 additions and 7 deletions

View File

@@ -29,7 +29,7 @@
var/mob/living/carbon/human/H = C
var/obj/item/organ/stomach/ethereal/stomach = H.getorganslot(ORGAN_SLOT_STOMACH)
if(istype(stomach))
stomach.adjust_charge(20)
stomach.adjust_charge(10 * ETHEREAL_CHARGE_SCALING_MULTIPLIER)
to_chat(C,span_notice("You get charged by [src]."))
//yogstation edit end ---------------------------------------------