mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-22 20:48:56 +01:00
* [MDB IGNORE] Removes tablet cartridges + reworks a ton more (#66505) - All tablets who previously had apps in a cartridge now has them built-into their tablet instead. This means it costs space for it. - Rebalances the sizes of several apps to help them fit on Command tablets (Cargo ordering costed 20!!) - Removes tablet cartridges, they've been reworked into a regular old portable disk (the same you use for toxins/borgs) - Removes Signaller (the module required to run the signaller app) from tablets (likely will remove more in the future) - Refactors the health/chem scanning app to not be as bad - Dehardcodes detomatix resistance - Ability to send PDA's to all is now tied to your access rather than a cartridge - Moves 'eject disk' button to the very top of the UI * [MDB IGNORE] Removes tablet cartridges + reworks a ton more * wew * wew * ok * Update nanotrasen_consultant.dm * Update nanotrasen_consultant.dm Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
27 lines
957 B
Plaintext
27 lines
957 B
Plaintext
//This one's from bay12
|
|
/obj/machinery/vending/cart
|
|
name = "\improper PTech"
|
|
desc = "Cartridges for PDAs."
|
|
product_slogans = "Carts to go!"
|
|
icon_state = "cart"
|
|
icon_deny = "cart-deny"
|
|
panel_type = "panel6"
|
|
products = list(
|
|
/obj/item/computer_hardware/hard_drive/portable/medical = 10,
|
|
/obj/item/computer_hardware/hard_drive/portable/engineering = 10,
|
|
/obj/item/computer_hardware/hard_drive/portable/security = 10,
|
|
/obj/item/computer_hardware/hard_drive/portable/ordnance = 10,
|
|
/obj/item/computer_hardware/hard_drive/portable/quartermaster = 10,
|
|
/obj/item/computer_hardware/hard_drive/portable/command/captain = 3,
|
|
/obj/item/modular_computer/tablet/pda/heads = 10,
|
|
)
|
|
refill_canister = /obj/item/vending_refill/cart
|
|
default_price = PAYCHECK_COMMAND
|
|
extra_price = PAYCHECK_COMMAND * 2.5
|
|
payment_department = ACCOUNT_SRV
|
|
light_mask="cart-light-mask"
|
|
|
|
/obj/item/vending_refill/cart
|
|
machine_name = "PTech"
|
|
icon_state = "refill_smoke"
|