mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-28 03:01:37 +00:00
This would've been multiple commits, but I kept forgetting to ACTUALLY commit things. Changes logged in the PR.
13 lines
498 B
Plaintext
13 lines
498 B
Plaintext
/obj/effect/proc_holder/changeling/glands
|
|
name = "Engorged Chemical Glands"
|
|
desc = "Our chemical glands swell, permitting us to store more chemicals inside of them."
|
|
helptext = "Allows us to store an extra 25 units of chemicals, and doubles production rate."
|
|
dna_cost = 2
|
|
chemical_cost = -1
|
|
|
|
/obj/effect/proc_holder/changeling/glands/on_purchase(var/mob/user)
|
|
..()
|
|
var/datum/changeling/changeling=user.mind.changeling
|
|
changeling.chem_storage += 25
|
|
changeling.chem_recharge_rate *=2
|
|
return |