|
23 | 23 | var/network = "ss13" |
24 | 24 | var/obj/machinery/camera/current = null |
25 | 25 |
|
26 | | - // Used as currency to purchase different abilities |
| 26 | + ///Used as currency to purchase different abilities |
27 | 27 | var/ram = 100 |
28 | 28 | var/list/software = list() |
29 | | - // The DNA string of our assigned user |
| 29 | + ///The DNA string of our assigned user |
30 | 30 | var/userDNA |
31 | | - // The card we inhabit |
| 31 | + ///The card we inhabit |
32 | 32 | var/obj/item/computer_hardware/paicard/card |
33 | | - //Are we hacking a door? |
| 33 | + ///Are we hacking a door? |
34 | 34 | var/hacking = FALSE |
35 | 35 |
|
36 | 36 | var/speakStatement = "states" |
37 | 37 | var/speakExclamation = "declares" |
38 | 38 | var/speakDoubleExclamation = "alarms" |
39 | 39 | var/speakQuery = "queries" |
40 | 40 |
|
41 | | - // The cable we produce and use when door or camera jacking |
| 41 | + ///The cable we produce and use when door or camera jacking |
42 | 42 | var/obj/item/pai_cable/cable |
43 | 43 |
|
44 | | - // Name of the one who commands us |
| 44 | + ///Name of the one who commands us |
45 | 45 | var/master |
46 | | - // DNA string for owner verification |
| 46 | + ///DNA string for owner verification |
47 | 47 | var/master_dna |
48 | 48 |
|
49 | 49 | // Various software-specific vars |
50 | 50 |
|
51 | | - // The airlock being hacked |
| 51 | + ///The airlock being hacked |
52 | 52 | var/obj/machinery/door/hackdoor |
53 | | - // Possible values: 0 - 100, >= 100 means the hack is complete and will be reset upon next check |
| 53 | + ///Possible values: 0 - 100, >= 100 means the hack is complete and will be reset upon next check |
54 | 54 | var/hackprogress = 0 |
55 | 55 |
|
56 | | - /// Remote signaler |
| 56 | + ///Remote signaler |
57 | 57 | var/obj/item/assembly/signaler/internal/signaler |
58 | 58 |
|
59 | 59 | var/obj/item/instrument/piano_synth/internal_instrument |
60 | | - //pAI Newscaster |
| 60 | + ///pAI Newscaster |
61 | 61 | var/obj/machinery/newscaster |
62 | | - //pAI healthanalyzer |
| 62 | + ///pAI healthanalyzer |
63 | 63 | var/obj/item/healthanalyzer/hostscan |
64 | 64 |
|
65 | | - //Whether the pAI has bought the encryption slot module or not |
| 65 | + ///Whether the pAI has bought the encryption slot module or not |
66 | 66 | var/encryptmod = FALSE |
67 | 67 | var/holoform = FALSE |
68 | | - //Can pAI use their holoprojector? |
| 68 | + ///Can pAI use their holoprojector? |
69 | 69 | var/canholo = TRUE |
70 | | - //Can pAI transmit radio messages? |
| 70 | + ///Can pAI transmit radio messages? |
71 | 71 | var/can_transmit = TRUE |
72 | | - //Can pAI receive radio messages? |
| 72 | + ///Can pAI receive radio messages? |
73 | 73 | var/can_receive = TRUE |
74 | 74 | var/obj/item/card/id/access_card = new /obj/item/card/id |
75 | 75 | var/chassis = "repairbot" |
|
0 commit comments