summaryrefslogtreecommitdiff
path: root/revert-02_revert-book-revamp.patch
blob: 8822d8598391cf6272ebfbd1786c4844029d113a (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
--- a/data/json/items/book/misc.json
+++ b/data/json/items/book/misc.json
@@ -4,46 +4,36 @@
     "type": "BOOK",
     "name": { "str": "paperback abstract" },
     "description": "An ordinary paperback book.  Or is it?  It is.",
-    "weight": "400 g",
-    "volume": "750 ml",
+    "weight": "371 g",
+    "volume": "700 ml",
     "price": "750 cent",
     "price_postapoc": "50 cent",
     "material": [ "paper" ],
-    "bashing": 5,
-    "intelligence": 6,
     "symbol": "?",
     "looks_like": "story_book",
     "color": "light_cyan",
     "flags": [ "TINDER", "FLAMMABLE" ],
-    "time": "40 m",
-    "fun": 2
-  },
-  {
-    "id": "mag_comic",
-    "type": "BOOK",
-    "name": { "str": "comic book" },
-    "description": "A super-hero comic.",
-    "copy-from": "paperback_novel",
-    "weight": "60 g",
-    "volume": "200 ml",
-    "price": "3 USD",
-    "bashing": 1,
     "intelligence": 4,
     "time": "15 m",
-    "fun": 1
+    "chapters": 16,
+    "fun": 2
   },
   {
-    "id": "holybook_bible1",
+    "id": "ZSG",
     "type": "BOOK",
-    "name": { "str": "King James Bible", "str_pl": "copies of King James Bible" },
-    "description": "An English translation of the Christian Bible, which originated in England in the early 1600s.",
-    "copy-from": "paperback_novel",
-    "price": "550 cent",
-    "color": "dark_gray",
-    "time": "40 m",
+    "name": { "str": "Zombie Survival Guide", "str_pl": "copies of Zombie Survival Guide" },
+    "description": "While this seems like it would be very useful in this situation, the sheer amount of misinformation present makes it practically useless.",
+    "weight": "227 g",
+    "volume": "1 L",
+    "price": "1290 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "green",
     "intelligence": 7,
-    "fun": 1,
-    "flags": [ "INSPIRATIONAL" ]
+    "time": "18 m",
+    "chapters": 28,
+    "fun": 2
   },
   {
     "id": "black_box_transcript",
@@ -51,18 +41,32 @@
     "name": { "str": "black box transcript" },
     "//": "ooh, military records, probably Classified!",
     "description": "A full flight log for a military aircraft.  Nothing of interest stands out.",
-    "copy-from": "paperback_novel",
+    "weight": "566 g",
+    "volume": "1250 ml",
     "price": "50 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 5,
+    "material": [ "paper" ],
+    "symbol": "?",
     "color": "light_green",
-    "fun": -2
+    "intelligence": 8,
+    "time": "30 m",
+    "fun": -1
   },
   {
     "id": "child_book",
     "type": "BOOK",
     "name": { "str": "children's book" },
     "description": "A little book for little readers.  The colorful cartoon characters and sweet stories contained herein belong to a different time, before the dead walked and the world moved on.",
-    "copy-from": "paperback_novel",
+    "weight": "52 g",
+    "volume": "250 ml",
     "price": "550 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_cyan",
+    "time": "4 m",
+    "chapters": 4,
     "fun": 1
   },
   {
@@ -70,33 +74,66 @@
     "type": "BOOK",
     "name": { "str_sp": "Ranch Prospectus" },
     "description": "A short paper of the economic viability of constructing an agricultural outpost.",
-    "copy-from": "paperback_novel",
-    "price": "30 USD"
+    "weight": "1 g",
+    "volume": "250 ml",
+    "price": "30 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 1,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_cyan",
+    "intelligence": 5,
+    "time": "10 m"
   },
   {
     "id": "decoy_elfa",
     "type": "BOOK",
     "name": { "str": "standpipe maintenance log" },
     "description": "This binder details the scheduled maintenance for several plumbing systems throughout the facility.",
-    "copy-from": "black_box_transcript",
+    "weight": "400 g",
+    "volume": "750 ml",
     "price": "4 USD",
-    "material": [ "paper", "plastic" ]
+    "price_postapoc": "50 cent",
+    "material": [ "paper", "plastic" ],
+    "symbol": "?",
+    "color": "light_green",
+    "intelligence": 8,
+    "time": "45 m",
+    "fun": -2
   },
   {
     "id": "essay_book",
     "type": "BOOK",
     "name": { "str": "book of essays", "str_pl": "books of essays" },
     "description": "A collection of essays by various authors from around the world, including works by Churchill, Mailer, Eco, and Voltaire.",
-    "copy-from": "paperback_novel",
-    "price": "1250 cent"
+    "weight": "700 g",
+    "volume": "750 ml",
+    "price": "1250 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 10,
+    "time": "26 m",
+    "chapters": 40,
+    "fun": 3
   },
   {
     "id": "fairy_tales",
     "type": "BOOK",
     "name": { "str": "book of fairy tales", "str_pl": "books of fairy tales" },
     "description": "An amusing collection of folklore featuring the usual cast of fairies, goblins, and trolls.",
-    "copy-from": "paperback_novel",
+    "weight": "410 g",
+    "volume": "750 ml",
     "price": "950 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 6,
+    "time": "18 m",
+    "chapters": 24,
+    "fun": 3,
     "//": "The ids below represent the Aarne-Thompson System of folklore classification.  Do not change.",
     "snippet_category": [
       {
@@ -180,171 +217,577 @@
     ]
   },
   {
+    "id": "guidebook",
+    "type": "BOOK",
+    "name": { "str": "The Hitchhiker's Guide to the Cataclysm", "str_pl": "copies of The Hitchhiker's Guide to the Cataclysm" },
+    "description": "Inscribed on the cover in large, friendly letters, is the message \"Don't Panic\".",
+    "weight": "1764 g",
+    "volume": "1 L",
+    "price": "882 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 2,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "green",
+    "intelligence": 3,
+    "time": "1 m"
+  },
+  {
+    "id": "mycenacean_hymns",
+    "type": "BOOK",
+    "name": { "str": "Mycenacean Hymns", "str_pl": "copies of Mycenacean Hymns" },
+    "description": "A vellum book containing the hymns central to Marloss faith.  As the verses lead to each other, the text sings of unity and promised paradise.",
+    "weight": "368 g",
+    "volume": "1 L",
+    "price": "550 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "cyan",
+    "intelligence": 8,
+    "time": "10 m",
+    "fun": 1,
+    "flags": [ "INSPIRATIONAL" ]
+  },
+  {
+    "abstract": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Holy Book", "str_pl": "copies of Holy Book" },
+    "description": "This is an abstract used for holy books. If you see this, it is a bug.",
+    "weight": "368 g",
+    "volume": "1 L",
+    "price": "550 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "dark_gray",
+    "intelligence": 8,
+    "time": "10 m",
+    "fun": 1,
+    "flags": [ "INSPIRATIONAL" ]
+  },
+  {
+    "id": "holybook_bible1",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "King James Bible", "str_pl": "copies of King James Bible" },
+    "description": "An English translation of the Christian Bible, which originated in England in the early 1600s."
+  },
+  {
+    "id": "holybook_bible2",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Eastern Orthodox Bible", "str_pl": "copies of Eastern Orthodox Bible" },
+    "description": "An English copy of the Eastern Orthodox translation of The Holy Bible.",
+    "weight": "428 g",
+    "volume": "1250 ml"
+  },
+  {
+    "id": "holybook_bible3",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Gideon Bible", "str_pl": "copies of Gideon Bible" },
+    "description": "An English translation of the Christian Bible, distributed free of charge by Gideons International."
+  },
+  {
+    "id": "holybook_bible4",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Catholic Bible", "str_pl": "copies of Catholic Bible" },
+    "description": "An English copy of the Catholic Bible, including the whole 73 book canon recognized by the Catholic church."
+  },
+  {
+    "id": "holybook_granth",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Guru Granth Sahib", "str_pl": "copies of The Guru Granth Sahib" },
+    "description": "A single-volume copy of the central religious texts of Sikhism.",
+    "weight": "590 g"
+  },
+  {
+    "id": "holybook_hadith",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Hadith", "str_pl": "copies of Hadith" },
+    "description": "A Muslim religious text containing an account of the sayings and actions of the prophet Muhammad.",
+    "weight": "398 g",
+    "volume": "500 ml"
+  },
+  {
+    "id": "holybook_kallisti",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Principia Discordia", "str_pl": "copies of Principia Discordia" },
+    "description": "A book that embodies the main beliefs of Discordianism.  It seems to primarily concern chaos, and features a card in the back which informs you that you are now a 'genuine and authorized Pope of Discordia'.",
+    "weight": "292 g",
+    "volume": "150 ml"
+  },
+  {
+    "id": "holybook_kojiki",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Kojiki", "str_pl": "copies of The Kojiki" },
+    "description": "The oldest extant chronicle of Japan's myths and history, the stories contained in the Kojiki are part of the inspiration behind Shinto practices.",
+    "volume": "600 ml"
+  },
+  {
+    "id": "holybook_mormon",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Book of Mormon", "str_pl": "copies of The Book of Mormon" },
+    "description": "The sacred text of the Latter Day Saint movement of Christianity, originally published in 1830 by Joseph Smith.",
+    "volume": "600 ml"
+  },
+  {
+    "id": "holybook_pastafarian",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": {
+      "str": "The Gospel of the Flying Spaghetti Monster",
+      "str_pl": "copies of The Gospel of the Flying Spaghetti Monster"
+    },
+    "description": "A book that embodies the main beliefs of the Church of the Flying Spaghetti Monster.  It seems to involve a lot of pirates and some sort of invisible drunken monster made of pasta.",
+    "weight": "292 g",
+    "volume": "500 ml"
+  },
+  {
+    "id": "holybook_quran",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Quran", "str_pl": "copies of Quran" },
+    "description": "An English translation of the Muslim book of holy scriptures, with explanatory notes and commentaries to aid in understanding.",
+    "weight": "412 g",
+    "volume": "600 ml"
+  },
+  {
+    "id": "holybook_scientology",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Dianetics", "str_pl": "copies of Dianetics" },
+    "description": "This book is the canonical text of Scientology.  Written by a science fiction author, it contains self-improvement techniques and musings on psychology called Dianetics.",
+    "weight": "486 g",
+    "volume": "1300 ml"
+  },
+  {
+    "id": "holybook_slack",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Book of the SubGenius", "str_pl": "copies of The Book of the SubGenius" },
+    "description": "A book about the Church of the SubGenius.  It seems to involve a salesman named J. R. \"Bob\" Dobbs and a concept called 'slack'.",
+    "weight": "292 g",
+    "volume": "600 ml"
+  },
+  {
+    "id": "holybook_sutras",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Sutras of the Buddha", "str_pl": "copies of The Sutras of the Buddha" },
+    "description": "A collection of discourses attributed to the Buddha and his close disciples.",
+    "weight": "496 g"
+  },
+  {
+    "id": "holybook_talmud",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Talmud", "str_pl": "copies of Talmud" },
+    "description": "One of the central texts of Rabbinic Judaism, the Talmud expounds upon the Hebrew Bible with teachings and opinions of thousands of rabbis.",
+    "weight": "460 g"
+  },
+  {
+    "id": "holybook_tanakh",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Tanakh", "str_pl": "copies of Tanakh" },
+    "description": "A single-volume book containing the complete canon of the Jewish Bible.",
+    "weight": "512 g",
+    "volume": "1800 ml"
+  },
+  {
+    "id": "holybook_tripitaka",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Tripitaka", "str_pl": "copies of The Tripitaka" },
+    "description": "A collection of sacred Buddhist writings describing their canons of scriptures.",
+    "weight": "513 g"
+  },
+  {
+    "id": "holybook_upanishads",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Upanishads", "str_pl": "copies of The Upanishads" },
+    "description": "A collection of sacred Hindu writings regarding the nature of reality and describing the character and form of human salvation.",
+    "weight": "482 g",
+    "volume": "750 ml"
+  },
+  {
+    "id": "holybook_vedas",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Four Vedas", "str_pl": "copies of The Four Vedas" },
+    "description": "A single volume containing all four Vedas, which are the oldest scriptures of Hinduism.",
+    "weight": "540 g",
+    "volume": "1700 ml"
+  },
+  {
+    "id": "holybook_satanic",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "The Satanic Bible", "str_pl": "copies of The Satanic Bible" },
+    "description": "A collection of essays, observations, and rituals published by Anton LaVey in 1969.",
+    "weight": "130 g",
+    "volume": "250 ml"
+  },
+  {
+    "id": "holybook_taoism",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Tao Te Ching", "str_pl": "copies of Tao Te Ching" },
+    "description": "An English translation of the collection of poetry and sayings that guides Taoist thought and actions.",
+    "weight": "513 g"
+  },
+  {
+    "id": "holybook_confucianism",
+    "copy-from": "holybook_abstract",
+    "type": "BOOK",
+    "name": { "str": "Lunyu", "str_pl": "copies of the Lunyu" },
+    "description": "An English translation of the most-revered sacred scripture in the Confucian tradition, compiled by the succeeding generations of Confucius's disciples.  It is sometimes viewed as a philosophy and sometimes as a religion.",
+    "weight": "513 g"
+  },
+  {
+    "id": "holybook_paganism",
+    "copy-from": "holybook_abstract",
+    "//": "ISBN 1-57863-255-2",
+    "type": "BOOK",
+    "name": { "str": "Book of Pagan prayer", "str_pl": "copies of Book of Pagan prayer" },
+    "description": "A comprehensive selection of prayers to guide the reader on Pagan and Wiccan worship."
+  },
+  {
+    "id": "holybook_shamanism",
+    "copy-from": "holybook_abstract",
+    "//": "There's hundreds of shamanistic religions and folk beliefs, we can't model them all.",
+    "type": "BOOK",
+    "name": { "str": "Book of shamanistic and folk practices", "str_pl": "copies of Book of shamanistic and folk practices" },
+    "description": "A comprehensive book detailing the practices of a single region of shamanistic or folk beliefs."
+  },
+  {
+    "id": "mag_comic",
+    "type": "BOOK",
+    "name": { "str": "comic book" },
+    "description": "A super-hero comic.",
+    "weight": "60 g",
+    "volume": "250 ml",
+    "price": "300 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_cyan",
+    "time": "7 m",
+    "fun": 2
+  },
+  {
     "id": "mag_gaming",
     "type": "BOOK",
     "name": { "str": "Computer Gaming", "str_pl": "issues of Computer Gaming" },
     "description": "Reviews of recently released computer games and previews of upcoming titles.",
-    "copy-from": "mag_comic"
+    "weight": "60 g",
+    "volume": "250 ml",
+    "price": "300 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "pink",
+    "intelligence": 7,
+    "time": "8 m",
+    "fun": 2
   },
   {
     "id": "mag_news",
     "type": "BOOK",
     "name": { "str": "TIME magazine" },
     "description": "Current events concerning a bunch of people who're all (un)dead now.",
-    "copy-from": "mag_comic",
-    "price": "4 USD"
+    "weight": "60 g",
+    "volume": "250 ml",
+    "price": "400 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "pink",
+    "intelligence": 7,
+    "time": "10 m",
+    "fun": 2
   },
   {
     "id": "mag_porn",
     "type": "BOOK",
     "name": { "str": "Playboy", "str_pl": "issues of Playboy" },
     "description": "You can read it for the articles.  Or not.",
-    "copy-from": "mag_comic",
-    "price": "4 USD",
-    "price_postapoc": "250 cent",
-    "intelligence": 0,
-    "color": "pink"
+    "weight": "60 g",
+    "volume": "250 ml",
+    "price": "400 cent",
+    "price_postapoc": 250,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "pink",
+    "time": "10 m",
+    "chapters": 4,
+    "fun": 1
   },
   {
     "id": "necropolis_freq",
     "type": "BOOK",
     "name": { "str": "frequency list" },
     "description": "A notepad with a number of frequencies scribbled on it.",
-    "copy-from": "mag_comic",
+    "weight": "1 g",
+    "volume": "250 ml",
     "price": "30 USD",
-    "fun": -2
+    "price_postapoc": "50 cent",
+    "bashing": 1,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_cyan",
+    "intelligence": 2,
+    "time": "10 m"
   },
   {
     "id": "necropolis_datasheet",
+    "copy-from": "necropolis_freq",
     "type": "BOOK",
     "name": { "str": "reclamation team report" },
-    "description": "A short written report on the findings of a team sent to reclaim an underground civil defense shelter.  It lists several hazards and technical problems encountered during their exploration of the site, but mentions several military systems they expect could be repaired and used for communication.",
-    "copy-from": "necropolis_freq"
+    "description": "A short written report on the findings of a team sent to reclaim an underground civil defense shelter.  It lists several hazards and technical problems encountered during their exploration of the site, but mentions several military systems they expect could be repaired and used for communication."
   },
   {
     "id": "news_regional",
     "type": "BOOK",
     "name": { "str": "Rural Digest-Examiner", "str_pl": "issues of Rural Digest-Examiner" },
     "description": "A newsweekly covering regional events.  There is an article on the winter's snowstorms and several letters to the editor concerning the community response.",
-    "copy-from": "mag_comic",
-    "price": "350 cent"
+    "weight": "80 g",
+    "volume": "250 ml",
+    "price": "350 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "pink",
+    "intelligence": 5,
+    "time": "5 m",
+    "fun": 1
   },
   {
     "id": "novel_adventure",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "adventure novel" },
     "description": "The stirring tale of a race against time, in search of a lost city located in the dark heart of the African continent.",
-    "copy-from": "paperback_novel",
-    "price": "850 cent"
+    "price": "850 cent",
+    "time": "20 m",
+    "fun": 3
   },
   {
     "id": "novel_buddy",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "buddy novel" },
     "description": "A gripping tale of two friends struggling to survive on the streets of New York City.",
-    "copy-from": "paperback_novel",
-    "price": "650 cent"
+    "weight": "244 g",
+    "volume": "500 ml",
+    "price": "650 cent",
+    "time": "20 m"
   },
   {
     "id": "novel_coa",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "coming of age novel" },
     "description": "A classic tale about growing up, portraying one young man's funny and poignant experiences with life, love, and sex.",
-    "copy-from": "paperback_novel"
+    "weight": "187 g",
+    "volume": "500 ml",
+    "time": "20 m",
+    "snippet_category": [
+      {
+        "id": "coa1_1",
+        "text": "A classic tale about growing up, portraying one young man's funny and poignant experiences with life, love, and sex."
+      },
+      {
+        "id": "coa1_2",
+        "text": "A graphic novel about a young girl living in Iran during the 1980's, seeing the world change around her as Iraq invaded her country."
+      }
+    ]
   },
   {
     "id": "novel_crime",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "crime novel" },
     "description": "After their diamond heist goes wrong, the surviving criminals begin to suspect that one of them is a police informant.",
-    "copy-from": "paperback_novel",
-    "price": "850 cent"
+    "weight": "227 g",
+    "volume": "750 ml",
+    "price": "850 cent",
+    "intelligence": 6,
+    "time": "20 m",
+    "chapters": 24,
+    "fun": 3,
+    "snippet_category": [
+      {
+        "id": "crime1_1",
+        "text": "After their diamond heist goes wrong, the surviving criminals begin to suspect that one of them is a police informant."
+      },
+      {
+        "id": "crime1_2",
+        "text": "A story about three people in the fictional city of Los Santos, a gangster, an upper-class man, and a psychopath, eventually banding together to pull-off the biggest heist in the city's history."
+      },
+      {
+        "id": "crime1_3",
+        "text": "This is a copy of Murdered by the Grapevine. This cheap paperback tells the story of a mob boss done in by mere suspicion.  She never breaks a confidence, never rats out an accomplice, and never turns her back on a friend.  Nonetheless her grip on the reigns of the underworld is eroded by rumor and paranoia."
+      }
+    ]
   },
   {
     "id": "novel_drama",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "drama novel" },
     "description": "A real book for real adults.",
-    "copy-from": "paperback_novel"
+    "intelligence": 7,
+    "time": "25 m",
+    "chapters": 28,
+    "fun": 3
   },
   {
     "id": "novel_erotic",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "erotic novel" },
     "description": "A hackneyed fictional narrative concealing low-grade literary smut.",
-    "copy-from": "paperback_novel"
+    "weight": "200 g",
+    "volume": "500 ml",
+    "time": "18 m",
+    "chapters": 28
   },
   {
     "id": "novel_experimental",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "experimental novel" },
     "description": "A bizarre play about the philosophy of existential absurdity.  Or maybe it's about two guys waiting for their friend to show up.  It's confusing.",
-    "copy-from": "paperback_novel"
+    "weight": "142 g",
+    "volume": "500 ml",
+    "intelligence": 7,
+    "time": "20 m",
+    "chapters": 20
   },
   {
     "id": "novel_fantasy",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "fantasy novel" },
     "description": "Basic sword & sorcery.",
-    "copy-from": "paperback_novel"
+    "weight": "227 g",
+    "volume": "1 L",
+    "intelligence": 7,
+    "time": "20 m",
+    "chapters": 28,
+    "fun": 3
   },
   {
     "id": "novel_horror",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "horror novel" },
     "description": "Maybe not the best reading material considering the situation.",
-    "copy-from": "paperback_novel"
+    "weight": "227 g",
+    "intelligence": 7,
+    "time": "18 m",
+    "chapters": 28
   },
   {
     "id": "novel_mystery",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "mystery novel" },
     "description": "A detective investigates an unusual murder in a secluded location.",
-    "copy-from": "paperback_novel"
+    "intelligence": 7,
+    "time": "18 m",
+    "chapters": 28,
+    "fun": 3
   },
   {
     "id": "novel_pulp",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "pulp novel" },
     "description": "A hardboiled detective tale filled with hard hitting action and intrigue.",
-    "copy-from": "paperback_novel"
+    "intelligence": 6,
+    "time": "18 m",
+    "chapters": 24,
+    "fun": 3
   },
   {
     "id": "novel_road",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "road novel" },
     "description": "A tale about a group of friends who wander the USA in the 1960s against a backdrop of jazz, poetry and drug use.",
-    "copy-from": "paperback_novel"
+    "weight": "244 g",
+    "volume": "500 ml",
+    "time": "20 m",
+    "fun": 3
   },
   {
     "id": "novel_romance",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "romance novel" },
-    "description": "Drama and mild smut.",
-    "copy-from": "paperback_novel"
+    "description": "Drama and mild smut."
   },
   {
     "id": "novel_samurai",
     "type": "BOOK",
     "name": { "str": "samurai novel" },
     "description": "The classic tale of a wandering swordsman who comes to a small settlement and is hired to help the townsfolk defend themselves from a band of marauding outlaws.",
-    "copy-from": "paperback_novel"
+    "weight": "322 g",
+    "volume": "750 ml",
+    "price": "750 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 7,
+    "time": "20 m",
+    "chapters": 28,
+    "fun": 4
   },
   {
     "id": "novel_satire",
     "type": "BOOK",
     "name": { "str": "satire novel" },
     "description": "A political satire of the pre-apocalypse world.  Looking back on it from this side of Armageddon makes it seem all the more ridiculous.",
-    "copy-from": "paperback_novel",
-    "price": "850 cent"
+    "weight": "520 g",
+    "volume": "750 ml",
+    "price": "850 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 7,
+    "time": "36 m",
+    "chapters": 28,
+    "fun": 2
   },
   {
     "id": "novel_scifi",
     "type": "BOOK",
     "name": { "str": "scifi novel" },
     "description": "Aliens, ray guns, and space ships.",
-    "copy-from": "paperback_novel",
+    "weight": "227 g",
+    "volume": "750 ml",
     "price": "850 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 6,
+    "time": "20 m",
+    "chapters": 24,
+    "fun": 3,
     "snippet_category": [
       {
         "id": "scifi1_1",
@@ -492,59 +935,111 @@
   },
   {
     "id": "novel_sports",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "sports novel" },
     "description": "The dramatic tale of a small-time boxer who gets a rare chance to fight the heavy-weight champion, and seize his one chance to make a better life for himself while impressing the cute girl who works in the pet store.",
-    "copy-from": "paperback_novel"
+    "intelligence": 7,
+    "time": "20 m",
+    "chapters": 28,
+    "fun": 3
   },
   {
     "id": "novel_spy",
     "type": "BOOK",
     "name": { "str": "spy novel" },
     "description": "A tale of intrigue and espionage amongst Nazis, no, Commies, no, Iraqis!",
-    "copy-from": "paperback_novel"
+    "copy-from": "paperback_novel",
+    "intelligence": 5,
+    "time": "18 m",
+    "chapters": 20,
+    "fun": 3,
+    "snippet_category": [
+      { "id": "spy1_1", "text": "A tale of intrigue and espionage amongst Nazis, no, Commies, no, Iraqis!" },
+      {
+        "id": "spy1_2",
+        "text": "This is a copy of Come Fly the Treacherous Skies. A tale of intrigue betrays the story of a debonair mechanic driven by a lust for revenge.  As she uncovers a sophisticated network of amateur pilots turned smugglers, the good guys and the bad guys begin to all look the same."
+      },
+      {
+        "id": "spy1_3",
+        "text": "This is a copy of Lies, Damn Lies, and Rocket Science. This spy novel tells the story of a jaded rocket scientist looking for redemption in all the wrong places.  As selling state secrets becomes her career, she learns there isn't much of difference between a double-agent and a triple-agent."
+      }
+    ]
   },
   {
     "id": "novel_swash",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "swashbuckling novel" },
     "description": "An exciting seventeenth century tale of how an enslaved Irish doctor and his comrades-in-chains escape and become heroic pirates of the Robin Hood variety.",
-    "copy-from": "paperback_novel"
+    "weight": "582 g",
+    "volume": "750 ml",
+    "intelligence": 7,
+    "time": "20 m",
+    "chapters": 28,
+    "fun": 4
   },
   {
     "id": "novel_thriller",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "thriller novel" },
     "description": "A suspenseful tale of betrayal and revenge.",
-    "copy-from": "paperback_novel"
+    "intelligence": 5,
+    "time": "18 m",
+    "chapters": 20,
+    "fun": 3
   },
   {
     "id": "novel_tragedy",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "tragedy novel" },
     "description": "The story of two young lovers whose feuding families threaten to keep them apart.",
-    "copy-from": "paperback_novel"
+    "weight": "263 g",
+    "volume": "1 L",
+    "intelligence": 7,
+    "time": "18 m",
+    "chapters": 28
   },
   {
     "id": "novel_war",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "war novel" },
     "description": "A thrilling narrative of survival in a prisoner of war camp during the Second World War, filled with riveting subplots about rat farming and dysentery.",
-    "copy-from": "paperback_novel"
+    "weight": "686 g",
+    "intelligence": 7,
+    "time": "20 m",
+    "chapters": 28,
+    "fun": 3,
+    "snippet_category": [
+      {
+        "id": "war1_1",
+        "text": "A thrilling narrative of survival in a prisoner of war camp during the Second World War, filled with riveting subplots about rat farming and dysentery."
+      },
+      {
+        "id": "war1_2",
+        "text": "A story about a Bosnian citizen who goes through many hardships and near death during the breakup of Yugoslavia."
+      }
+    ]
   },
   {
     "id": "novel_western",
+    "copy-from": "paperback_novel",
     "type": "BOOK",
     "name": { "str": "western novel" },
     "description": "The classic tale of a gunfighting stranger who comes to a small settlement and is hired to help the townsfolk defend themselves from a band of marauding outlaws.",
-    "copy-from": "paperback_novel"
+    "intelligence": 5,
+    "time": "20 m",
+    "chapters": 28,
+    "fun": 4
   },
   {
     "id": "philosophy_book",
     "type": "BOOK",
     "name": { "str": "book of philosophy", "str_pl": "books of philosophy" },
     "description": "A deep discussion of morality with an emphasis on epistemology and logic.",
-    "copy-from": "paperback_novel",
     "snippet_category": [
       {
         "id": "philosophy1",
@@ -694,59 +1189,137 @@
       },
       { "id": "philosophy45", "text": "This is a copy of \"Anti-Capitalist Mentality\" by Ludwig von Mises." }
     ],
-    "price": "1250 cent"
+    "weight": "350 g",
+    "volume": "750 ml",
+    "price": "1250 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 9,
+    "time": "36 m",
+    "chapters": 44,
+    "fun": 3
   },
   {
     "id": "phonebook",
     "type": "BOOK",
     "name": { "str": "phone book" },
     "description": "This hefty volume contains the telephone numbers of individuals, businesses, and utilities in the nearby area, pretty useless during the apocalypse and all.",
-    "copy-from": "black_box_transcript",
-    "weight": "2 kg",
-    "volume": "1500 ml",
-    "price": "8 USD"
+    "weight": "854 g",
+    "volume": "2500 ml",
+    "price": "8 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 2,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "yellow",
+    "intelligence": 4,
+    "time": "1 m",
+    "chapters": 200,
+    "fun": -5
   },
   {
     "id": "photo_album",
     "type": "BOOK",
     "name": { "str": "photo album" },
     "description": "A leather album full of photos of somebody's family.  You don't know any of the people in them, but seeing these pictures still makes you think of happier times.",
-    "copy-from": "paperback_novel",
+    "weight": "180 g",
+    "volume": "250 ml",
     "price": "30 USD",
+    "price_postapoc": "50 cent",
     "material": [ "paper", "leather" ],
-    "fun": 1
+    "symbol": "?",
+    "color": "light_gray",
+    "time": "10 m",
+    "chapters": 4,
+    "fun": 1,
+    "flags": [ "INSPIRATIONAL" ]
   },
   {
     "id": "plays_book",
     "type": "BOOK",
     "name": { "str": "book of plays", "str_pl": "books of plays" },
     "description": "A collection of plays by various authors from around the world, including scripts by Wilde, Beckett, Checkov, and Shakespeare.",
-    "copy-from": "paperback_novel",
-    "price": "1150 cent"
+    "weight": "700 g",
+    "volume": "750 ml",
+    "price": "1150 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 9,
+    "time": "18 m",
+    "chapters": 36,
+    "fun": 2
   },
   {
     "id": "poetry_book",
     "type": "BOOK",
     "name": { "str": "book of poetry", "str_pl": "books of poetry" },
     "description": "A collection of poetry by various authors from around the world, including writings by Dickinson, Goethe, Thoreau, and Yeats.",
-    "copy-from": "paperback_novel",
-    "price": "1050 cent"
+    "weight": "400 g",
+    "volume": "500 ml",
+    "price": "1050 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 9,
+    "time": "18 m",
+    "chapters": 36,
+    "fun": 2
+  },
+  {
+    "id": "priest_diary",
+    "type": "BOOK",
+    "name": { "str": "priest's diary", "str_pl": "priests' diaries" },
+    "description": "A small book filled with journal entries in Latin.",
+    "weight": "340 g",
+    "volume": "750 ml",
+    "price": "15 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 3,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_gray",
+    "intelligence": 15,
+    "time": "30 m",
+    "fun": -1,
+    "flags": [ "INSPIRATIONAL", "MORBID" ]
   },
   {
     "id": "record_accounting",
     "type": "BOOK",
     "name": { "str": "corporate accounting ledger" },
     "description": "If you knew what to look for something might stand out…",
-    "copy-from": "black_box_transcript",
-    "price": "20 USD"
+    "weight": "566 g",
+    "volume": "1250 ml",
+    "price": "20 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 5,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_green",
+    "intelligence": 10,
+    "time": "30 m",
+    "fun": -1
   },
   {
     "id": "record_patient",
     "type": "BOOK",
     "name": { "str_sp": "patient treatment records" },
     "description": "A massive stack of medical records that contain every gory detail.",
-    "copy-from": "paperback_novel",
+    "weight": "680 g",
+    "volume": "1500 ml",
     "price": "5 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 6,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_green",
+    "intelligence": 8,
+    "time": "30 m",
     "fun": -1,
     "flags": [ "MORBID" ]
   },
@@ -755,31 +1328,92 @@
     "type": "BOOK",
     "name": { "str_sp": "national weather transcripts" },
     "description": "Old weather records are about as interesting as a rock.",
-    "copy-from": "black_box_transcript",
-    "price": "5 USD"
+    "weight": "454 g",
+    "volume": "1750 ml",
+    "price": "5 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 7,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_green",
+    "intelligence": 4,
+    "time": "30 m",
+    "fun": -1
   },
   {
     "id": "story_book",
     "type": "BOOK",
     "name": { "str": "big book of short stories", "str_pl": "big books of short stories" },
     "description": "This humongous volume contains a vast collection of short stories by different authors, spanning a wide variety of topics and genres.",
-    "copy-from": "paperback_novel",
-    "price": "14 USD"
+    "weight": "1720 g",
+    "volume": "1 L",
+    "price": "14 USD",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 7,
+    "time": "48 m",
+    "chapters": 28,
+    "fun": 5
   },
   {
     "id": "tall_tales",
     "type": "BOOK",
     "name": { "str": "book of tall tales", "str_pl": "books of tall tales" },
     "description": "An entertaining collection of early American folklore, featuring tales of larger than life individuals and their amazing adventures.",
-    "copy-from": "paperback_novel",
-    "price": "1050 cent"
+    "weight": "360 g",
+    "volume": "750 ml",
+    "price": "1050 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_blue",
+    "intelligence": 6,
+    "time": "18 m",
+    "chapters": 24,
+    "fun": 3
+  },
+  {
+    "id": "visions_solitude",
+    "type": "BOOK",
+    "name": { "str": "Visions in Solitude", "str_pl": "copies of Visions in Solitude" },
+    "description": "A small book detailing 'visions' a prisoner had on death row.",
+    "weight": "227 g",
+    "volume": "750 ml",
+    "price": "29 USD",
+    "price_postapoc": "50 cent",
+    "bashing": 3,
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "light_cyan",
+    "intelligence": 6,
+    "time": "30 m",
+    "fun": 2,
+    "flags": [ "INSPIRATIONAL", "MORBID" ]
+  },
+  {
+    "id": "holybook_havamal",
+    "type": "BOOK",
+    "name": { "str": "Hávamál", "str_pl": "copies of Hávamál" },
+    "description": "An English translation of several Old Norse poems.  The poems contain proverbs and stories attributed to the god Odin, many transcribed from oral history.",
+    "weight": "292 g",
+    "volume": "750 ml",
+    "price": "550 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "symbol": "?",
+    "color": "dark_gray",
+    "intelligence": 8,
+    "time": "10 m",
+    "fun": 1,
+    "flags": [ "INSPIRATIONAL" ]
   },
   {
     "type": "BOOK",
     "id": "classic_literature",
     "name": { "str": "book of classic literature", "str_pl": "books of classic literature" },
     "description": "A book of classic literature, timeless and enjoyable but a bit dense to read.",
-    "copy-from": "paperback_novel",
     "snippet_category": [
       { "id": "classic1", "text": "This is a copy of Dickens' \"Bleak House\"." },
       { "id": "classic2", "text": "This is a copy of \"Great Expectations\" by Charles Dickens." },
@@ -805,84 +1439,97 @@
       },
       {
         "id": "classic14",
-        "text": "This is a copy of \"Jane Eyre\".  The cover art is quite out of place, making it look more like a dime-store romance novel."
+        "text": "This is a paperback copy of the well-known classic \"Dark Days Ahead\", by K. G. Ranade.  There are scrawled margin notes all over it, apparently the workings of a confused and feverish mind."
       },
       {
         "id": "classic15",
-        "text": "This is a perfectly preserved hardcover copy of \"The Gunslinger\" by Stephen King, autographed by the author.  It contains a certificate of authenticity pronouncing it to be a first edition."
+        "text": "This is a copy of \"Jane Eyre\".  The cover art is quite out of place, making it look more like a dime-store romance novel."
       },
       {
         "id": "classic16",
-        "text": "This paperback copy of \"Wuthering Heights\" has a large coffee stain on the first page."
+        "text": "This is a perfectly preserved hardcover copy of \"The Gunslinger\" by Stephen King, autographed by the author.  It contains a certificate of authenticity pronouncing it to be a first edition."
       },
       {
         "id": "classic17",
-        "text": "This is a hardbound copy of \"Lady Chatterly's Lover\", by D. H. Lawrence.  It has some very explicit illustrations."
+        "text": "This paperback copy of \"Wuthering Heights\" has a large coffee stain on the first page."
       },
       {
         "id": "classic18",
-        "text": "This is a hardbound copy of \"The Catcher in the Rye.\".  It has some very nicely done illustrations."
+        "text": "This is a hardbound copy of \"Lady Chatterly's Lover\", by D. H. Lawrence.  It has some very explicit illustrations."
       },
       {
         "id": "classic19",
+        "text": "This is a hardbound copy of \"The Catcher in the Rye.\".  It has some very nicely done illustrations."
+      },
+      {
+        "id": "classic20",
         "text": "This is a collection of classic renaissance era stories, headlined by \"Don Quixote\"."
       },
-      { "id": "classic20", "text": "This is a paperback copy of \"The Fellowship of the Ring\" by Tolkien." },
-      { "id": "classic21", "text": "This is a paperback copy of \"The Two Towers\" by Tolkien." },
-      { "id": "classic22", "text": "This is a paperback copy of \"The Return of the King\" by Tolkien." },
+      { "id": "classic21", "text": "This is a paperback copy of \"The Fellowship of the Ring\" by Tolkien." },
+      { "id": "classic22", "text": "This is a paperback copy of \"The Two Towers\" by Tolkien." },
+      { "id": "classic23", "text": "This is a paperback copy of \"The Return of the King\" by Tolkien." },
       {
-        "id": "classic23",
+        "id": "classic24",
         "text": "This is a hardbound collection of George Orwell's works, including \"1984\" and \"Animal Farm\" as well as many of his less infamous titles."
       },
       {
-        "id": "classic24",
+        "id": "classic25",
         "text": "This is a paperback copy of \"Little Women\" by Louisa May Alcott.  It appears to have been read a great many times."
       },
-      { "id": "classic25", "text": "This is a paperback copy of \"Of Mice and Men\" by Steinbeck." },
+      { "id": "classic26", "text": "This is a paperback copy of \"Of Mice and Men\" by Steinbeck." },
       {
-        "id": "classic26",
+        "id": "classic27",
         "text": "This is a hefty hardcover copy of \"Run and Run Again\" by Finn Calpay.  There is a lengthy forward about the controversy around the book's release."
       },
       {
-        "id": "classic27",
+        "id": "classic28",
         "text": "This is a hardcover copy of \"The Gates Have Opened\" by Arianna Methusalah.  You feel like you've read this before, but can't remember where.  Something about the book fills you with unease."
       },
-      { "id": "classic28", "text": "This is a copy of \"The Count of Monte Cristo\" by Dumas." },
-      { "id": "classic29", "text": "This is a copy of \"The Secret Garden\" by Frances Burnett." },
-      { "id": "classic30", "text": "This is a copy of \"Lieutenant Hornblower\" by C.S. Forester." },
-      { "id": "classic31", "text": "This is a copy of \"Master and Commander\" by Patrick O'Brian." },
-      { "id": "classic32", "text": "This is a copy of \"The Warden\" by Anthony Trollope." },
-      { "id": "classic33", "text": "This is a copy of \"The Far Side of the World\" by Patrick O'Brian." },
-      { "id": "classic34", "text": "This is a copy of \"HMS Surprise\" by Patrick O'Brian." },
-      { "id": "classic35", "text": "This is a copy of \"Barchester Towers\" by Anthony Trollope." },
-      { "id": "classic36", "text": "This is a copy of \"The Land Ironclads\" by H.G. Wells." },
-      { "id": "classic37", "text": "This is a copy of \"The Great Boer War\" by Arthur Conan Doyle." },
-      { "id": "classic38", "text": "This is a copy of \"The Crime of the Congo\" by Arthur Conan Doyle." },
-      { "id": "classic39", "text": "This is a copy of \"The Parasite\" by Arthur Conan Doyle." },
-      { "id": "classic40", "text": "This is a copy of \"By Stroke of Sword\" by Andrew Balfour." },
-      { "id": "classic41", "text": "This is a copy of \"The Secret Agent\" by Joseph Conrad." },
-      { "id": "classic42", "text": "This is a copy of \"Lord Jim\" by Joseph Conrad." },
-      { "id": "classic43", "text": "This is a copy of \"Vanity Fair\" by William Makepeace Thackeray." },
-      { "id": "classic44", "text": "This is a copy of \"The Luck of Barry Lyndon\" by William Makepeace Thackeray." },
-      { "id": "classic45", "text": "This is a copy of \"North and South\" by Elizabeth Gaskell." },
-      { "id": "classic46", "text": "This is a copy of \"The Mayor of Casterbridge\" by Thomas Hardy." },
-      { "id": "classic47", "text": "This is a copy of \"Wessex Tales\" by Thomas Hardy." },
-      { "id": "classic48", "text": "This is a copy of \"Far from the Madding Crowd\" by Thomas Hardy." },
-      { "id": "classic49", "text": "This is a copy of \"Captains Courageous\" by Rudyard Kipling." },
-      { "id": "classic50", "text": "This is a copy of \"The Canterbury Tales\" by Geoffrey Chaucer." },
-      { "id": "classic51", "text": "This is a copy of \"Harold, the Last of the Saxons\" by Edward Bulwer-Lytton." },
-      { "id": "classic52", "text": "This is a copy of \"Mr Midshipman Easy\" by Frederick Marryat." },
-      { "id": "classic53", "text": "This is a copy of \"Peter Simple\" by Frederick Marryat." }
+      { "id": "classic29", "text": "This is a copy of \"The Count of Monte Cristo\" by Dumas." },
+      { "id": "classic30", "text": "This is a copy of \"The Secret Garden\" by Frances Burnett." },
+      { "id": "classic31", "text": "This is a copy of \"Lieutenant Hornblower\" by C.S. Forester." },
+      { "id": "classic32", "text": "This is a copy of \"Master and Commander\" by Patrick O'Brian." },
+      { "id": "classic33", "text": "This is a copy of \"The Warden\" by Anthony Trollope." },
+      { "id": "classic34", "text": "This is a copy of \"The Far Side of the World\" by Patrick O'Brian." },
+      { "id": "classic35", "text": "This is a copy of \"HMS Surprise\" by Patrick O'Brian." },
+      { "id": "classic36", "text": "This is a copy of \"Barchester Towers\" by Anthony Trollope." },
+      { "id": "classic37", "text": "This is a copy of \"The Land Ironclads\" by H.G. Wells." },
+      { "id": "classic38", "text": "This is a copy of \"The Great Boer War\" by Arthur Conan Doyle." },
+      { "id": "classic39", "text": "This is a copy of \"The Crime of the Congo\" by Arthur Conan Doyle." },
+      { "id": "classic40", "text": "This is a copy of \"The Parasite\" by Arthur Conan Doyle." },
+      { "id": "classic41", "text": "This is a copy of \"By Stroke of Sword\" by Andrew Balfour." },
+      { "id": "classic42", "text": "This is a copy of \"The Secret Agent\" by Joseph Conrad." },
+      { "id": "classic43", "text": "This is a copy of \"Lord Jim\" by Joseph Conrad." },
+      { "id": "classic44", "text": "This is a copy of \"Vanity Fair\" by William Makepeace Thackeray." },
+      { "id": "classic45", "text": "This is a copy of \"The Luck of Barry Lyndon\" by William Makepeace Thackeray." },
+      { "id": "classic46", "text": "This is a copy of \"North and South\" by Elizabeth Gaskell." },
+      { "id": "classic47", "text": "This is a copy of \"The Mayor of Casterbridge\" by Thomas Hardy." },
+      { "id": "classic48", "text": "This is a copy of \"Wessex Tales\" by Thomas Hardy." },
+      { "id": "classic49", "text": "This is a copy of \"Far from the Madding Crowd\" by Thomas Hardy." },
+      { "id": "classic50", "text": "This is a copy of \"Captains Courageous\" by Rudyard Kipling." },
+      { "id": "classic51", "text": "This is a copy of \"The Canterbury Tales\" by Geoffrey Chaucer." },
+      { "id": "classic52", "text": "This is a copy of \"Harold, the Last of the Saxons\" by Edward Bulwer-Lytton." },
+      { "id": "classic53", "text": "This is a copy of \"Mr Midshipman Easy\" by Frederick Marryat." },
+      { "id": "classic54", "text": "This is a copy of \"Peter Simple\" by Frederick Marryat." }
     ],
+    "weight": "350 g",
+    "volume": "750 ml",
     "price": "20 USD",
-    "looks_like": "tall_tales"
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
+    "looks_like": "tall_tales",
+    "color": "light_blue",
+    "symbol": "?",
+    "intelligence": 7,
+    "time": "28 m",
+    "chapters": 40,
+    "fun": 3
   },
   {
     "type": "BOOK",
     "id": "collector_book",
     "name": { "str": "collector's edition book" },
     "description": "A unique, valuable book that has been kept as a collector's item.",
-    "copy-from": "paperback_novel",
     "snippet_category": [
       { "id": "fancy1", "text": "This is a high-quality leather bound copy of Charles Dickens' \"A Tale of Two Cities\"." },
       { "id": "fancy2", "text": "This is a very old but well-preserved copy of Charles Dickens' \"Oliver Twist\"." },
@@ -929,36 +1576,49 @@
       },
       {
         "id": "fancy14",
-        "text": "This is a well-kept leather bound copy of \"Oryx and Crake\" by Margaret Atwood.  Inscribed in the inner cover is a faded note wishing the owner a happy birthday."
+        "text": "This is a high-quality leather bound copy of the well-known classic \"Dark Days Ahead\", by K. G. Ranade."
       },
       {
         "id": "fancy15",
-        "text": "This is a perfectly preserved hardcover copy of \"The Gunslinger\" by Stephen King, autographed by the author.  It contains a certificate of authenticity pronouncing it to be a first edition."
+        "text": "This is a well-kept leather bound copy of \"Oryx and Crake\" by Margaret Atwood.  Inscribed in the inner cover is a faded note wishing the owner a happy birthday."
       },
       {
         "id": "fancy16",
-        "text": "This bright orange hardcover copy of \"1984\" by George Orwell has been carefully preserved, and appears to be a first or second edition judging from the publisher's information."
+        "text": "This is a perfectly preserved hardcover copy of \"The Gunslinger\" by Stephen King, autographed by the author.  It contains a certificate of authenticity pronouncing it to be a first edition."
       },
       {
         "id": "fancy17",
-        "text": "This is a very nice copy of \"Lady Chatterly's Lover\", probably quite expensive in the days before the apocalypse."
+        "text": "This bright orange hardcover copy of \"1984\" by George Orwell has been carefully preserved, and appears to be a first or second edition judging from the publisher's information."
       },
       {
         "id": "fancy18",
-        "text": "This is a high quality early edition hardcover copy of \"The Handmaid's Tale\" by Margaret Atwood, signed by the author."
+        "text": "This is a very nice copy of \"Lady Chatterly's Lover\", probably quite expensive in the days before the apocalypse."
       },
       {
         "id": "fancy19",
-        "text": "This ancient and worn book looks to be an 18th or early 19th century handwritten copy of \"Don Quixote\".  In the days of book traders it would have been worth an absolute fortune.  Now it's either a priceless piece of history, some light reading before bed, or excellent kindling."
+        "text": "This is a high quality early edition hardcover copy of \"The Handmaid's Tale\" by Margaret Atwood, signed by the author."
       },
       {
         "id": "fancy20",
+        "text": "This ancient and worn book looks to be an 18th or early 19th century handwritten copy of \"Don Quixote\".  In the days of book traders it would have been worth an absolute fortune.  Now it's either a priceless piece of history, some light reading before bed, or excellent kindling."
+      },
+      {
+        "id": "fancy21",
         "text": "This is a first edition copy of Terry Pratchett's \"The Colour of Magic\".  In the inner cover is a handwritten note that reads \"To Chris, thanks for believing I could do it.  Best regards, Terry.\""
       }
     ],
+    "weight": "400 g",
+    "volume": "750 ml",
     "price": "4550 cent",
+    "price_postapoc": "50 cent",
+    "material": [ "paper" ],
     "looks_like": "tall_tales",
-    "fun": 3
+    "color": "light_blue",
+    "symbol": "?",
+    "intelligence": 7,
+    "time": "28 m",
+    "chapters": 40,
+    "fun": 4
   },
   {
     "id": "sa_cryptology_key",