-
-
Notifications
You must be signed in to change notification settings - Fork 444
/
Copy pathtablet_presets.dm
75 lines (66 loc) · 3.74 KB
/
tablet_presets.dm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// This is literally the worst possible cheap tablet
/obj/item/modular_computer/tablet/preset/cheap
desc = "A low-end tablet often seen among low ranked station personnel."
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer/micro,
/obj/item/computer_hardware/hard_drive/small/pda,
/obj/item/computer_hardware/network_card,
/obj/item/computer_hardware/card_slot)
// Alternative version, an average one, for higher ranked positions mostly
/obj/item/modular_computer/tablet/preset/advanced
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive/small/pda,
/obj/item/computer_hardware/network_card,
/obj/item/computer_hardware/card_slot,
/obj/item/computer_hardware/printer/mini)
/obj/item/modular_computer/tablet/preset/cargo
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive/small/pda,
/obj/item/computer_hardware/network_card,
/obj/item/computer_hardware/card_slot,
/obj/item/computer_hardware/printer/mini)
/obj/item/modular_computer/tablet/preset/advanced/atmos //This will be defunct and will be replaced when NtOS PDAs are fully implemented
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive/small/pda,
/obj/item/computer_hardware/network_card,
/obj/item/computer_hardware/card_slot,
/obj/item/computer_hardware/printer/mini,
/obj/item/computer_hardware/sensorpackage)
/obj/item/modular_computer/tablet/preset/advanced/command
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive/small/pda,
/obj/item/computer_hardware/network_card,
/obj/item/computer_hardware/card_slot,
/obj/item/computer_hardware/printer/mini,
/obj/item/computer_hardware/card_slot/secondary)
/// A simple syndicate tablet, used for comms agents
/obj/item/modular_computer/tablet/preset/syndicate
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive/small/syndicate,
/obj/item/computer_hardware/network_card/advanced,
/obj/item/computer_hardware/card_slot,
/obj/item/computer_hardware/printer/mini)
finish_color = "crimson"
/// Given by the syndicate as part of the contract uplink bundle - loads in the Contractor Uplink.
/obj/item/modular_computer/tablet/syndicate_contract_uplink/preset/uplink
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive/small/syndicate,
/obj/item/computer_hardware/network_card,
/obj/item/computer_hardware/card_slot,
/obj/item/computer_hardware/printer/mini)
starting_files = list(new /datum/computer_file/program/contract_uplink)
initial_program = /datum/computer_file/program/contract_uplink
/// Given to Nuke Ops members.
/obj/item/modular_computer/tablet/nukeops
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive/small/nukeops,
/obj/item/computer_hardware/network_card)
starting_files = list(new /datum/computer_file/program/radar/fission360)
initial_program = /datum/computer_file/program/radar/fission360