mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 15:45:05 +01:00
075de00420
## About The Pull Request This is was created because I found several rare and exciting canisters in game and then finding out there is no way to actually construct the vendor they belong to!... <img width="768" height="385" alt="image" src="https://github.com/user-attachments/assets/70261cea-daaf-41df-a212-21cef6d6bd0c" /> ### This PR: * Makes all noteable vendors constructable, if you have the canister. * Adds canisters to syndismokes, syndiechem, liberation station, magivend, shambler's juice and bombuddy * Replaces the old tptally random canisters spawner, with a variety of spawners weighted for power and split according to different themes. * Adds the new main canister spawner to maint. ### Spawner weights The random canister spawner from maintenance has a: * **93,5%** chance to spawn a common station vendor refill(with weights for wardrobes being somewhat reduced.) * **6%** chance to spawn a rare and special vendor refill. * **0.5%** chance to spawn a oddity level., super powerful vendor refill. ## Why It's Good For The Game One must never place a filled canister in maint if it isn't going to be constructed It's wrong to make promises you don't mean to keep. ## Changelog 🆑 add: Nearly all notable vendors are now constructable if you have the canister. add Added refill canisters for syndiesmokes, liberation station, magivend, bombuddy 3000, shambler's juice and syndichem. add: Random vending refill canisters now have a chance to spawn in maint. image: Robco Toolmaker and Centdrobe canisters have new sprites. /🆑
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
/obj/machinery/vending/cytopro
|
|
name = "\improper CytoPro"
|
|
desc = "For all your cytology needs!"
|
|
product_slogans = "Cloning? Don't be ridiculous.;Don't be uncultured, get some cells growing!;Who needs farms when we got vats?"
|
|
product_ads = "Grow your own little creatures!;Biology, at your fingertips!"
|
|
icon_state = "cytopro"
|
|
icon_deny = "cytopro-deny"
|
|
panel_type = "panel2"
|
|
light_mask = "cytopro-light-mask"
|
|
products = list(
|
|
/obj/item/storage/bag/xeno = 5,
|
|
/obj/item/reagent_containers/condiment/protein = 10,
|
|
/obj/item/storage/box/swab = 3,
|
|
/obj/item/storage/box/petridish = 3,
|
|
/obj/item/storage/box/monkeycubes = 3,
|
|
/obj/item/biopsy_tool = 3,
|
|
/obj/item/clothing/under/rank/rnd/scientist = 5,
|
|
/obj/item/clothing/suit/toggle/labcoat/science = 5,
|
|
/obj/item/clothing/suit/bio_suit/scientist = 3,
|
|
/obj/item/clothing/head/bio_hood/scientist = 3,
|
|
/obj/item/reagent_containers/dropper = 5,
|
|
/obj/item/reagent_containers/syringe = 5,
|
|
/obj/item/petri_dish/random = 6,
|
|
)
|
|
contraband = list(
|
|
/obj/item/knife/kitchen = 3,
|
|
)
|
|
refill_canister = /obj/item/vending_refill/cytopro
|
|
default_price = PAYCHECK_CREW * 1
|
|
extra_price = PAYCHECK_COMMAND * 0.5
|
|
payment_department = ACCOUNT_SCI
|
|
|
|
/obj/item/vending_refill/cytopro
|
|
machine_name = "CytoPro"
|
|
icon_state = "refill_plant"
|