Files
Bubberstation/code/modules/vending/modularpc.dm
Mickyan e75704e0ea Vending machine panel icon reorganization (#62256)
Removes a bunch of duplicated sprites by making it so vending machines can share the same panel overlay where applicable.

Every single vending machine in the game had a unique copy pasted panel icon because one line of code said you need to do that.
2021-10-28 19:08:04 -03:00

39 lines
1.5 KiB
Plaintext

/obj/machinery/vending/modularpc
name = "\improper Deluxe Silicate Selections"
desc = "All the parts you need to build your own custom pc."
icon_state = "modularpc"
icon_deny = "modularpc-deny"
panel_type = "panel21"
light_mask = "modular-light-mask"
product_ads = "Get your gamer gear!;The best GPUs for all of your space-crypto needs!;The most robust cooling!;The finest RGB in space!"
vend_reply = "Game on!"
products = list(
/obj/item/modular_computer/laptop = 4,
/obj/item/modular_computer/tablet = 4,
/obj/item/computer_hardware/hard_drive = 4,
/obj/item/computer_hardware/hard_drive/small = 4,
/obj/item/computer_hardware/network_card = 8,
/obj/item/computer_hardware/hard_drive/portable = 8,
/obj/item/computer_hardware/battery = 8,
/obj/item/stock_parts/cell/computer = 8,
/obj/item/computer_hardware/processor_unit = 4,
/obj/item/computer_hardware/processor_unit/small = 4,
/obj/item/computer_hardware/sensorpackage = 4
)
premium = list(
/obj/item/computer_hardware/card_slot = 2,
/obj/item/computer_hardware/ai_slot = 2,
/obj/item/computer_hardware/printer/mini = 2,
/obj/item/computer_hardware/recharger/apc_recharger = 2,
/obj/item/paicard = 2,
/obj/item/computer_hardware/radio_card = 1
)
refill_canister = /obj/item/vending_refill/modularpc
default_price = PAYCHECK_MEDIUM
extra_price = PAYCHECK_HARD
payment_department = ACCOUNT_SCI
/obj/item/vending_refill/modularpc
machine_name = "Deluxe Silicate Selections"
icon_state = "refill_engi"