mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-18 19:44:58 +01:00
Ethereal Drink Charge Fix (#94108)
## About The Pull Request At some point, ethereal charge drain was reworked/balanced, but the three drinks that gave them charge never got their values changed. This pr makes sure voltaic wine and equivalents no longer require drinking generally unhealthy amounts to be able to charge oneself. ## Why It's Good For The Game Being unable to use the neat effect of your species' only drinks without killing your liver sucks. ## Changelog 🆑 WebcomicArtist qol: Ethereal Drinks (Voltaic wine,telepole,pod tesla) now can feed etherials decently without needing them to risk blacking out. /🆑
This commit is contained in:
@@ -2637,7 +2637,7 @@
|
||||
var/mob/living/carbon/exposed_carbon = exposed_mob
|
||||
var/obj/item/organ/stomach/ethereal/stomach = exposed_carbon.get_organ_slot(ORGAN_SLOT_STOMACH)
|
||||
if(istype(stomach))
|
||||
stomach.adjust_charge(reac_volume * 5 * ETHEREAL_DISCHARGE_RATE)
|
||||
stomach.adjust_charge(reac_volume * 10 * ETHEREAL_DISCHARGE_RATE)
|
||||
|
||||
/datum/reagent/consumable/ethanol/telepole
|
||||
name = "Telepole"
|
||||
@@ -2657,7 +2657,7 @@
|
||||
var/mob/living/carbon/exposed_carbon = exposed_mob
|
||||
var/obj/item/organ/stomach/ethereal/stomach = exposed_carbon.get_organ_slot(ORGAN_SLOT_STOMACH)
|
||||
if(istype(stomach))
|
||||
stomach.adjust_charge(reac_volume * 10 * ETHEREAL_DISCHARGE_RATE)
|
||||
stomach.adjust_charge(reac_volume * 20 * ETHEREAL_DISCHARGE_RATE)
|
||||
|
||||
/datum/reagent/consumable/ethanol/pod_tesla
|
||||
name = "Pod Tesla"
|
||||
|
||||
Reference in New Issue
Block a user