-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenglish.lua
More file actions
1916 lines (1688 loc) · 56.9 KB
/
english.lua
File metadata and controls
1916 lines (1688 loc) · 56.9 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--[[-------------------------------------------------------------------------
Language: English
Date: 15.02.2021
Translated by: danx91 (aka ZGFueDkx)
---------------------------------------------------------------------------]]
local lang = {}
--[[-------------------------------------------------------------------------
NRegistry
---------------------------------------------------------------------------]]
lang.NRegistry = {
scpready = "You can be selected as SCP in next round",
scpwait = "You have to wait %i rounds to be able to play as SCP",
abouttostart = "Game will start in %i seconds!",
kill = "You received %d points for killing %s: %s!",
assist = "You received %d points for assisting in kill of player: %s!",
rdm = "You lost %d points for killing %s: %s!",
acc_denied = "Access denied",
acc_granted = "Access granted",
acc_omnitool = "An Omnitool is required to operate this door",
device_noomni = "An Omnitool is required to operate this device",
elevator_noomni = "An Omnitool is required to operate this elevator",
acc_wrong = "Higher clearance level is required to perform this action",
rxpspec = "You received %i experience for playing on this server!",
rxpplay = "You received %i experience for staying alive in the round!",
rxpplus = "You received %i experience for surviving more than half of the round!",
roundxp = "You received %i experience for your points",
gateexplode = "Time to Gate A explosion: %i",
explodeterminated = "Gate A destruction has been terminated",
r106used = "SCP 106 recontain procedure can be triggered only once per round",
r106eloiid = "Power down ELO-IID electromagnet in order to start SCP 106 recontain procedure",
r106sound = "Enable sound transmission in order to start SCP 106 recontain procedure",
r106human = "Alive human is required in cage in order to start SCP 106 recontain procedure",
r106already = "SCP 106 is already recontained",
r106success = "You received %i points for recontaining SCP 106!",
vestpickup = "You picked up vest",
vestdrop = "You dropped your vest",
hasvest = "You already has vest! Use your EQ to drop it",
escortpoints = "You received %i points for escorting your allies",
femur_act = "Femur Breaker activated...",
levelup = "You leveled up! Your current level: %i",
healplayer = "You received %i points for healing other player",
detectscp = "You received %i points for detecting SCPs",
winxp = "You received %i experience because your initial team won the game",
winalivexp = "You received %i experience because your team won the game",
upgradepoints = "You received new upgrade point(s)! Press '%s' to open SCP upgrade menu",
prestigeup = "Player %s earned higher prestige! Their current prestige level: %i",
omega_detonation = "OMEGA Warhead detonation in %i seconds. Get on the surface or proceed to the blast shelter immediately!",
alpha_detonation = "ALPHA Warhead detonation in %i seconds. Get in the facility or proceed to the evacuation immediately!",
alpha_card = "You've inserted ALPHA Warhead nuclear card",
destory_scp = "You received %i points for destroying SCP object!",
afk = "You are AFK. You will not spawn and receive XP over time!",
afk_end = "You are no longer AFK",
overload_cooldown = "Wait %i seconds to overload this door!",
advanced_overload = "This door seems to be stronger! Try again in %i seconds",
lockdown_once = "Facility lockdown can be activated only once per round!",
}
lang.NFailed = "Failed to access NRegistry with key: %s"
--[[-------------------------------------------------------------------------
NCRegistry
---------------------------------------------------------------------------]]
lang.NCRegistry = {
escaped = "You escaped!",
escapeinfo = "Good job! You escaped in %s",
escapexp = "You received %i experience",
escort = "You have been escorted!",
roundend = "Round ended!",
nowinner = "No winner in this round!",
roundnep = "Not enough players!",
roundwin = "Round winner: %s",
roundwinmulti = "Round winners: [RAW]",
shelter_escape = "You survived explosion in blast shelter",
alpha_escape = "You escaped before warhead exploded",
mvp = "Most points: %s with %i points",
stat_kill = "Players killed: %i",
stat_rdm = "RDM kills: %i",
stat_rdmdmg = "RDM damage: %i",
stat_dmg = "Damage dealt: %i",
stat_bleed = "Bleeding damage: %i",
stat_106recontain = "SCP 106 has been recontained",
stat_escapes = "Escaped players: %i",
stat_escorts = "Players escorted: %i",
stat_023 = "Sudden deaths caused by SCP 023: %i",
stat_049 = "Infected people: %i",
stat_066 = "Nice music played: %i",
stat_096 = "Player killed by SCP 096: %i",
stat_106 = "Teleported player to Pocket Dimension: %i",
stat_173 = "Broken neck: %i",
stat_457 = "Burned players: %i",
stat_682 = "Player killed by SCP 682",
stat_8602 = "Player nailed to the wall: %i",
stat_939 = "Loot from SCP 939: %i",
stat_966 = "Player slashed by SCP 966",
stat_3199 = "Deaths by SCP 3199: %i",
stat_24273 = "Player controlled by SCP 2427-3: %i",
stat_omega_warhead = "Omega warhead has been detonated",
stat_alpha_warhead = "Alpha warhead has been detonated",
}
lang.NCFailed = "Failed to access NCRegistry with key: %s"
--[[-------------------------------------------------------------------------
HUD
---------------------------------------------------------------------------]]
local hud = {}
lang.HUD = hud
hud.pickup = "Pick up"
hud.class = "Class"
hud.team = "Team"
hud.prestige_points = "Prestige Points"
hud.hp = "HP"
hud.stamina = "STAMINA"
hud.sanity = "SANITY"
hud.xp = "XP"
--[[-------------------------------------------------------------------------
EQ
---------------------------------------------------------------------------]]
lang.eq_lmb = "LMB - Select"
lang.eq_rmb = "RMB - Drop"
lang.eq_hold = "Hold LMB - Move item"
lang.eq_vest = "Vest"
lang.eq_key = "Press '%s' to open EQ"
lang.info = "Informations"
lang.author = "Author"
lang.mobility = "Mobility"
lang.weight = "Weight"
lang.protection = "Protection"
lang.weight_unit = "kg"
lang.eq_buttons = {
escort = "Escort",
gatea = "Destroy Gate A"
}
--[[-------------------------------------------------------------------------
Effects
---------------------------------------------------------------------------]]
local effects = {}
lang.EFFECTS = effects
effects.permanent = "perm"
effects.bleeding = "Bleeding"
effects.doorlock = "Door Lock"
effects.amnc227 = "AMN-C227"
effects.insane = "Insane"
effects.gas_choke = "Choking"
effects.radiation = "Radiation"
effects.deep_wounds = "Deep Wounds"
effects.heavy_bleeding = "Heavy Bleeding"
effects.weak_bleeding = "Weak Bleeding"
--[[-------------------------------------------------------------------------
Class viewer
---------------------------------------------------------------------------]]
lang.classviewer = "Class Viewer"
lang.preview = "Preview"
lang.random = "Random"
lang.price = "Price"
lang.buy = "Buy"
lang.refound = "Refund"
lang.none = "None"
lang.refounded = "All removed classes has been refunded. You've recived %d prestige points."
lang.details = {
details = "Details",
name = "Name",
team = "Team",
price = "Prestige Points price",
walk_speed = "Walk Speed",
run_speed = "Run Speed",
chip = "Access Chip",
persona = "Fake ID",
weapons = "Weapons",
class = "Class",
hp = "Health",
speed = "Speed",
health = "Health",
sanity = "Sanity"
}
lang.headers = {
support = "SUPPORT",
classes = "CLASSES",
scp = "SCPs"
}
lang.view_cat = {
classd = "Class D",
sci = "Scientists",
mtf = "Security",
mtf_ntf = "MTF Epsilon-11",
mtf_alpha = "MTF Alpha-1",
ci = "Chaos Insurgency",
}
--[[-------------------------------------------------------------------------
Settings
---------------------------------------------------------------------------]]
lang.settings = {
settings = "Gamemode settings",
none = "NONE",
press_key = "> Press a key <",
client_reset = "Reset Client Settings to Defaults",
server_reset = "Reset Server Settings to Defaults",
client_reset_desc = "You are about to reset your ALL setting in this gamemode.\nThis action cannot be undone!",
server_reset_desc = "Due to security reasons you cannot reset server settings here.\nTo reset server to default settings, enter 'slc_factory_reset' in server console and follow instructions.\nBe careful this action cannot be undone and will reset EVERYTHING!",
popup_ok = "OK",
popup_cancel = "CANCEL",
popup_continue = "CONTINUE",
panels = {
binds = "Keybinds",
reset = "Reset Gamemode",
cvars = "ConVars Editor",
},
binds = {
eq_button = "Equipment",
upgrade_tree_button = "SCP Upgrade Tree",
ppshop_button = "Class Viewer",
settings_button = "Gamemode Settings",
scp_special = "SCP Special Ability"
}
}
lang.gamemode_config = {
loading = "Loading...",
categories = {
general = "General",
round = "Round",
xp = "XP",
support = "Support",
warheads = "Warheads",
afk = "AFK",
time = "Time",
premium = "Premium",
scp = "SCP",
}
}
--[[-------------------------------------------------------------------------
Scoreboard
---------------------------------------------------------------------------]]
lang.unconnected = "Unconnected"
lang.scoreboard = {
name = "Scoreboard",
playername = "Name",
ping = "Ping",
prestige = "Prestige",
level = "Level",
score = "Score",
ranks = "Ranks",
}
lang.ranks = {
author = "Author",
vip = "VIP",
tester = "Tester",
contributor = "Contributor",
translator = "Translator",
}
--[[-------------------------------------------------------------------------
Upgrades
---------------------------------------------------------------------------]]
lang.upgrades = {
tree = "%s UPGRADE TREE",
points = "Points",
cost = "Cost",
owned = "Owned",
requiresall = "Requires",
requiresany = "Requires any",
blocked = "Blocked by"
}
--[[-------------------------------------------------------------------------
SCP HUD
---------------------------------------------------------------------------]]
local scp_hud = {}
lang.SCPHUD = scp_hud
scp_hud.skill_not_ready = "Skill is not ready yet!"
scp_hud.skill_cant_use = "Skill can't be used now!"
--[[-------------------------------------------------------------------------
Info screen
---------------------------------------------------------------------------]]
lang.info_screen = {
subject = "Subject",
class = "Class",
team = "Team",
status = "Status",
objectives = "Objectives",
details = "Details",
registry_failed = "info_screen_registry failed"
}
lang.info_screen_registry = {
escape_time = "You escaped in %s minutes",
escape_xp = "You received %s experience",
escape1 = "You escaped from facility",
escape2 = "You escaped during warhead countdown",
escape3 = "You survived in blast shelter",
escorted = "You have been escorted",
killed_by = "You have been killed by: %s",
suicide = "You've commited suicide",
unknown = "Cause of your death is unknown",
hazard = "You have been killed by hazard",
alpha_mia = "Last known location: Surface",
omega_mia = "Last known location: Facility",
}
lang.info_screen_type = {
alive = "Alive",
escaped = "Escaped",
dead = "Deceased",
mia = "Missed in action",
unknown = "Unknown",
}
lang.info_screen_macro = {
time = function( args )
local t = tonumber( args[1] )
return t and string.ToMinutesSeconds( t ) or "--:--"
end
}
--[[-------------------------------------------------------------------------
Generic
---------------------------------------------------------------------------]]
lang.nothing = "Nothing"
lang.exit = "Exit"
--[[-------------------------------------------------------------------------
Misc
---------------------------------------------------------------------------]]
local misc = {}
lang.MISC = misc
misc.content_checker = {
title = "Gamemode Content",
msg = [[It looks like you don't have some addons. It may cause errors like missing content (textures/models/sounds) and may break your gameplay experience.
You don't have %i addons out of %i. Would you like to download it now? (you can either download it through game or do it manually on workshop page)]],
no = "No",
download = "Download now",
workshop = "Show workshop page",
downloading = "Downloading",
mounting = "Mounting",
idle = "Waiting for download...",
processing = "Processing addon: %s\nStatus: %s",
cancel = "Cancel"
}
misc.omega_warhead = {
idle = "OMEGA Warhead is idle\n\nWaiting for input...",
waiting = "OMEGA Warhead is idle\n\nInput accepted!\nWaiting for second input...",
failed = "OMEGA Warhead is locked\n\nNo second input detected!\nWait %is",
no_remote = "OMEGA Warhead failed\n\nFailed to establish connection to warhead!\t",
active = "OMEGA Warhead is engaged\n\nProceed to evacuation immediately!\nDetonation in %.2fs",
}
misc.alpha_warhead = {
idle = "ALPHA Warhead is idle\n\nWaiting for nuclear codes...",
ready = "ALPHA Warhead is idle\n\nCodes accepted!\nWaiting for activation...",
no_remote = "ALPHA Warhead failed\n\nFailed to establish connection to warhead!\t",
active = "ALPHA Warhead is engaged\n\nProceed to evacuation immediately!\nDetonation in %.2fs",
}
misc.buttons = {
MOUSE1 = "LMB",
MOUSE2 = "RMB",
MOUSE3 = "MMB",
}
--[[-------------------------------------------------------------------------
Vests
---------------------------------------------------------------------------]]
local vest = {}
lang.VEST = vest
vest.guard = "Security Guard Vest"
vest.heavyguard = "Heavy Guard Vest"
vest.specguard = "Specialist Guard Vest"
vest.guard_medic = "Medic Guard Vest"
vest.ntf = "MTF NTF Vest"
vest.mtf_medic = "MTF NTF Medic Vest"
vest.ntf_com = "MTF NTF Commander Vest"
vest.alpha1 = "MTF Alpha-1 Vest"
vest.ci = "Chaos Insurgency Vest"
vest.fire = "Fireproof Vest"
vest.electro = "Electroproof Vest"
local dmg = {}
lang.DMG = dmg
dmg.BURN = "Fire Damage"
dmg.SHOCK = "Electrical Damage"
dmg.BULLET = "Bullet Damage"
dmg.FALL = "Fall Damage"
--[[-------------------------------------------------------------------------
Teams
---------------------------------------------------------------------------]]
local teams = {}
lang.TEAMS = teams
teams.SPEC = "Spectators"
teams.CLASSD = "Class D"
teams.SCI = "Scientists"
teams.MTF = "MTF"
teams.CI = "CI"
teams.SCP = "SCP"
--[[-------------------------------------------------------------------------
Classes
---------------------------------------------------------------------------]]
local classes = {}
lang.CLASSES = classes
classes.unknown = "Unknown"
classes.SCP023 = "SCP 023"
classes.SCP049 = "SCP 049"
classes.SCP0492 = "SCP 049-2"
classes.SCP058 = "SCP 058"
classes.SCP066 = "SCP 066"
classes.SCP096 = "SCP 096"
classes.SCP106 = "SCP 106"
classes.SCP173 = "SCP 173"
classes.SCP457 = "SCP 457"
classes.SCP682 = "SCP 682"
classes.SCP8602 = "SCP 860-2"
classes.SCP939 = "SCP 939"
classes.SCP966 = "SCP 966"
classes.SCP3199 = "SCP 3199"
classes.SCP24273 = "SCP 2427-3"
classes.classd = "Class D"
classes.veterand = "Class D Veteran"
classes.kleptod = "Class D Kleptomaniac"
classes.ciagent = "CI Agent"
classes.sciassistant = "Scientist Assistant"
classes.sci = "Scientist"
classes.seniorsci = "Senior Scientist"
classes.headsci = "Head Scientist"
classes.guard = "Security Guard"
classes.chief = "Security Chief"
classes.lightguard = "Light Security Guard"
classes.heavyguard = "Heavy Security Guard"
classes.specguard = "Security Guard Specialist"
classes.guardmedic = "Security Guard Medic"
classes.tech = "Security Guard Technician"
classes.cispy = "CI Spy"
classes.ntf_1 = "MTF NTF - SMG"
classes.ntf_2 = "MTF NTF - Shotgun"
classes.ntf_3 = "MTF NTF - Rifle"
classes.ntfcom = "MTF NTF Commander"
classes.ntfsniper = "MTF NTF Sniper"
classes.ntfmedic = "MTF NTF Medic"
classes.alpha1 = "MTF Alpha-1"
classes.alpha1sniper = "MTF Alpha-1 Marksman"
classes.ci = "Chaos Insurgency"
classes.cicom = "Chaos Insurgency Commander"
local classes_id = {}
lang.CLASSES_ID = classes_id
classes_id.ntf_1 = "MTF NTF"
classes_id.ntf_2 = "MTF NTF"
classes_id.ntf_3 = "MTF NTF"
--[[-------------------------------------------------------------------------
Class Info - NOTE: Each line is limited to 48 characters!
Screen is designed to hold max of 5 lines of text and THERE IS NO internal protection!
Note that last (5th) line should be shorter to prevent text overlaping (about 38 characters)
---------------------------------------------------------------------------]]
local generic_classd = [[- Escape from the facility
- Avoid staff and SCP objects
- Cooperate with others]]
local generic_sci = [[- Escape from the facility
- Avoid Class D and SCP objects
- Cooperate with guards and MTFs]]
local generic_guard = [[- Rescue scientists
- Terminate all Class D and SCPs
- Listen to your supervisor]]
local generic_ntf = [[- Get to the facility
- Help the remaining staff inside
- Don't let Class D and SCPs escape]]
local generic_scp = [[- Escape from the facility
- Kill everyone you meet
- Cooperate with other SCPs]]
local generic_scp_friendly = [[- Escape from the facility
- You may cooperate with humans
- Cooperate with other SCPs]]
lang.CLASS_OBJECTIVES = {
classd = generic_classd,
veterand = generic_classd,
kleptod = generic_classd,
ciagent = [[- Escort Class D memebers
- Avoid staff and SCP objects
- Cooperate with others]],
sciassistant = generic_sci,
sci = generic_sci,
seniorsci = generic_sci,
headsci = generic_sci,
guard = generic_guard,
lightguard = generic_guard,
heavyguard = generic_guard,
specguard = generic_guard,
chief = [[- Rescue scientists
- Terminate all Class D and SCPs
- Give orders to other guards]],
guardmedic = [[- Rescue scientists
- Terminate all Class D and SCPs
- Support other guards with your medkit]],
tech = [[- Rescue scientists
- Terminate all Class D and SCPs
- Support other guards with your turret]],
cispy = [[- Pretend to be a guard
- Help remaining Class D Personnel
- Sabotage security actions]],
ntf_1 = generic_ntf,
ntf_2 = generic_ntf,
ntf_3 = generic_ntf,
ntfmedic = [[- Help the remaining staff inside
- Support other NTFs with your medkit
- Don't let Class D and SCPs escape]],
ntfcom = [[- Help the remaining staff inside
- Don't let Class D and SCPs escape
- Give orders to other NTFs]],
ntfsniper = [[- Help the remaining staff inside
- Don't let Class D and SCPs escape
- Protect your team from behind]],
alpha1 = [[- Protect foundation at all cost
- Stop SCPs and Class D
- You are authorized to ]].."[REDACTED]",
alpha1sniper = [[- Protect foundation at all cost
- Stop SCPs and Class D
- You are authorized to ]].."[REDACTED]",
ci = [[- Help Class D Personnel
- Eliminate all facility staff
- Listen to your supervisor]],
cicom = [[- Help Class D Personnel
- Eliminate all facility staff
- Give orders to other CIs]],
SCP023 = generic_scp,
SCP049 = [[- Escape from the facility
- Cooperate with other SCPs
- Cure people]],
SCP0492 = [[]],
SCP066 = generic_scp_friendly,
SCP058 = generic_scp,
SCP096 = generic_scp,
SCP106 = generic_scp,
SCP173 = generic_scp,
SCP457 = generic_scp,
SCP682 = generic_scp,
SCP8602 = generic_scp,
SCP939 = generic_scp,
SCP966 = generic_scp,
SCP24273 = generic_scp,
SCP3199 = generic_scp,
}
lang.CLASS_DESCRIPTION = {
classd = [[Difficulty: Easy
Toughness: Normal
Agility: Normal
Combat potential: Low
Can escape: Yes
Can escort: None
Escorted by: CI
Overview:
Basic class. Cooperate with others to face SCPs and facility staff. You can be escorted by CI memebers.
]],
veterand = [[Difficulty: Easy
Toughness: High
Agility: High
Combat potential: Normal
Can escape: Yes
Can escort: None
Escorted by: CI
Overview:
More advanced class. You have basic access in facility. Cooperate with others to face SCPs and facility staff. You can be escorted by CI memebers.
]],
kleptod = [[Difficulty: Hard
Toughness: Low
Agility: Very High
Combat potential: Low
Can escape: Yes
Can escort: None
Escorted by: CI
Overview:
High utility class. Starts with one random item. Cooperate with others to face SCPs and facility staff. You can be escorted by CI memebers.
]],
ciagent = [[Difficulty: Medium
Toughness: Very High
Agility: High
Combat potential: Normal
Can escape: No
Can escort: Class D
Escorted by: None
Overview:
Armed with taser CI unit. Provide help to Class D and cooperate with them. You can escort Class D memebers.
]],
sciassistant = [[Difficulty: Medium
Toughness: Normal
Agility: Normal
Combat potential: Low
Can escape: Yes
Can escort: None
Escorted by: Security, MTF
Overview:
Basic class. Cooperate with facility staff and stay away from SCPs. You can be escorted by MTFs memebers.
]],
sci = [[Difficulty: Medium
Toughness: Normal
Agility: Normal
Combat potential: Low
Can escape: Yes
Can escort: None
Escorted by: Security, MTF
Overview:
One of the scientists. Cooperate with facility staff and stay away from SCPs. You can be escorted by MTFs memebers.
]],
seniorsci = [[Difficulty: Easy
Toughness: High
Agility: High
Combat potential: Normal
Can escape: Yes
Can escort: None
Escorted by: Security, MTF
Overview:
One of the scientists. You have higher access level. Cooperate with facility staff and stay away from SCPs. You can be escorted by MTFs memebers.
]],
headsci = [[Difficulty: Easy
Toughness: High
Agility: High
Combat potential: Normal
Can escape: Yes
Can escort: None
Escorted by: Security, MTF
Overview:
Best of the scientists. You have higher utility and HP. Cooperate with facility staff and stay away from SCPs. You can be escorted by MTFs memebers.
]],
guard = [[Difficulty: Easy
Toughness: Normal
Agility: Normal
Combat potential: Normal
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
Basic security guard. Utilize your weapon and tools to help other staff members and to kill SCPs and Class D. You can escort Scientists.
]],
lightguard = [[Difficulty: Hard
Toughness: Low
Agility: Very High
Combat potential: Low
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
One of the guards. High utility, no armor and lower health. Utilize your weapon and tools to help other staff members and to kill SCPs and Class D. You can escort Scientists.
]],
heavyguard = [[Difficulty: Medium
Toughness: High
Agility: Low
Combat potential: High
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
One of the guards. Lower utility, better armor and higher health. Utilize your weapon and tools to help other staff members and to kill SCPs and Class D. You can escort Scientists.
]],
specguard = [[Difficulty: Hard
Toughness: High
Agility: Low
Combat potential: Very High
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
One of the guards. Not so high utility, higher health and strong combat potential. Utilize your weapon and tools to help other staff members and to kill SCPs and Class D. You can escort Scientists.
]],
chief = [[Difficulty: Easy
Toughness: Normal
Agility: Normal
Combat potential: Normal
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
One of the guards. Slightly better combat potential, has taser. Utilize your weapon and tools to help other staff members and to kill SCPs and Class D. You can escort Scientists.
]],
guardmedic = [[Difficulty: Hard
Toughness: High
Agility: High
Combat potential: Low
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
One of the guards. You have medkit and taser. Utilize your weapon and tools to help other staff members and to kill SCPs and Class D. You can escort Scientists.
]],
tech = [[Difficulty: Hard
Toughness: Normal
Agility: Normal
Combat potential: High
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
One of the guards. Has placeable turret, with 3 fire modes (Hold E on turret to see its menu). Utilize your weapon and tools to help other staff members and to kill SCPs and Class D. You can escort Scientists.
]],
cispy = [[Difficulty: Very Hard
Toughness: Normal
Agility: High
Combat potential: Normal
Can escape: No
Can escort: Class D
Escorted by: None
Overview:
CI spy. High utility. Try to blend in Security Guards and help Class D.
]],
ntf_1 = [[Difficulty: Medium
Toughness: Normal
Agility: High
Combat potential: Normal
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF NTF Unit. Armed with SMG. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
ntf_2 = [[Difficulty: Medium
Toughness: Normal
Agility: High
Combat potential: Normal
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF NTF Unit. Armed with shotgun. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
ntf_3 = [[Difficulty: Medium
Toughness: Normal
Agility: High
Combat potential: Normal
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF NTF Unit. Armed with rifle. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
ntfmedic = [[Difficulty: Hard
Toughness: High
Agility: High
Combat potential: Low
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF NTF Unit. Armed with pistol, has medkit. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
ntfcom = [[Difficulty: Hard
Toughness: High
Agility: Very High
Combat potential: High
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF NTF Unit. Armed with marksman rifle. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
ntfsniper = [[Difficulty: Hard
Toughness: Normal
Agility: Normal
Combat potential: High
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF NTF Unit. Armed with sniper rifle. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
alpha1 = [[Difficulty: Medium
Toughness: Extreme
Agility: Very High
Combat potential: High
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF Alpha-1 Unit. Heavly armored, high utility unit, armed with rifle. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
alpha1sniper = [[Difficulty: Hard
Toughness: Very High
Agility: Very High
Combat potential: Very High
Can escape: No
Can escort: Scientists
Escorted by: None
Overview:
MTF Alpha-1 Unit. Heavly armored, high utility unit, armed with marksman rifle. Get into facility and secure it. Help staff inside and kill SCPs and Class D.
]],
ci = [[Difficulty: Medium
Toughness: High
Agility: High
Combat potential: Normal
Can escape: No
Can escort: Class D
Escorted by: None
Overview:
Chaos Insurgency unit. Get into facility and help Class D and kill facility staff.
]],
cicom = [[Difficulty: Medium
Toughness: Very High
Agility: High
Combat potential: High
Can escape: No
Can escort: Class D
Escorted by: None
Overview:
Chaos Insurgency unit. Higher combat potential. Get into facility, help Class D and kill facility staff.
]],
SCP023 = [[Difficulty: Hard
Toughness: Low
Agility: High
Damage: Instant Death
Overview:
You can walk through walls. If someone sees you, they will be put on your list. Once in a while you teleport to one player on list and burn them to death. You can place your clone.
]],
SCP049 = [[Difficulty: Hard
Toughness: Low
Agility: High
Damage: Instant Death after 3 attacks
Overview:
Attack player 3 times to kill them. You can create zombies out of bodies (reload key).
]],
SCP0492 = [[]],
SCP066 = [[Difficulty: Medium
Toughness: High
Agility: Normal
Damage: Low / AoE
Overview:
You play very loud music damaging all players near you.
]],
SCP058 = [[Difficulty: Medium
Toughness: Normal
Agility: Normal
Damage: Normal
Overview:
SCP with flexible playstyle. Can attack melee and shot. Has various upgrades which can add poison to attacks, modify shot attack or unlocks ability to explode.
]],
SCP096 = [[Difficulty: Hard
Toughness: High
Agility: Very Low / Extreme when enraged
Damage: Instant Death
Overview:
If someone sees you, you will become enraged. While in rage, you run extremely fast and you can kill your targets.
]],
SCP106 = [[Difficulty: Medium
Toughness: Normal
Agility: Low
Damage: Medium / Instant death in Pocket Dimension
Overview:
You can walk through walls. Attack somebody to teleport them to pocket dimension. While in pocket dimension you instantly kill your targets.
]],
SCP173 = [[Difficulty: Easy
Toughness: Extreme
Agility: Super Extreme
Damage: Instant Death
Overview:
You are extremely fast, but you can't move if someone sees you. You automatically kill nearby players. You can use special attack to teleport to one player in range.