mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-10 01:49:19 +00:00
13 lines
464 B
Plaintext
13 lines
464 B
Plaintext
/obj/item/reagent_containers/borghypo/borgshaker/beershaker/Initialize()
|
|
var/list/extra_reagents = list(
|
|
/datum/reagent/consumable/ethanol/amaretto,
|
|
/datum/reagent/consumable/ethanol/applejack,
|
|
/datum/reagent/consumable/ethanol/curacao,
|
|
/datum/reagent/consumable/ethanol/hcider,
|
|
/datum/reagent/consumable/ethanol/navy_rum,
|
|
/datum/reagent/consumable/ethanol/sake,
|
|
/datum/reagent/consumable/ethanol
|
|
)
|
|
LAZYADD(reagent_ids, extra_reagents)
|
|
. = ..()
|