forked from vgstation-coders/vgstation13
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiscellaneous.dm
More file actions
1145 lines (999 loc) · 35.2 KB
/
miscellaneous.dm
File metadata and controls
1145 lines (999 loc) · 35.2 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
/obj/item/clothing/under/pj/red
name = "red pj's"
desc = "Sleepwear."
icon_state = "red_pyjamas"
_color = "red_pyjamas"
item_state = "w_suit"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/pj/blue
name = "blue pj's"
desc = "Sleepwear."
icon_state = "blue_pyjamas"
_color = "blue_pyjamas"
item_state = "w_suit"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/captain_fly
name = "rogue captains uniform"
desc = "For the man who doesn't care because he's still free."
icon_state = "captain_fly"
item_state = "captain_fly"
_color = "captain_fly"
species_fit = list(VOX_SHAPED)
/obj/item/clothing/under/scratch
name = "white suit"
desc = "A white suit, suitable for an excellent host."
icon_state = "scratch"
item_state = "scratch"
_color = "scratch"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/sl_suit
desc = "It's a very amish looking suit."
name = "amish suit"
icon_state = "detective_noir"
_color = "sl_suit"
clothing_flags = ONESIZEFITSALL
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/sl_suit/armored
desc = "It's a very amish looking suit. This one has a tag. It says \"Gorlex\" in cursive."
name = "armored amish suit"
armor = list(melee = 15, bullet = 5, laser = 5, energy = 0, bomb = 5, bio = 0, rad = 0)
/obj/item/clothing/under/waiter
name = "waiter's outfit"
desc = "It's a very smart uniform with a special pocket for tip."
icon_state = "waiter"
item_state = "waiter"
_color = "waiter"
flags = FPRINT
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/rank/mailman
name = "mailman's jumpsuit"
desc = "<i>'Special delivery!'</i>"
icon_state = "mailman"
item_state = "b_suit"
_color = "mailman"
clothing_flags = ONESIZEFITSALL
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/sexyclown
name = "sexy-clown suit"
desc = "It makes you look HONKable!"
icon_state = "sexyclown"
item_state = "sexyclown"
_color = "sexyclown"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/lola
name = "fighting clown suit"
desc = "Give 'em the ol' one-two!"
icon_state = "lola"
item_state = "lola"
_color = "lola"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/rank/vice
name = "vice officer's jumpsuit"
desc = "It's the standard issue pretty-boy outfit, as seen on Holo-Vision."
icon_state = "vice"
item_state = "gy_suit"
_color = "vice"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/rank/centcom_officer
desc = "It's a jumpsuit worn by CentCom Officers."
name = "\improper CentCom officer's jumpsuit"
icon_state = "officer"
item_state = "g_suit"
_color = "officer"
species_fit = list(GREY_SHAPED)
/obj/item/clothing/under/rank/centcom_commander
desc = "It's a jumpsuit worn by CentCom's highest-tier Commanders."
name = "\improper CentCom officer's jumpsuit"
icon_state = "centcom"
item_state = "dg_suit"
_color = "centcom"
species_fit = list(GREY_SHAPED)
/obj/item/clothing/under/space
name = "\improper NASA jumpsuit"
desc = "It has a NASA logo on it and is made of space-proofed materials."
icon_state = "black"
item_state = "bl_suit"
_color = "black"
w_class = W_CLASS_LARGE//bulky item
gas_transfer_coefficient = 0.01
permeability_coefficient = 0.02
flags = FPRINT
heat_conductivity = INS_JUMPSUIT_HEAT_CONDUCTIVITY
/obj/item/clothing/under/acj
name = "administrative cybernetic jumpsuit"
icon_state = "syndicate"
item_state = "bl_suit"
_color = "syndicate"
desc = "It's a cybernetically enhanced jumpsuit used for administrative duties."
gas_transfer_coefficient = 0.01
permeability_coefficient = 0.01
flags = FPRINT
armor = list(melee = 100, bullet = 100, laser = 100,energy = 100, bomb = 100, bio = 100, rad = 100)
siemens_coefficient = 0
heat_conductivity = INS_JUMPSUIT_HEAT_CONDUCTIVITY
species_fit = list(GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/owl
name = "owl uniform"
desc = "A jumpsuit with owl wings. Photorealistic owl feathers! Twooooo!"
icon_state = "owl"
_color = "owl"
clothing_flags = ONESIZEFITSALL
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/johnny
name = "johnny~~ jumpsuit"
desc = "Johnny~~"
icon_state = "johnny"
_color = "johnny"
species_fit = list(GREY_SHAPED)
/obj/item/clothing/under/rainbow
name = "rainbow jumpsuit"
desc = "A fabulous jumpsuit."
icon_state = "rainbow"
item_state = "rainbow"
_color = "rainbow"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/cloud
name = "cloud"
desc = "cloud"
icon_state = "cloud"
_color = "cloud"
/obj/item/clothing/under/psysuit
name = "dark undersuit"
desc = "A thick, layered grey undersuit lined with power cables. Feels a little like wearing an electrical storm."
icon_state = "psysuit"
item_state = "psysuit"
_color = "psysuit"
species_fit = list(VOX_SHAPED)
/obj/item/clothing/under/gimmick/rank/captain/suit
name = "captain's suit"
desc = "A green suit and yellow necktie. Exemplifies authority."
icon_state = "green_suit"
item_state = "dg_suit"
_color = "green_suit"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/gimmick/rank/head_of_personnel/suit
name = "head of personnel's suit"
desc = "A teal suit and yellow necktie. An authoritative yet tacky ensemble."
icon_state = "teal_suit"
item_state = "g_suit"
_color = "teal_suit"
species_fit = list(GREY_SHAPED)
/obj/item/clothing/under/suit_jacket
name = "black suit"
desc = "A black suit and red tie. Very formal."
icon_state = "black_suit"
item_state = "bl_suit"
_color = "black_suit"
clothing_flags = ONESIZEFITSALL
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/suit_jacket/really_black
name = "executive suit"
desc = "A formal black suit and red tie, intended for the station's finest."
icon_state = "really_black_suit"
item_state = "bl_suit"
_color = "black_suit"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/suit_jacket/female
name = "executive suit"
desc = "A formal trouser suit for women, intended for the station's finest."
icon_state = "black_suit_fem"
item_state = "black_suit_fem"
_color = "black_suit_fem"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/suit_jacket/red
name = "red suit"
desc = "A red suit and blue tie. Somewhat formal."
icon_state = "red_suit"
item_state = "r_suit"
_color = "red_suit"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/blackskirt
name = "black skirt"
desc = "A black skirt, very fancy!"
icon_state = "blackskirt"
_color = "blackskirt"
body_parts_covered = FULL_TORSO|ARMS
species_fit = list(GREY_SHAPED, INSECT_SHAPED, VOX_SHAPED)
/obj/item/clothing/under/schoolgirl
name = "schoolgirl uniform"
desc = "It's just like one of my Japanese animes!"
icon_state = "schoolgirl"
item_state = "schoolgirl"
_color = "schoolgirl"
body_parts_covered = FULL_TORSO|ARMS
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/overalls
name = "laborer's overalls"
desc = "A set of durable overalls for getting the job done."
icon_state = "overalls"
item_state = "lb_suit"
_color = "overalls"
gender = PLURAL
species_fit = list(VOX_SHAPED, GREY_SHAPED)
/obj/item/clothing/under/pirate
name = "pirate outfit"
desc = "Yarr."
icon_state = "pirate"
item_state = "pirate"
_color = "pirate"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/soviet
name = "soviet uniform"
desc = "For the Motherland!"
icon_state = "soviet"
item_state = "soviet"
_color = "soviet"
species_fit = list(GREY_SHAPED, VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/redcoat
name = "redcoat uniform"
desc = "Looks old."
icon_state = "redcoat"
item_state = "redcoat"
_color = "redcoat"
species_fit = list(VOX_SHAPED)
/obj/item/clothing/under/kilt
name = "kilt"
desc = "Includes shoes and plaid."
icon_state = "kilt"
item_state = "kilt"
_color = "kilt"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/sexymime
name = "sexy mime outfit"
desc = "The only time when you DON'T enjoy looking at someone's rack."
icon_state = "sexymime"
item_state = "sexymime"
_color = "sexymime"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/gladiator
name = "gladiator uniform"
desc = "Are you not entertained? Is that not why you are here?"
icon_state = "gladiator"
item_state = "gladiator"
_color = "gladiator"
body_parts_covered = LOWER_TORSO|ARM_LEFT|HAND_LEFT
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
//dress
/obj/item/clothing/under/dress
body_parts_covered = FULL_TORSO|ARMS
/obj/item/clothing/under/dress/dress_fire
name = "flame dress"
desc = "A small black dress with blue flames print on it."
icon_state = "dress_fire"
_color = "dress_fire"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_green
name = "green dress"
desc = "A simple, tight fitting green dress."
icon_state = "dress_green"
_color = "dress_green"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_orange
name = "orange dress"
desc = "A fancy orange gown for those who like to show leg."
icon_state = "dress_orange"
_color = "dress_orange"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_pink
name = "pink dress"
desc = "A simple, tight fitting pink dress."
icon_state = "dress_pink"
_color = "dress_pink"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_yellow
name = "yellow dress"
desc = "A flirty, little yellow dress."
icon_state = "dress_yellow"
_color = "dress_yellow"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_saloon
name = "saloon girl dress"
desc = "A old western inspired gown for the girl who likes to drink."
icon_state = "dress_saloon"
_color = "dress_saloon"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_rd
name = "research director dress uniform"
desc = "Feminine fashion for the style concious RD."
icon_state = "dress_rd"
_color = "dress_rd"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_cap
name = "captain dress uniform"
desc = "Feminine fashion for the style concious captain."
icon_state = "dress_cap"
_color = "dress_cap"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_hop
name = "head of personal dress uniform"
desc = "Feminine fashion for the style concious HoP."
icon_state = "dress_hop"
_color = "dress_hop"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/dress/dress_hr
name = "human resources director uniform"
desc = "Superior class for the nosy H.R. Director."
icon_state = "huresource"
_color = "huresource"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/dress/plaid_blue
name = "blue plaid skirt"
desc = "A preppy blue skirt with a white blouse."
icon_state = "plaid_blue"
_color = "plaid_blue"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/dress/plaid_red
name = "red plaid skirt"
desc = "A preppy red skirt with a white blouse."
icon_state = "plaid_red"
_color = "plaid_red"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/dress/plaid_purple
name = "blue purple skirt"
desc = "A preppy purple skirt with a white blouse."
icon_state = "plaid_purple"
_color = "plaid_purple"
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
//wedding stuff
/obj/item/clothing/under/wedding
body_parts_covered = FULL_TORSO|LEGS|FEET|ARMS
/obj/item/clothing/under/wedding/bride_orange
name = "orange wedding dress"
desc = "A big and puffy orange dress."
icon_state = "bride_orange"
_color = "bride_orange"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/wedding/bride_purple
name = "purple wedding dress"
desc = "A big and puffy purple dress."
icon_state = "bride_purple"
_color = "bride_purple"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/wedding/bride_blue
name = "blue wedding dress"
desc = "A big and puffy blue dress."
icon_state = "bride_blue"
_color = "bride_blue"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/wedding/bride_red
name = "red wedding dress"
desc = "A big and puffy red dress."
icon_state = "bride_red"
_color = "bride_red"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/wedding/bride_white
name = "white wedding dress"
desc = "A white wedding gown made from the finest silk."
icon_state = "bride_white"
_color = "bride_white"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/sundress
name = "sundress"
desc = "Makes you want to frolic in a field of daisies."
icon_state = "sundress"
item_state = "sundress"
_color = "sundress"
body_parts_covered = FULL_TORSO
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/roman
name = "roman armor"
desc = "An ancient Roman armor. Made of metallic strips and leather straps."
icon_state = "roman"
_color = "roman"
item_state = "armor"
armor = list(melee = 25, bullet = 0, laser = 25, energy = 10, bomb = 10, bio = 0, rad = 0)
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/simonpants
name = "Simon's Pants"
desc = "Simon's pants, clad with belt and whatever the fuck that thing is around his neck."
icon_state = "simonpants"
_color = "simonpants"
item_state = "spants"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
gender = PLURAL
/obj/item/clothing/under/batmansuit
name = "batsuit"
desc = "You are the night."
icon_state = "bmuniform"
_color = "bmuniform"
/obj/item/clothing/under/officeruniform
name = "officer's uniform"
desc = "Bestraft die Juden fur ihre Verbrechen."
icon_state = "officeruniform"
item_state = "officeruniform"
_color = "officeruniform"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/soldieruniform
name = "soldier's uniform"
desc = "Bestraft die Verbundeten fur ihren Widerstand."
icon_state = "soldieruniform"
item_state = "soldieruniform"
_color = "soldieruniform"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/squatter_outfit
name = "slav squatter tracksuit"
desc = "Cyka blyat."
icon_state = "squatteroutfit"
item_state = "squatteroutfit"
_color = "squatteroutfit"
species_fit = list(GREY_SHAPED, VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/russobluecamooutfit
name = "russian blue camo"
desc = "Drop and give me dvadtsat!"
icon_state = "russobluecamo"
item_state = "russobluecamo"
_color = "russobluecamo"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/jester
name = "jester suit"
desc = "Only a fool would wear such a suit."
icon_state = "jester"
item_state = "jester"
_color = "jester"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/stilsuit
name = "stillsuit"
desc = "Designed to preserve bodymoisture."
icon_state = "stilsuit"
item_state = "stilsuit"
_color = "stilsuit"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/aviatoruniform
name = "aviator uniform"
desc = "Now you can look absolutely dashing!"
icon_state = "aviator_uniform"
item_state = "aviator_uniform"
_color = "aviator_uniform"
species_fit = list(INSECT_SHAPED)
species_restricted = list("exclude",VOX_SHAPED)
/obj/item/clothing/under/libertyshirt
name = "liberty shirt"
desc = "For any freedom loving patriot out there."
icon_state = "libertyshirt"
item_state = "libertyshirt"
_color = "libertyshirt"
species_fit = list(GREY_SHAPED, INSECT_SHAPED, VOX_SHAPED)
/obj/item/clothing/under/bikersuit
name = "biker's outfit"
icon_state = "biker"
item_state = "biker"
_color = "biker"
species_fit = list(GREY_SHAPED, VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/jacketsuit
name = "richard's outfit"
desc = "Do you know what time it is?"
icon_state = "jacket"
item_state = "jacket"
_color = "jacket"
/obj/item/clothing/under/mega
name = "\improper DRN-001 suit"
desc = "The original. Simple, yet very adaptable."
icon_state = "mega"
item_state = "mega"
_color = "mega"
species_fit = list(INSECT_SHAPED, VOX_SHAPED)
body_parts_covered = HIDETAIL
/obj/item/clothing/under/proto
name = "The Prototype Suit"
desc = "Even robots know scarves are the perfect accessory for a brooding rival."
icon_state = "proto"
item_state = "proto"
_color = "proto"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/megax
name = "\improper Maverick Hunter regalia"
desc = "The best outfit for taking out rogue borgs."
icon_state = "megax"
item_state = "megax"
_color = "megax"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/joe
name = "The Sniper Suit"
desc = "Mass produced combat robots with a rather unfitting name."
icon_state = "joe"
item_state = "joe"
_color = "joe"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/roll
name = "\improper DRN-002 Dress"
desc = "A simple red dress, the good doctor's second robot wasn't quite as exciting as the first."
icon_state = "roll"
item_state = "roll"
_color = "roll"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/maid
name = "maid outfit"
desc = "Perfect for lusty aliens and desperate weeaboos."
icon_state = "maid"
item_state = "maid"
_color = "maid"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/darkholme
name = "\improper Darkholme"
desc = "Fuck you."
icon_state = "darkholme"
item_state = "darkholme"
_color = "darkholme"
clothing_flags = ONESIZEFITSALL
species_fit = list(INSECT_SHAPED, GREY_SHAPED, VOX_SHAPED)
/obj/item/clothing/under/gokugidown
name = "turtle hermit undershirt"
desc = "Something seems oddly familiar about this outfit..."
icon_state = "gokugidown"
item_state = "gokugidown"
_color = "gokugidown"
/obj/item/clothing/under/gokugi
name = "turtle hermit outfit"
desc = "An outfit from one trained by the great Turtle Hermit."
icon_state = "gokugi"
item_state = "gokugi"
_color = "gokugi"
/obj/item/clothing/under/doomguy
name = "\improper Doomguy's pants"
desc = ""
icon_state = "doom"
item_state = "doom"
_color = "doom"
/obj/item/clothing/under/vault13
name = "vault 13 Jumpsuit"
desc = "Oddly similar to the station's usual jumpsuits, but with a rustic charm to it. Has a large thirteen emblazened on the back."
icon_state = "v13-jumpsuit"
item_state = "v13-jumpsuit"
_color = "v13-jumpsuit"
/obj/item/clothing/under/vault
name = "vault jumpsuit"
desc = "Oddly similar to the station's usual jumpsuits, but with a rustic charm to it."
icon_state = "v-jumpsuit"
item_state = "v-jumpsuit"
_color = "v-jumpsuit"
/obj/item/clothing/under/contortionist
name = "contortionist's jumpsuit"
desc = "A light jumpsuit useful for squeezing through narrow vents."
icon_state = "darkholme"
item_state = "darkholme"
_color = "darkholme"
species_fit = list(INSECT_SHAPED, GREY_SHAPED, VOX_SHAPED)
/obj/item/clothing/under/contortionist/proc/check_clothing(mob/user as mob)
//Allowed to wear: glasses, shoes, gloves, pockets, mask, and jumpsuit (obviously)
var/list/slot_must_be_empty = list(slot_back,slot_handcuffed,slot_legcuffed,slot_belt,slot_head,slot_wear_suit)
for(var/slot_id in slot_must_be_empty)
if(user.get_item_by_slot(slot_id))
to_chat(user, "<span class='warning'>You can't fit inside while wearing that \the [user.get_item_by_slot(slot_id)].</span>")
return 0
for(var/obj/item/I in user.held_items)
to_chat(user, "<span class='warning'>You can't fit inside while holding \the [I].</span>")
return 0
return 1
/obj/item/clothing/under/clownpiece
name = "Clownpiece's Pierrot suit"
desc = "A female-sized set of leggings and shirt with a pattern similar to the American flag, featuring a frilled collar."
icon_state = "clownpiece"
item_state = "clownpiece"
_color = "clownpiece"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/cia
name = "casual IAA outfit"
desc = "Just looking at this makes you feel in charge."
icon_state = "cia"
item_state = "cia"
_color = "cia"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/greaser
name = "Greaser Outfit"
desc = "The one that you want!"
icon_state = "greaser"
item_state = "greaser"
_color = "greaser"
clothing_flags = ONESIZEFITSALL
species_fit = list(INSECT_SHAPED, GREY_SHAPED, VOX_SHAPED)
/obj/item/clothing/under/wintercasualwear
name = "winter casualwear"
desc = "Perfect for winter!"
icon_state = "shizunewinter"
item_state = "shizunewinter"
_color = "shizunewinter"
body_parts_covered = FULL_TORSO|ARMS
species_fit = list(GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/casualwear
name = "spring casualwear"
desc = "Perfect for spring!"
icon_state = "shizunenormal"
item_state = "shizunenormal"
_color = "shizunenormal"
body_parts_covered = FULL_TORSO|ARMS
species_fit = list(GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/keyholesweater
name = "keyhole sweater"
desc = "What is the point of this, anyway?"
icon_state = "keyholesweater"
item_state = "keyholesweater"
_color = "keyholesweater"
body_parts_covered = FULL_TORSO|ARMS
species_fit = list(GREY_SHAPED)
/obj/item/clothing/under/casualhoodie
name = "casual hoodie"
desc = "Pefect for lounging about in."
icon_state = "hoodiejeans"
item_state = "hoodiejeans"
_color = "hoodiejeans"
species_fit = list(GREY_SHAPED)
/obj/item/clothing/under/casualhoodie/skirt
icon_state = "hoodieskirt"
item_state = "hoodieskirt"
_color = "hoodieskirt"
species_fit = list(GREY_SHAPED)
/obj/item/clothing/under/mummy_rags
name = "mummy rags"
desc = "Ancient rags taken off from some mummy."
icon_state = "mummy"
item_state = "mummy"
_color = "mummy"
has_sensor = 0
/obj/item/clothing/under/neorussian
name = "neo-Russian uniform"
desc = "Employs a special toshnit pattern, will render you invisible when you eat a potato on an empty stomach."
icon_state = "nr_uniform"
item_state = "nr_uniform"
_color = "nr_uniform"
species_fit = list(INSECT_SHAPED, GREY_SHAPED)
/*
/obj/item/clothing/under/skelevoxsuit
name = "skelevox suit"
desc = "Feels like wearing literally nothing at all!"
icon_state = "vox-skelesuit"
item_state = "vox-skelesuit"
_color = "vox-skelesuit"
species_restricted = list(VOX_SHAPED)
species_fit = list(VOX_SHAPED)
*/
/obj/item/clothing/under/rottensuit
name = "rotten suit"
desc = "This suit seems perfect for wearing underneath a disguise."
icon_state = "rottensuit"
item_state = "rottensuit"
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi')
_color = "rottensuit"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/franksuit
name = "Dr. Frank's clothes"
desc = "Wearing this makes you feel spaced out on sensation, like you're under sedation."
icon_state = "franksuit"
item_state = "franksuit"
_color = "franksuit"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/elf
name = "elf uniform"
desc = "A festive suit for a festive elf!"
icon_state = "elf"
item_state = "elf"
_color = "elf"
/obj/item/clothing/under/elf/stickymagic
canremove = 0
/obj/item/clothing/under/onesie
name = "green christmas onesie"
desc = "Festive pyjamas for the comfy crewman."
icon_state = "onesiegreen"
item_state = "onesiegreen"
_color = "onesiegreen"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/blue
name = "blue christmas onesie"
icon_state = "onesieblue"
item_state = "onesieblue"
_color = "onesieblue"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/red
name = "red christmas onesie"
icon_state = "onesiered"
item_state = "onesiered"
_color = "onesiered"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/pink
name = "pink christmas onesie"
icon_state = "onesiepink"
item_state = "onesiepink"
_color = "onesiepink"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/white
name = "white christmas onesie"
icon_state = "onesiewhite"
item_state = "onesiewhite"
_color = "onesiewhite"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/grey
name = "grey christmas onesie"
icon_state = "onesiegrey"
item_state = "onesiegrey"
_color = "onesiegrey"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/black
name = "black christmas onesie"
icon_state = "onesieblack"
item_state = "onesieblack"
_color = "onesieblack"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/redgreen
name = "striped red and green christmas onesie"
icon_state = "onesieredgreen"
item_state = "onesieredgreen"
_color = "onesieredgreen"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/onesie/bluenavy
name = "striped blue and navy christmas onesie"
icon_state = "onesiebluenavy"
item_state = "onesiebluenavy"
_color = "onesiebluenavy"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/police
name = "police uniform"
desc = "A policeman's lot is not a happy one."
icon_state = "britpolice"
item_state = "britpolice"
_color = "britpolice"
clothing_flags = ONESIZEFITSALL
species_fit = list(GREY_SHAPED, VOX_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/casualsec
name = "plainclothes uniform"
desc = "The Western District way, gentlemen."
icon_state = "casualsec"
item_state = "casualsec"
_color = "casualsec"
clothing_flags = ONESIZEFITSALL
species_restricted = list("exclude", VOX_SHAPED)
species_fit = list(GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/inquisitor
name = "inquisitor's suit"
desc = "Historically, inquisitors were cathar detectives who investigated crimes both mundane and supernatural. They were known for traveling to remote parishes plagued by unexplained murders, and for exposing the wicked living among normal humans."
icon_state = "uni-church"
item_state = "uni-church"
_color = "uni-church"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/newclothes
name = "Emperor's new clothes"
desc = "The virtuous can see them."
icon_state = "newclothes"
_color = "newclothes"
item_state = "r_suit"
/obj/item/clothing/under/tourist
name = "tourist uniform"
desc = "A bright cyan shirt and a pair of brown shorts. Looks old."
icon_state = "tourist"
item_state = "g_suit"
_color = "tourist"
clothing_flags = ONESIZEFITSALL
species_fit = list(VOX_SHAPED, GREY_SHAPED, INSECT_SHAPED)
/obj/item/clothing/under/varsity
name = "varsity jacket"
desc = "A jacket that belongs to either a high school student or an ancient German tyrant."
icon_state = "varsity"
item_state = "varsity"
_color = "varsity"
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/galo
name = "delinquent clothes"
desc = "Yeah, Galo Sengen."
icon_state = "galo"
item_state = "galo"
_color = "galo"
/obj/item/clothing/under/callum
name = "gaelic suit"
desc = "Smells faintly of alcohol."
icon_state = "callum_suit"
item_state = "callum_suit"
_color = "callum_suit"
/obj/item/clothing/under/tian
name = "tian dress"
desc = "Custom-made for a warrior, long long ago."
icon_state = "tian_dress"
item_state = "tian_dress"
_color = "tian_dress"
/obj/item/clothing/under/matsuda
name = "disheveled jumpsuit"
desc = "A rolled down jumpsuit and undershirt combo, styled after old Martian actress."
icon_state = "matsuda"
item_state = "matsuda"
_color = "matsuda"
/obj/item/clothing/under/clownsuit
name = "formal clown outfit"
desc = "For clowns living in a society."
icon_state = "clownsuit"
item_state = "clownsuit"
_color = "clownsuit"
clothing_flags = ONESIZEFITSALL
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/skelesuit
name = "skeleton suit"
desc = "Inside of everyone there is a spooky skinman waiting to escape."
icon_state = "skelesuit"
item_state = "skelesuit"
_color = "skelesuit"
species_fit = list(VOX_SHAPED, INSECT_SHAPED)
clothing_flags = ONESIZEFITSALL
body_parts_covered = FULL_HEAD|BEARD|HIDEHAIR|HIDETAIL
/obj/item/clothing/under/clownpsyche
name = "Psychedelic clown outfit"
desc = "Do you know the definition of insanity?"
icon_state = "clownpsyche"
item_state = "clownpsyche"
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi')
luminosity = 2
_color = "clownpsyche"
clothing_flags = ONESIZEFITSALL
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/team_security
name = "light Team Security suit"
desc = "A snappy white and red suit worn by Team Security members and fans."
icon_state = "teamsec_light"
_color = "teamsec_light"
jersey_overlays = 'icons/mob/uniform_overlays.dmi'
clothing_flags = ONESIZEFITSALL
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi')
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/team_security/dark
name = "dark Team Security suit"
desc = "A snappy black and red suit worn by Team Security members and fans."
icon_state = "teamsec_dark"
_color = "teamsec_dark"
clothing_flags = ONESIZEFITSALL
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/spesstv
name = "promotional Spess.TV suit"
desc = "A cheap green and white suit worn by Spess.TV members and fans."
icon_state = "spesstv"
_color = "spesstv"
jersey_overlays = 'icons/mob/uniform_overlays.dmi'
clothing_flags = ONESIZEFITSALL
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi')
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/team_geometer
name = "\improper Team Geometer suit"
desc = "A smelly green and black suit worn by team Geometer members and fans."
icon_state = "teamgeometer"
_color = "teamgeometer"
jersey_overlays = 'icons/mob/uniform_overlays.dmi'
clothing_flags = ONESIZEFITSALL
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi')
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/team_nt
name = "\improper NanoTrasen sports suit"
desc = "A dusty blue and white suit worn by NanoTrasen referees."
icon_state = "teamnt"
_color = "teamnt"
jersey_overlays = 'icons/mob/uniform_overlays.dmi'
clothing_flags = ONESIZEFITSALL
inhand_states = list("left_hand" = 'icons/mob/in-hand/left/clothing.dmi', "right_hand" = 'icons/mob/in-hand/right/clothing.dmi')
species_fit = list(INSECT_SHAPED)
/obj/item/clothing/under/football
name ="\improper Red football shirt"
desc = "The perfect shirt to show support for your favourite team."
icon_state = "redfootball"
item_state = "redfootball"
_color = "redfootball"
clothing_flags = ONESIZEFITSALL