aboutsummaryrefslogtreecommitdiff
path: root/armor.json
blob: a80052d8082a6b23201b8e7f4321c6373b484a12 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
[
  {
    "id": "maid_dress",
    "type": "ARMOR",
    "category": "clothing",
    "name": { "str": "victorian maid dress", "str_pl": "victorian maid dresses" },
    "description": "A classic maid outfit with a white apron, frills and a black one piece.",
    "weight": "800 g",
    "volume": "4250 ml",
    "price": 5000,
    "price_postapoc": 50,
    "material": [ "cotton" ],
    "symbol": "[",
    "color": "black",
    "armor": [
      { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 7, 10 ] },
      { "covers": [ "leg_l", "leg_r" ], "coverage": 95, "encumbrance": [ 5, 5 ] },
      { "covers": [ "arm_l", "arm_r" ], "coverage": 95, "encumbrance": [ 5, 5 ] }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "10 cm",
        "moves": 80
      }
    ],
    "warmth": 20,
    "material_thickness": 2,
    "environmental_protection": 1,
    "flags": [ "VARSIZE", "FANCY" ]
  },
  {
    "id": "kawaii_maid_dress_long_leather",
    "type": "ARMOR",
    "looks_like": "maid_dress",
    "name": { "str": "tailored victorian maid dress", "str_pl": "tailored victorian maid dresses" },
    "description": "A classic maid outfit with a white apron, frills and a black one piece. It has been reinforced with leather for greater protection.",
    "weight": "5100 g",
    "volume": "10250 ml",
    "price": 17900,
    "price_postapoc": 1500,
    "material": [ "leather", "cotton" ],
    "symbol": "[",
    "color": "black",
    "armor": [
      { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 12, 16 ] },
      { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 7, 7 ] },
      { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 7, 7 ] }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2500 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2500 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "10 cm",
        "moves": 80
      }
    ],
    "warmth": 45,
    "material_thickness": 5,
    "environmental_protection": 2,
    "flags": [ "VARSIZE", "HOOD", "COLLAR", "POCKETS", "WATERPROOF", "FANCY" ]
  },
  {
    "id": "kawaii_maid_dress_long_armor",
    "//": "Loosely based on medium survivor suit.",
    "type": "ARMOR",
    "looks_like": "maid_dress",
    "name": { "str": "survivor victorian maid dress", "str_pl": "survivor victorian maid dresses" },
    "description": "A classic maid outfit with a white apron, frills and a black one piece. It has been reinforced with kevlar for greater protection and has an integrated scabbard for storing a sword.",
    "weight": "5100 g",
    "volume": "10250 ml",
    "price": 150000,
    "price_postapoc": 5000,
    "material": [ "kevlar", "cotton" ],
    "symbol": "[",
    "color": "black",
    "armor": [
      { "covers": [ "torso" ], "coverage": 100, "encumbrance": [ 15, 20 ] },
      { "covers": [ "leg_l", "leg_r" ], "coverage": 100, "encumbrance": [ 10, 10 ] },
      { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 10, 10 ] }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2500 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2500 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "10 cm",
        "moves": 80
      }
    ],
    "warmth": 45,
    "material_thickness": 8,
    "environmental_protection": 3,
    "use_action": {
      "type": "holster",
      "holster_prompt": "Sheath sword",
      "holster_msg": "You sheath your %s",
      "max_volume": "2 L",
      "flags": [ "SHEATH_SWORD" ]
    },
    "flags": [ "VARSIZE", "HOOD", "COLLAR", "POCKETS", "WATERPROOF", "RAINPROOF", "STURDY", "SUPER_FANCY" ]
  },
  {
    "id": "maid_dress_short",
    "type": "ARMOR",
    "looks_like": "kawaii_maid_dress",
    "name": { "str": "maid dress", "str_pl": "maid dresses" },
    "description": "A black dress with white apron and lace trim, worn by maids.",
    "weight": "150 g",
    "volume": "1000 ml",
    "price": 5000,
    "price_postapoc": 50,
    "material": [ "cotton" ],
    "symbol": "[",
    "color": "blue",
    "armor": [
      { "covers": [ "torso" ], "specifically_covers": [ "torso_lower" ], "coverage": 100, "encumbrance": [ 5, 7 ] },
      { "covers": [ "torso" ], "specifically_covers": [ "torso_upper" ], "coverage": 75 },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_hip_l", "leg_hip_r" ],
        "coverage": 100,
        "encumbrance": 2
      },
      { "covers": [ "leg_l", "leg_r" ], "specifically_covers": [ "leg_upper_l", "leg_upper_r" ], "coverage": 50 },
      {
        "covers": [ "arm_l", "arm_r" ],
        "specifically_covers": [ "arm_shoulder_l", "arm_shoulder_r" ],
        "coverage": 50,
        "encumbrance": 2
      }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "10 cm",
        "moves": 80
      }
    ],
    "warmth": 15,
    "material_thickness": 1,
    "flags": [ "VARSIZE", "FANCY" ]
  },
  {
    "id": "kawaii_maid_dress_ex",
    "type": "ARMOR",
    "name": { "str": "tailored maid dress", "str_pl": "tailored maid dresses" },
    "description": "A black dress with white apron and lace trim, worn by maids. It has been reinforced with leather for better protection.",
    "weight": "5830 g",
    "volume": "7500 ml",
    "price": 17900,
    "price_postapoc": 1500,
    "material": [ "leather", "cotton" ],
    "symbol": "[",
    "color": "dark_gray",
    "armor": [
      { "covers": [ "torso" ], "specifically_covers": [ "torso_lower" ], "coverage": 100, "encumbrance": [ 7, 10 ] },
      { "covers": [ "torso" ], "specifically_covers": [ "torso_upper" ], "coverage": 75 },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_hip_l", "leg_hip_r" ],
        "coverage": 100,
        "encumbrance": 3
      },
      { "covers": [ "leg_l", "leg_r" ], "specifically_covers": [ "leg_upper_l", "leg_upper_r" ], "coverage": 50 },
      {
        "covers": [ "arm_l", "arm_r" ],
        "specifically_covers": [ "arm_shoulder_l", "arm_shoulder_r" ],
        "coverage": 50,
        "encumbrance": 3
      }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "10 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2000 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2000 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      }
    ],
    "warmth": 15,
    "material_thickness": 3,
    "environmental_protection": 1,
    "flags": [ "VARSIZE", "POCKETS", "WATERPROOF", "FANCY" ]
  },
  {
    "id": "kawaii_maid_dress_lss",
    "//": "Loosely based on light survivor suit.",
    "type": "ARMOR",
    "name": { "str": "survivor maid dress", "str_pl": "survivor maid dresses" },
    "description": "A black dress with white apron and lace trim, worn by maids. It has been reinforced with kevlar for greater protection and has an integrated scabbard for storing a sword.",
    "weight": "5100 g",
    "volume": "10250 ml",
    "price": 110000,
    "price_postapoc": 5000,
    "material": [ "kevlar", "cotton" ],
    "symbol": "[",
    "color": "green",
    "armor": [
      { "covers": [ "torso" ], "specifically_covers": [ "torso_lower" ], "coverage": 100, "encumbrance": [ 12, 15 ] },
      { "covers": [ "torso" ], "specifically_covers": [ "torso_upper" ], "coverage": 75 },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_hip_l", "leg_hip_r" ],
        "coverage": 100,
        "encumbrance": 5
      },
      { "covers": [ "leg_l", "leg_r" ], "specifically_covers": [ "leg_upper_l", "leg_upper_r" ], "coverage": 50 },
      {
        "covers": [ "arm_l", "arm_r" ],
        "specifically_covers": [ "arm_shoulder_l", "arm_shoulder_r" ],
        "coverage": 50,
        "encumbrance": 5
      }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "10 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2000 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "2000 ml",
        "max_contains_weight": "4 kg",
        "max_item_length": "20 cm",
        "moves": 80
      }
    ],
    "warmth": 15,
    "material_thickness": 5,
    "environmental_protection": 2,
    "use_action": {
      "type": "holster",
      "holster_prompt": "Sheath sword",
      "holster_msg": "You sheath your %s",
      "max_volume": "2 L",
      "flags": [ "SHEATH_SWORD" ]
    },
    "flags": [ "VARSIZE", "POCKETS", "WATERPROOF", "RAINPROOF", "STURDY", "SUPER_FANCY" ]
  },
  {
    "id": "maid_hat",
    "//": "Originally the kawaii_maid_hat, now overwrites maid_hat. Based on maid_hat.",
    "looks_like": "hat_cotton",
    "repairs_like": "balclava",
    "type": "ARMOR",
    "name": { "str": "maid headband" },
    "description": "A black headband with white lace trim, worn by maids.",
    "weight": "10 g",
    "volume": "250 ml",
    "price": 2500,
    "price_postapoc": 50,
    "material": [ "cotton" ],
    "symbol": "[",
    "color": "white",
    "warmth": 2,
    "material_thickness": 0.05,
    "flags": [ "VARSIZE", "FANCY", "SKINTIGHT" ],
    "armor": [ { "encumbrance_modifiers": [ "NONE" ], "coverage": 25, "covers": [ "head" ] } ]
  },
  {
    "id": "kawaii_maid_hat_thermal_off",
    "copy-from": "maid_hat",
    "type": "ARMOR",
    "name": { "str": "tailored maid headband" },
    "description": "A black headband with white lace trim, worn by maids. It has been reinforced with leather for greater protection.",
    "weight": "250 g",
    "price": 2500,
    "price_postapoc": 100,
    "material": [ "leather", "cotton" ],
    "material_thickness": 0.2,
    "flags": [ "VARSIZE", "FANCY", "WATERPROOF", "SKINTIGHT" ],
    "armor": [
      {
        "encumbrance_modifiers": [ "NONE" ],
        "material": [
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.4 },
          { "type": "leather", "covered_by_mat": 80, "thickness": 1.5 }
        ],
        "coverage": 25,
        "covers": [ "head" ]
      }
    ]
  },
  {
    "id": "kawaii_maid_hat_lss",
    "copy-from": "maid_hat",
    "type": "ARMOR",
    "name": { "str": "survivor maid headband" },
    "description": "A black headband with white lace trim, worn by maids. It has been reinforced with kevlar for greater protection.",
    "weight": "350 g",
    "price": 5500,
    "price_postapoc": 200,
    "material": [ "kevlar", "cotton" ],
    "environmental_protection": 3,
    "flags": [ "VARSIZE", "FANCY", "WATERPROOF", "RAINPROOF", "SKINTIGHT", "STURDY" ],
    "armor": [
      {
        "encumbrance_modifiers": [ "NONE" ],
        "material": [
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.4 },
          { "type": "kevlar", "covered_by_mat": 80, "thickness": 1.5 }
        ],
        "coverage": 25,
        "covers": [ "head" ]
      }
    ]
  },
  {
    "id": "maid_gloves_cotton",
    "//": "Based on gloves_liner",
    "type": "ARMOR",
    "category": "clothing",
    "name": { "str": "pair of maid gloves", "str_pl": "pairs of maid gloves" },
    "description": "A pair of white gloves, used by maids.",
    "weight": "63 g",
    "volume": "250 ml",
    "price": 600,
    "price_postapoc": 50,
    "to_hit": 1,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "gloves_light",
    "color": "light_gray",
    "warmth": 15,
    "material_thickness": 0.1,
    "flags": [ "VARSIZE", "SKINTIGHT" ],
    "armor": [ { "encumbrance": 1, "coverage": 95, "covers": [ "hand_l", "hand_r" ] } ]
  },
  {
    "id": "maid_gloves_leather",
    "copy-from": "maid_gloves_cotton",
    "type": "ARMOR",
    "looks_like": "gloves_liner",
    "name": { "str": "pair of tailored maid gloves", "str_pl": "pairs of tailored maid gloves" },
    "description": "A pair of white gloves, used by maids. They have been reinforced with leather for greater protection.",
    "weight": "150 g",
    "volume": "500 ml",
    "price": 1200,
    "price_postapoc": 100,
    "material": [ "cotton", "leather" ],
    "covers": [ "hand_l", "hand_r" ],
    "coverage": 95,
    "warmth": 15,
    "material_thickness": 0.5,
    "flags": [ "VARSIZE", "SKINTIGHT", "FANCY", "WATERPROOF" ],
    "armor": [
      {
        "encumbrance": 3,
        "material": [
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.4 },
          { "type": "leather", "covered_by_mat": 80, "thickness": 2 }
        ],
        "coverage": 95,
        "covers": [ "hand_l", "hand_r" ]
      }
    ]
  },
  {
    "id": "maid_gloves_armor",
    "copy-from": "maid_gloves_cotton",
    "type": "ARMOR",
    "looks_like": "gloves_liner",
    "name": { "str": "pair of survivor maid gloves", "str_pl": "pairs of survivor maid gloves" },
    "description": "A pair of white gloves, used by maids. They have been reinforced with kevlar for greater protection.",
    "weight": "190 g",
    "volume": "500 ml",
    "price": 5200,
    "price_postapoc": 1500,
    "to_hit": 2,
    "material": [ "cotton", "kevlar" ],
    "environmental_protection": 2,
    "flags": [ "VARSIZE", "SKINTIGHT", "FANCY", "WATERPROOF", "STURDY"  ],
    "armor": [
      {
        "encumbrance": 10,
        "material": [
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.4 },
          { "type": "kevlar", "covered_by_mat": 80, "thickness": 3 }
        ],
        "coverage": 100,
        "covers": [ "hand_l", "hand_r" ]
      }
    ]
  },
  {
    "id": "maid_gloves_long_cotton",
    "//": "Based on long_glove_white",
    "repairs_like": "long_glove_white",
    "type": "ARMOR",
    "name": { "str": "pair of long maid gloves", "str_pl": "pairs of long maid gloves" },
    "description": "A pair of long white gloves, used by maids.",
    "weight": "400 g",
    "volume": "1 L",
    "price": 1100,
    "price_postapoc": 100,
    "to_hit": 1,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "gloves_light",
    "color": "white",
    "armor": [
      { "covers": [ "hand_l", "hand_r" ], "coverage": 100, "encumbrance": 2 },
      {
        "covers": [ "arm_l", "arm_r" ],
        "specifically_covers": [ "arm_elbow_l", "arm_elbow_r", "arm_lower_l", "arm_lower_r" ],
        "coverage": 100,
        "encumbrance": 2
      },
      { "covers": [ "arm_l", "arm_r" ], "specifically_covers": [ "arm_upper_l", "arm_upper_r" ], "coverage": 50 }
    ],
    "warmth": 10,
    "material_thickness": 0.2,
    "flags": [ "VARSIZE", "SKINTIGHT" ]
  },
  {
    "id": "maid_gloves_long_leather",
    "copy-from": "maid_gloves_long_cotton",
    "type": "ARMOR",
    "looks_like": "long_glove_white",
    "name": { "str": "pair of tailored long maid gloves", "str_pl": "pairs of tailored long maid gloves" },
    "description": "A pair of long white gloves, used by maids. They have been reinforced with leather for greater protection.",
    "weight": "700 g",
    "price": 2500,
    "price_postapoc": 200,
    "material": [ "leather", "cotton" ],
    "armor": [
      { "covers": [ "hand_l", "hand_r" ], "coverage": 100, "encumbrance": 6 },
      {
        "covers": [ "arm_l", "arm_r" ],
        "specifically_covers": [ "arm_elbow_l", "arm_elbow_r", "arm_lower_l", "arm_lower_r" ],
        "coverage": 95,
        "encumbrance": 6,
        "material": [
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.4 },
          { "type": "leather", "covered_by_mat": 80, "thickness": 2 }
        ]
      },
      { "covers": [ "arm_l", "arm_r" ], "specifically_covers": [ "arm_upper_l", "arm_upper_r" ], "coverage": 50 }
    ],
    "material_thickness": 0.5,
    "flags": [ "VARSIZE", "FANCY", "SKINTIGHT", "WATERPROOF" ]
  },
  {
    "id": "maid_gloves_long_armor",
    "copy-from": "maid_gloves_long_cotton",
    "type": "ARMOR",
    "looks_like": "long_glove_white",
    "name": { "str": "pair of survivor long maid gloves", "str_pl": "pairs of survivor long maid gloves" },
    "description": "A pair of long white gloves, used by maids. They have been reinforced with kevlar for greater protection.",
    "weight": "1000 g",
    "price": 4500,
    "price_postapoc": 400,
    "to_hit": 2,
    "material": [ "kevlar", "cotton" ],
    "armor": [
      { "covers": [ "hand_l", "hand_r" ], "coverage": 100, "encumbrance": 10 },
      {
        "covers": [ "arm_l", "arm_r" ],
        "specifically_covers": [ "arm_elbow_l", "arm_elbow_r", "arm_lower_l", "arm_lower_r" ],
        "coverage": 100,
        "encumbrance": 10,
        "material": [
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.4 },
          { "type": "kevlar", "covered_by_mat": 80, "thickness": 3 }
        ]
      },
      { "covers": [ "arm_l", "arm_r" ], "specifically_covers": [ "arm_upper_l", "arm_upper_r" ], "coverage": 50 }
    ],
    "environmental_protection": 3,
    "flags": [ "VARSIZE", "FANCY", "SKINTIGHT", "WATERPROOF", "STURDY"  ]
  },
  {
    "id": "kawaii_dress_shoes",
    "//": "Based on dress_shoes.",
    "repairs_like": "boots",
    "type": "ARMOR",
    "name": { "str": "pair of maid shoes", "str_pl": "pairs of maid shoes" },
    "description": "A pair of black dress shoes designed to be worn with a maid dress.",
    "weight": "870 g",
    "volume": "1500 ml",
    "price": 12000,
    "price_postapoc": 250,
    "to_hit": 1,
    "bashing": 1,
    "material": [ "leather" ],
    "symbol": "[",
    "looks_like": "sneakers",
    "color": "dark_gray",
    "warmth": 10,
    "material_thickness": 2.0,
    "flags": [ "VARSIZE", "FANCY" ],
    "armor": [
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_heel_r", "foot_heel_l", "foot_arch_r", "foot_arch_l", "foot_toes_r", "foot_toes_l" ],
        "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 2 } ],
        "encumbrance": 15,
        "coverage": 100
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_ankle_r", "foot_ankle_l" ],
        "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 } ],
        "coverage": 40
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_sole_r", "foot_sole_l" ],
        "material": [
          { "type": "leather", "covered_by_mat": 100, "thickness": 0.1 },
          { "type": "rubber", "covered_by_mat": 100, "thickness": 4.0 }
        ],
        "coverage": 100
      }
    ]
  },
  {
    "id": "kawaii_shoes_hi",
    "//": "Loosely based on medium survivor boots.",
    "copy-from": "kawaii_dress_shoes",
    "looks_like": "kawaii_dress_shoes",
    "type": "ARMOR",
    "name": { "str": "pair of survivor maid shoes", "str_pl": "pairs of survivor maid shoes" },
    "description": "A pair of black dress shoes designed to be worn with a maid dress. They have been reinforced with kevlar for greater protection.",
    "weight": "1130 g",
    "price": 24000,
    "price_postapoc": 6000,
    "material": [ "kevlar", "leather" ],
    "environmental_protection": 2,
    "flags": [ "VARSIZE", "FANCY", "WATERPROOF", "STURDY" ],
    "armor": [
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_heel_r", "foot_heel_l", "foot_arch_r", "foot_arch_l", "foot_toes_r", "foot_toes_l" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 3.5 },
          { "type": "leather", "covered_by_mat": 100, "thickness": 2 }
        ],
        "encumbrance": 20,
        "coverage": 100
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_ankle_r", "foot_ankle_l" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 3.5 },
          { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 }
        ],
        "coverage": 40
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_sole_r", "foot_sole_l" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 0.1 },
          { "type": "leather", "covered_by_mat": 100, "thickness": 0.1 },
          { "type": "rubber", "covered_by_mat": 100, "thickness": 4.0 }
        ],
        "coverage": 100
      }
    ]
  },
  {
    "id": "kawaii_boots",
    "//": "Loosely based on boots.",
    "type": "ARMOR",
    "category": "clothing",
    "name": { "str": "pair of maid boots", "str_pl": "pairs of maid boots" },
    "description": "A pair of black boots designed to be worn with a maid dress.",
    "weight": "1060 g",
    "volume": "2500 ml",
    "price": 10000,
    "price_postapoc": 750,
    "to_hit": -1,
    "bashing": 1,
    "symbol": "[",
    "looks_like": "dress_shoes",
    "color": "dark_gray",
    "warmth": 20,
    "environmental_protection": 2,
    "flags": [ "VARSIZE", "FANCY", "WATERPROOF" ],
    "armor": [
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [
          "foot_toes_r",
          "foot_toes_l",
          "foot_ankle_r",
          "foot_ankle_l",
          "foot_heel_r",
          "foot_heel_l",
          "foot_arch_r",
          "foot_arch_l"
        ],
        "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 2.5 } ],
        "encumbrance": 12,
        "coverage": 100
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_sole_r", "foot_sole_l" ],
        "material": [
          { "type": "leather", "covered_by_mat": 100, "thickness": 0.1 },
          { "type": "rubber", "covered_by_mat": 100, "thickness": 6.0 }
        ],
        "coverage": 100
      }
    ]
  },
  {
    "id": "kawaii_boots_hi",
    "//": "Loosely based on medium survivor boots.",
    "copy-from": "kawaii_boots",
    "looks_like": "kawaii_boots",
    "type": "ARMOR",
    "name": { "str": "pair of survivor maid boots", "str_pl": "pairs of survivor maid boots" },
    "description": "A pair of black boots designed to be worn with a maid dress. They have been reinforced with kevlar for greater protection.",
    "weight": "1330 g",
    "price": 24000,
    "price_postapoc": 6000,
    "material": [ "kevlar", "leather" ],
    "environmental_protection": 4,
    "flags": [ "VARSIZE", "FANCY", "WATERPROOF", "STURDY" ],
    "armor": [
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [
          "foot_toes_r",
          "foot_toes_l",
          "foot_ankle_r",
          "foot_ankle_l",
          "foot_heel_r",
          "foot_heel_l",
          "foot_arch_r",
          "foot_arch_l"
        ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 3.5 },
          { "type": "leather", "covered_by_mat": 100, "thickness": 2.5 }
        ],
        "encumbrance": 16,
        "coverage": 100
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_sole_r", "foot_sole_l" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 0.1 },
          { "type": "leather", "covered_by_mat": 100, "thickness": 0.1 },
          { "type": "rubber", "covered_by_mat": 100, "thickness": 6.0 }
        ],
        "coverage": 100
      }
    ]
  },
  {
    "id": "kawaii_maid_niso_thick",
    "//": "Loosrly based on stockings",
    "type": "ARMOR",
    "name": { "str": "pair of maid stockings", "str_pl": "pairs of maid stockings" },
    "description": "A pair of black stockings with white lace trim. The thick material keeps the wearer's legs warm.",
    "weight": "90 g",
    "volume": "250 ml",
    "price": 500,
    "price_postapoc": 250,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "leg_warmers",
    "color": "dark_gray",
    "warmth": 10,
    "material_thickness": 0.1,
    "flags": [ "VARSIZE", "SKINTIGHT", "FANCY" ],
    "armor": [
      { "encumbrance": 5, "coverage": 100, "covers": [ "foot_l", "foot_r" ] },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_lower_l", "leg_lower_r", "leg_knee_l", "leg_knee_r" ],
        "coverage": 100,
        "encumbrance": 4
      },
      { "covers": [ "leg_l", "leg_r" ], "specifically_covers": [ "leg_upper_l", "leg_upper_r" ], "coverage": 60 }
    ]
  },
  {
    "id": "kawaii_maid_niso_thin",
    "copy-from": "kawaii_maid_niso_thick",
    "type": "ARMOR",
    "category": "clothing",
    "name": { "str": "pair of maid stockings (sheer)", "str_pl": "pairs of maid stockings (sheer)" },
    "description": "A pair of black stockings with white lace trim. The material is thin enough to be slightly transparent when worn.",
    "weight": "40 g",
    "armor": [
      { "encumbrance": 2, "coverage": 100, "covers": [ "foot_l", "foot_r" ] },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_lower_l", "leg_lower_r", "leg_knee_l", "leg_knee_r" ],
        "coverage": 100,
        "encumbrance": 1
      },
      { "covers": [ "leg_l", "leg_r" ], "specifically_covers": [ "leg_upper_l", "leg_upper_r" ], "coverage": 60 }
    ]
  },
  {
    "id": "kawaii_tights_black",
    "//": "Loosely based on tights",
    "repairs_like": "jeans",
    "type": "ARMOR",
    "name": "black tights",
    "description": "A pair of warm tights.",
    "weight": "114 g",
    "volume": "250 ml",
    "price": 2000,
    "price_postapoc": 100,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "leggings",
    "color": "dark_gray",
    "warmth": 10,
    "material_thickness": 0.1,
    "flags": [ "VARSIZE", "SKINTIGHT" ],
    "armor": [ { "coverage": 100, "covers": [ "foot_l", "foot_r", "leg_r", "leg_l" ] } ]
  },
  {
    "id": "kawaii_tights_white",
    "copy-from": "kawaii_tights_black",
    "type": "ARMOR",
    "category": "clothing",
    "name": "white tights",
    "description": "A pair of warm tights."
  },
  {
    "id": "kawaii_maid_garter",
    "//": "Based on garter_belt",
    "type": "ARMOR",
    "name": { "str": "maid garter belt" },
    "description": "A black garter belt with white trim, designed to hold up stockings.  It could also be used to conceal a handgun, if needed.",
    "weight": "80 g",
    "volume": "200 ml",
    "looks_like": "panties",
    "price": 500,
    "price_postapoc": 250,
    "material": [ "cotton" ],
    "symbol": "[",
    "color": "dark_gray",
    "material_thickness": 0.1,
    "flags": [ "SKINTIGHT", "VARSIZE", "FANCY", "TARDIS" ],
    "armor": [ { "encumbrance": 1, "coverage": 38, "covers": [ "torso" ], "specifically_covers": [ "torso_lower" ] } ],
    "pocket_data": [
      {
        "magazine_well": "500 ml",
        "pocket_type": "CONTAINER",
        "holster": true,
        "moves": 80
      }
    ],
    "use_action": { "type": "holster" }
  },
  {
    "id": "kawaii_secretpoach",
    "//": "Loosely based on deep concealment holster, aka bholster.",
    "type": "ARMOR",
    "name": { "str": "garter purse" },
    "description": "A small storage purse that can be concealed beneath a skirt, held up using a garter band.  It also has sleeves for concealing handgun magazines, if needed.",
    "weight": "120 g",
    "volume": "250 ml",
    "price": 3000,
    "price_postapoc": 500,
    "material": [ "lycra" ],
    "symbol": "[",
    "looks_like": "bholster",
    "color": "light_gray",
    "sided": true,
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "500 ml",
        "max_contains_weight": "1 kg",
        "max_item_length": "165 mm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "250 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "165 mm",
        "flag_restriction": [ "MAG_COMPACT" ],
        "moves": 40
      }
    ],
    "flags": [ "SKINTIGHT", "WATER_FRIENDLY" ],
    "armor": [
      {
        "encumbrance": [ 1, 3 ],
        "coverage": 25,
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_hip_l", "leg_hip_r" ]
      }
    ]
  },
  {
    "type": "ARMOR",
    "category": "clothing",
    "id": "petticoat",
    "name": { "str": "petticoat" },
    "description": "A type of frilly undergarment worn under skirts to give them more volume. It could also be used to conceal a knife under your skirt, if needed.",
    "weight": "90 g",
    "volume": "250 ml",
    "color": "white",
    "symbol": "[",
    "price": 500,
    "price_postapoc": 10,
    "material": [ "cotton" ],
    "use_action": {
      "type": "holster",
      "holster_prompt": "Conceal knife",
      "holster_msg": "You hide your %s",
      "max_volume": "750 ml",
      "draw_cost": 30,
      "flags": [ "SHEATH_KNIFE" ]
    },
    "flags": [ "SUPER_FANCY" ],
    "material_thickness": 1
  },
  {
    "id": "tux",
    "repairs_like": "trenchcoat",
    "type": "ARMOR",
    "name": { "str": "tuxedo" },
    "description": "A full-body tuxedo.  Makes the apocalypse feel a little more classy.",
    "weight": "1587 g",
    "volume": "5500 ml",
    "price": 21000,
    "price_postapoc": 750,
    "to_hit": -5,
    "symbol": "[",
    "looks_like": "suit",
    "color": "dark_gray",
    "armor": [
      {
        "covers": [ "torso" ],
        "specifically_covers": [ "torso_lower" ],
        "material": [ { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 } ],
        "coverage": 100,
        "encumbrance": [ 13, 16 ]
      },
      {
        "covers": [ "torso" ],
        "specifically_covers": [ "torso_upper" ],
        "material": [ { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 } ],
        "coverage": 90
      },
      {
        "covers": [ "arm_l", "arm_r" ],
        "material": [ { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 } ],
        "coverage": 95,
        "encumbrance": [ 13, 13 ]
      },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_upper_l", "leg_upper_r", "leg_knee_l", "leg_knee_r", "leg_lower_l", "leg_lower_r", "leg_hip_l", "leg_hip_r" ],
        "material": [ { "type": "cotton", "covered_by_mat": 100, "thickness": 0.5 } ],
        "coverage": 100
      }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "800 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "800 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "600 ml",
        "max_contains_weight": "1 kg",
        "max_item_length": "13 cm",
        "moves": 120
      }
    ],
    "warmth": 30,
    "flags": [ "VARSIZE", "POCKETS", "FANCY" ]
  },
  {
    "id": "survivor_tux_leather",
    "copy-from": "tux",
    "type": "ARMOR",
    "name": { "str": "tailored tuxedo" },
    "description": "A full-body tuxedo, the proper uniform of a butler. It has been reinforced with leather for greater protection.",
    "weight": "3050 g",
    "volume": "11250 ml",
    "price": 25000,
    "price_postapoc": 850,
    "material": [ "leather", "cotton" ],
    "armor": [
      {
        "covers": [ "torso" ],
        "specifically_covers": [ "torso_lower" ],
        "material": [
          { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 }
        ],
        "coverage": 100,
        "encumbrance": [ 13, 16 ]
      },
      {
        "covers": [ "torso" ],
        "specifically_covers": [ "torso_upper" ],
        "material": [
          { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 }
        ],
        "coverage": 90
      },
      {
        "covers": [ "arm_l", "arm_r" ],
        "material": [
          { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 }
        ],
        "coverage": 95,
        "encumbrance": [ 13, 13 ]
      },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_upper_l", "leg_upper_r", "leg_knee_l", "leg_knee_r", "leg_lower_l", "leg_lower_r", "leg_hip_l", "leg_hip_r" ],
        "material": [
          { "type": "leather", "covered_by_mat": 100, "thickness": 1.5 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.5 }
        ],
        "coverage": 100
      }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "800 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "800 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "600 ml",
        "max_contains_weight": "1 kg",
        "max_item_length": "13 cm",
        "moves": 120
      }
    ],
    "environmental_protection": 2,
    "flags": [ "VARSIZE", "POCKETS", "FANCY", "HOOD", "COLLAR", "WATERPROOF" ]
  },
  {
    "id": "survivor_tux",
    "copy-from": "tux",
    "type": "ARMOR",
    "name": { "str": "survivor tuxedo" },
    "description": "A full-body tuxedo, the proper uniform of a butler. It has been reinforced with kevlar for greater protection and has dedicated storage for throwing weapons.",
    "weight": "3050 g",
    "volume": "11250 ml",
    "price": 150000,
    "price_postapoc": 5000,
    "material": [ "kevlar", "cotton" ],
    "armor": [
      {
        "covers": [ "torso" ],
        "specifically_covers": [ "torso_lower" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 2.0 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 }
        ],
        "coverage": 100,
        "encumbrance": [ 13, 16 ]
      },
      {
        "covers": [ "torso" ],
        "specifically_covers": [ "torso_upper" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 2.0 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 }
        ],
        "coverage": 90
      },
      {
        "covers": [ "arm_l", "arm_r" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 2.0 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 1.0 }
        ],
        "coverage": 95,
        "encumbrance": [ 13, 13 ]
      },
      {
        "covers": [ "leg_l", "leg_r" ],
        "specifically_covers": [ "leg_upper_l", "leg_upper_r", "leg_knee_l", "leg_knee_r", "leg_lower_l", "leg_lower_r", "leg_hip_l", "leg_hip_r" ],
        "material": [
          { "type": "kevlar", "covered_by_mat": 100, "thickness": 1.5 },
          { "type": "cotton", "covered_by_mat": 100, "thickness": 0.5 }
        ],
        "coverage": 100
      }
    ],
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "1000 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "800 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "800 ml",
        "max_contains_weight": "2 kg",
        "max_item_length": "16 cm",
        "moves": 80
      },
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "600 ml",
        "max_contains_weight": "1 kg",
        "max_item_length": "13 cm",
        "moves": 120
      },
      {
        "magazine_well": "50 ml",
        "holster": true,
        "flag_restriction": [ "SHEATH_KNIFE" ],
        "moves": 30,
        "max_contains_volume": "100 ml",
        "max_contains_weight": "500 g",
        "max_item_length": "10 cm"
      },
      {
        "magazine_well": "50 ml",
        "holster": true,
        "flag_restriction": [ "SHEATH_KNIFE" ],
        "moves": 30,
        "max_contains_volume": "100 ml",
        "max_contains_weight": "500 g",
        "max_item_length": "10 cm"
      },
      {
        "magazine_well": "50 ml",
        "holster": true,
        "flag_restriction": [ "SHEATH_KNIFE" ],
        "moves": 30,
        "max_contains_volume": "100 ml",
        "max_contains_weight": "500 g",
        "max_item_length": "10 cm"
      },
      {
        "magazine_well": "50 ml",
        "holster": true,
        "flag_restriction": [ "SHEATH_KNIFE" ],
        "moves": 30,
        "max_contains_volume": "100 ml",
        "max_contains_weight": "500 g",
        "max_item_length": "10 cm"
      },
      {
        "magazine_well": "50 ml",
        "holster": true,
        "flag_restriction": [ "SHEATH_KNIFE" ],
        "moves": 30,
        "max_contains_volume": "100 ml",
        "max_contains_weight": "500 g",
        "max_item_length": "10 cm"
      },
      {
        "magazine_well": "50 ml",
        "holster": true,
        "flag_restriction": [ "SHEATH_KNIFE" ],
        "moves": 30,
        "max_contains_volume": "100 ml",
        "max_contains_weight": "500 g",
        "max_item_length": "10 cm"
      }
    ],
    "environmental_protection": 3,
    "flags": [ "VARSIZE", "POCKETS", "SUPER_FANCY", "HOOD", "COLLAR", "WATERPROOF", "RAINPROOF", "STURDY" ]
  },
  {
    "id": "kawaii_scarf",
    "//": "Based on wool scarf, aka scarf. Just slightly warmer and more expensive.",
    "type": "TOOL_ARMOR",
    "category": "clothing",
    "symbol": "[",
    "color": "light_gray",
    "name": { "str": "fashionable scarf", "str_pl": "fashionable scarves" },
    "description": "A stylish light cloth scarf, worn over the mouth for warmth.",
    "price": 7500,
    "price_postapoc": 150,
    "material": [ "cotton" ],
    "weight": "120 g",
    "volume": "1000 ml",
    "to_hit": -3,
    "flags": [ "OUTER", "ALLOWS_NATURAL_ATTACKS", "FANCY" ],
    "warmth": 55,
    "environmental_protection": 4,
    "material_thickness": 1.5,
    "use_action": { "type": "transform", "msg": "You loosen your %s.", "target": "kawaii_scarf_loose", "menu_text": "Loosen" },
    "armor": [ { "encumbrance": 3, "coverage": 85, "covers": [ "mouth" ] } ]
  },
  {
    "id": "kawaii_scarf_loose",
    "copy-from": "kawaii_scarf",
    "type": "TOOL_ARMOR",
    "category": "clothing",
    "symbol": "[",
    "color": "light_gray",
    "name": { "str": "fashionable scarf (loose)", "str_pl": "fashionable scarves (loose)" },
    "description": "A stylish light cloth scarf, worn over the mouth for warmth.",
    "warmth": 20,
    "use_action": { "type": "transform", "msg": "You wrap your %s a bit tighter.", "target": "scarf", "menu_text": "Wrap tighter" },
    "armor": [ { "encumbrance": 2, "coverage": 45, "covers": [ "mouth" ] } ]
  },
  {
    "id": "kawaii_raincoat",
    "//": "Based on rain coat, aka coat_rain. But lighter and with no pockets.",
    "type": "ARMOR",
    "name": { "str": "transparent rain coat" },
    "description": "A transparent raincoat made from very thin vinyl. The material is thin enough that the entire coat can fold away into a pocket when not in use.",
    "weight": "120 g",
    "volume": "750 ml",
    "price": 7900,
    "price_postapoc": 50,
    "material": [ "plastic", "cotton" ],
    "symbol": "[",
    "looks_like": "coat_winter",
    "color": "blue",
    "armor": [
      {
        "covers": [ "torso" ],
        "specifically_covers": [ "torso_upper", "torso_lower" ],
        "coverage": 100,
        "encumbrance": [ 7, 15 ]
      },
      { "covers": [ "arm_l", "arm_r" ], "coverage": 100, "encumbrance": [ 7, 7 ] }
    ],
    "warmth": 5,
    "material_thickness": 0.2,
    "environmental_protection": 3,
    "flags": [ "VARSIZE", "POCKETS", "WATERPROOF", "RAINPROOF", "HOOD", "OUTER", "SOFT", "FANCY" ],
    "use_action": {
      "type": "transform",
      "msg": "You pack the %s hood.",
      "target": "kawaii_raincoat_off",
      "menu_text": "Pack hood"
     }
  },
  {
    "id": "kawaii_raincoat_off",
    "copy-from": "kawaii_raincoat",
    "type": "ARMOR",
    "category": "clothing",
    "name": { "str": "transparent rain coat (hood packed)", "str_pl": "transparent rain coats (hood packed)" },
    "delete": { "flags": [ "HOOD" ] },
    "use_action": {
      "type": "transform",
      "msg": "You unpack the %s hood.",
      "target": "kawaii_raincoat",
      "menu_text": "Unpack hood"
     }
  },
  {
    "id": "kawaii_maid_panties",
    "//": "Based on panties. Fancy, no warmth, and different skin.",
    "type": "ARMOR",
    "name": { "str_sp": "white panties" },
    "description": "Pure white panties, very breathable and comfortable even in summer.",
    "weight": "32 g",
    "volume": "250 ml",
    "price": 1000,
    "price_postapoc": 50,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "briefs",
    "color": "white",
    "warmth": 0,
    "material_thickness": 0.1,
    "flags": [ "VARSIZE", "SKINTIGHT", "FANCY" ],
    "armor": [ { "coverage": 75, "covers": [ "leg_l", "leg_r" ], "specifically_covers": [ "leg_hip_l", "leg_hip_r" ] } ]
  },
  {
    "id": "kawaii_maid_bra",
    "//": "Based on bra. Fancy, no warmth, and different skin.",
    "type": "ARMOR",
    "name": { "str": "white bra" },
    "description": "Pure white bra, very breathable and comfortable even in summer.",
    "weight": "32 g",
    "volume": "250 ml",
    "price": 1000,
    "price_postapoc": 50,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "tank_top",
    "color": "white",
    "warmth": 0,
    "material_thickness": 0.1,
    "flags": [ "VARSIZE", "SKINTIGHT", "FANCY" ],
    "armor": [ { "coverage": 25, "covers": [ "torso" ], "specifically_covers": [ "torso_upper" ] } ]
  },
  {
    "id": "kawaii_maid_hardcase",
    "//": "Loosely based on survivor_duffel_bag with fixed encumbrance and a dedicated weapon compartment akin to back holster.",
    "type": "ARMOR",
    "name": { "str": "hardcase" },
    "description": "A huge rectangular hardcase. Normally used for carrying large musical instruments, sniper rifles, or sensitive electrical equipment.",
    "weight": "1000 g",
    "volume": "7875 ml",
    "price": 24000,
    "price_postapoc": 3250,
    "material": [ "plastic", "steel" ],
    "symbol": "[",
    "looks_like": "back_holster",
    "color": "dark_gray",
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "30 L",
        "max_contains_weight": "60 kg",
        "max_item_length": "60 cm",
        "magazine_well": "7500 ml",
        "moves": 300
      },
      {
        "pocket_type": "CONTAINER",
        "holster": true,
        "min_item_volume": "1500 ml",
        "max_contains_volume": "9 L",
        "max_contains_weight": "10 kg",
        "max_item_length": "133 cm",
        "moves": 150
      }
    ],
    "use_action": { "type": "holster" },
    "warmth": 10,
    "material_thickness": 2,
    "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED", "NO_QUICKDRAW" ],
    "armor": [ { "encumbrance": [ 15, 15 ], "coverage": 80, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ]
  },
  {
    "id": "kawaii_maid_hardcase_mini",
    "//": "Loosely based on survivor_rucksack with fixed encumbrance and a dedicated weapon compartment.",
    "type": "ARMOR",
    "name": { "str": "small hardcase" },
    "description": "A smaller version of the standard hardcase.",
    "weight": "800 g",
    "volume": "10 L",
    "price": 24000,
    "price_postapoc": 3000,
    "material": [ "plastic", "leather" ],
    "symbol": "[",
    "looks_like": "back_holster",
    "color": "dark_gray",
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "20 L",
        "max_contains_weight": "40 kg",
        "max_item_length": "55 cm",
        "magazine_well": "6 L",
        "moves": 300
      },
      {
        "pocket_type": "CONTAINER",
        "holster": true,
        "min_item_volume": "1240 ml",
        "max_contains_volume": "3750 L",
        "max_contains_weight": "10 kg",
        "max_item_length": "133 cm",
        "moves": 150
      }
    ],
    "use_action": { "type": "holster" },
    "material_thickness": 2,
    "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED" ],
    "armor": [ { "encumbrance": [ 10, 10 ], "coverage": 50, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ]
  },
  {
    "id": "kawaii_maid_hardcase_slim",
    "//": "Loosely based on survivor_pack with fixed encumbrance and a dedicated weapon compartment.",
    "type": "ARMOR",
    "name": { "str": "compact hardcase" },
    "description": "A compact version of the hardcase.",
    "weight": "600 g",
    "volume": "5250 ml",
    "price": 24000,
    "price_postapoc": 2250,
    "material": [ "plastic", "leather" ],
    "symbol": "[",
    "looks_like": "back_holster",
    "color": "dark_gray",
    "pocket_data": [
      {
        "pocket_type": "CONTAINER",
        "max_contains_volume": "10 L",
        "max_contains_weight": "32 kg",
        "max_item_length": "50 cm",
        "magazine_well": "5 L",
        "moves": 300
      },
      {
        "pocket_type": "CONTAINER",
        "holster": true,
        "min_item_volume": "1250 ml",
        "max_contains_volume": "2500 L",
        "max_contains_weight": "10 kg",
        "max_item_length": "133 cm",
        "moves": 150
      }
    ],
    "material_thickness": 2,
    "flags": [ "WATER_FRIENDLY", "STURDY", "BELTED" ],
    "armor": [ { "encumbrance": [ 6, 6 ], "coverage": 30, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ]
  },
  {
    "id": "kawaii_maid_megane_01",
    "//": "Based on glasses_eye. Fancy, close layer, and counters both vision impairments.",
    "repairs_like": "survivor_goggles",
    "type": "ARMOR",
    "name": { "str": "pair of maid glasses", "str_pl": "pairs of maid glasses" },
    "description": "A maid wearing these will never miss the smallest speck of dust, nor signs of their Mistress's health.",
    "weight": "30 g",
    "volume": "250 ml",
    "price": 7900,
    "price_postapoc": 500,
    "to_hit": -2,
    "material": [ "glass", "plastic" ],
    "symbol": "[",
    "looks_like": "sunglasses",
    "color": "cyan",
    "material_thickness": 1,
    "environmental_protection": 1,
    "flags": [ "WATER_FRIENDLY", "FANCY", "FIX_NEARSIGHT", "FIX_FARSIGHT", "FRAGILE", "SKINTIGHT" ],
    "armor": [ { "coverage": 75, "covers": [ "eyes" ], "rigid_layer_only": true } ]
  },
  {
    "id": "kawaii_hitec_megane",
    "copy-from": "kawaii_maid_megane_01",
    "//": "Has ballistic glasses protection, survivor goggles perks, is fancy, counters both vision impairments, close layer, with only 75% coverage. These are glasses, not goggles.",
    "type": "ARMOR",
    "name": { "str": "pair of survivor maid glasses", "str_pl": "pairs of survivor maid glasses" },
    "description": "A maid wearing these will never miss the smallest speck of dust, nor signs of their Mistress's health. These have been reinforced with bullet resistant glass for greater protection, the ability to withstand chemical corrosion, and protection against bright flashes.",
    "weight": "90 g",
    "price": 8500,
    "price_postapoc": 650,
    "material": [ "plastic", "nylon" ],
    "material_thickness": 3,
    "environmental_protection": 4,
    "qualities": [ [ "GLARE", 1 ] ],
    "flags": [ "WATER_FRIENDLY", "FANCY", "FIX_NEARSIGHT", "FIX_FARSIGHT", "STURDY", "SKINTIGHT", "SUN_GLASSES", "FLASH_PROTECTION" ],
    "armor": [ { "coverage": 75, "covers": [ "eyes" ], "rigid_layer_only": true } ]
  },
  {
    "id": "kawaii_wedding_dress",
    "//": "Based on dress_wedding. Covers arms, encumbrance/warmth/volume/weight slightly higher than a regular dress as less tight-fitting, and has a different skin.",
    "repairs_like": "haori",
    "type": "ARMOR",
    "name": { "str": "wedding dress", "str_pl": "wedding dresses" },
    "description": "A pure white wedding dress.",
    "weight": "850 g",
    "volume": "4500 L",
    "price": 45000,
    "price_postapoc": 50,
    "to_hit": -5,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "dress_wedding",
    "color": "white",
    "warmth": 10,
    "material_thickness": 0.2,
    "flags": [ "VARSIZE", "SUPER_FANCY" ],
    "armor": [
      { "coverage": 90, "covers": [ "torso" ], "encumbrance": 10 },
      { "covers": [ "leg_l", "leg_r" ], "coverage": 50, "encumbrance": 10 },
      { "covers": [ "arm_l", "arm_r" ], "coverage": 50, "encumbrance": 10 }
    ]
  },
  {
    "id": "kawaii_wedding_veil_a",
    "//": "Copy of veil_wedding. Has a different skin, covers head only, close layer, not oversize.",
    "repairs_like": "veil_wedding",
    "type": "ARMOR",
    "name": { "str": "wedding veil" },
    "description": "A lacy white wedding veil.",
    "weight": "78 g",
    "volume": "750 ml",
    "price": 8000,
    "price_postapoc": 10,
    "to_hit": -1,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "scarf",
    "color": "white",
    "material_thickness": 0.01,
    "environmental_protection": 1,
    "flags": [ "SUPER_FANCY", "SKINTIGHT" ],
    "armor": [ { "encumbrance": 5, "coverage": 100, "covers": [ "head" ] } ]
  },
  {
    "id": "kawaii_wedding_veil_b",
    "copy-from": "kawaii_wedding_veil_a",
    "//": "Copy of the standard weding veil. Has a different skin, covers head only, close layer, not oversize.",
    "type": "ARMOR",
    "category": "clothing",
    "name": { "str": "wedding veil" },
    "description": "A lacy white wedding veil with additional adornments."
  },
  {
    "id": "kawaii_wedding_gloves",
    "//": "Copy of long_glove_white. Fancy.",
    "repairs_like": "long_glove_white",
    "type": "ARMOR",
    "name": { "str": "pair of wedding gloves", "str_pl": "pairs of wedding gloves" },
    "description": "A pair of pure white gloves to match a wedding dress.",
    "weight": "400 g",
    "volume": "1 L",
    "price": 1100,
    "price_postapoc": 100,
    "to_hit": 1,
    "material": [ "cotton" ],
    "symbol": "[",
    "looks_like": "long_glove_white",
    "color": "white",
    "armor": [
      { "covers": [ "hand_l", "hand_r" ], "coverage": 100, "encumbrance": 2 },
      {
        "covers": [ "arm_l", "arm_r" ],
        "specifically_covers": [ "arm_elbow_l", "arm_elbow_r", "arm_lower_l", "arm_lower_r" ],
        "coverage": 100,
        "encumbrance": 2
      },
      { "covers": [ "arm_l", "arm_r" ], "specifically_covers": [ "arm_upper_l", "arm_upper_r" ], "coverage": 50 }
    ],
    "warmth": 10,
    "material_thickness": 0.2,
    "flags": [ "VARSIZE", "SKINTIGHT", "FANCY" ]
  },
  {
    "id": "kawaii_wedding_shoes",
    "//": "Copy of dress_shoes, but with the white high maid shoes skin.",
    "repairs_like": "dress_shoes",
    "type": "ARMOR",
    "name": { "str": "pair of wedding shoes", "str_pl": "pairs of wedding shoes" },
    "description": "A pair of beautiful white heels to match a wedding dress.",
    "weight": "870 g",
    "volume": "1500 ml",
    "price": 12000,
    "price_postapoc": 250,
    "to_hit": 1,
    "bashing": 1,
    "material": [ "leather" ],
    "symbol": "[",
    "looks_like": "sneakers",
    "color": "dark_gray",
    "warmth": 10,
    "material_thickness": 2.0,
    "flags": [ "VARSIZE", "FANCY" ],
    "armor": [
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_heel_r", "foot_heel_l", "foot_arch_r", "foot_arch_l", "foot_toes_r", "foot_toes_l" ],
        "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 2 } ],
        "encumbrance": 15,
        "coverage": 100
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_ankle_r", "foot_ankle_l" ],
        "material": [ { "type": "leather", "covered_by_mat": 100, "thickness": 2.0 } ],
        "coverage": 40
      },
      {
        "covers": [ "foot_l", "foot_r" ],
        "specifically_covers": [ "foot_sole_r", "foot_sole_l" ],
        "material": [
          { "type": "leather", "covered_by_mat": 100, "thickness": 0.1 },
          { "type": "rubber", "covered_by_mat": 100, "thickness": 4.0 }
        ],
        "coverage": 100
      }
    ]
  }
]