mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-30 02:52:30 +00:00
* Clean some small details on most vending machine product lists. * Update code/modules/vending/engivend.dm * Update code/modules/vending/games.dm * Update wardrobes.dm Co-authored-by: GuillaumePrata <55374212+GuillaumePrata@users.noreply.github.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
19 lines
625 B
Plaintext
19 lines
625 B
Plaintext
//This one's from bay12
|
|
/obj/machinery/vending/plasmaresearch
|
|
name = "\improper Bombuddy 3000"
|
|
desc = "All the fine parts you need in one vending machine!"
|
|
products = list(
|
|
/obj/item/assembly/igniter = 6,
|
|
/obj/item/assembly/prox_sensor = 6,
|
|
/obj/item/assembly/signaler = 6,
|
|
/obj/item/assembly/timer = 6,
|
|
/obj/item/clothing/head/bio_hood = 6,
|
|
/obj/item/clothing/suit/bio_suit = 6,
|
|
/obj/item/clothing/under/rank/rnd/scientist = 6,
|
|
/obj/item/transfer_valve = 6,
|
|
)
|
|
contraband = list(/obj/item/assembly/health = 3)
|
|
default_price = PAYCHECK_CREW
|
|
extra_price = PAYCHECK_CREW
|
|
payment_department = ACCOUNT_SCI
|