-
Notifications
You must be signed in to change notification settings - Fork 0
/
MariaDB.sql
1219 lines (1187 loc) · 120 KB
/
MariaDB.sql
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
CREATE TABLE `users` (
`identifier` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`group` varchar(50) DEFAULT 'user',
`warnings` int(11) DEFAULT 0,
`banned` tinyint(1) DEFAULT NULL,
`banneduntil` int(10) DEFAULT 0,
`char` INT DEFAULT 5, /* max characters allowed*/
PRIMARY KEY (`identifier`),
UNIQUE KEY `identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
CREATE TABLE `bank_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`identifier` varchar(50) NOT NULL COLLATE 'utf8mb4_bin',
`charidentifier` int(11) NOT NULL,
`money` double(22,2) DEFAULT 0.00,
`gold` double(22,2) DEFAULT 0.00,
`items` longtext DEFAULT '[]',
`invspace` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `name` (`name`),
INDEX `bankusers` (`identifier`) USING BTREE,
CONSTRAINT `bankusers` FOREIGN KEY (`identifier`) REFERENCES `users` (`identifier`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=UTF8MB4;
CREATE TABLE `characters` (
`identifier` varchar(50) COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`steamname` varchar(50) COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`charidentifier` int(11) NOT NULL AUTO_INCREMENT,
`group` varchar(10) COLLATE utf8mb4_bin DEFAULT 'user',
`money` double(11,2) DEFAULT 0.00,
`gold` double(11,2) DEFAULT 0.00,
`rol` double(11,2) NOT NULL DEFAULT 0.00,
`xp` int(11) DEFAULT 0,
`healthouter` int(4) DEFAULT 500,
`healthinner` int(4) DEFAULT 100,
`staminaouter` int(4) DEFAULT 100,
`staminainner` int(4) DEFAULT 100,
`hours` float NOT NULL DEFAULT 0,
`LastLogin` date DEFAULT NULL,
`inventory` longtext COLLATE utf8mb4_bin DEFAULT NULL,
`slots` DECIMAL(20,1) NOT NULL DEFAULT 35.0,
`job` varchar(50) COLLATE utf8mb4_bin DEFAULT 'unemployed',
`joblabel` varchar(255) DEFAULT 'job label',
`status` varchar(140) COLLATE utf8mb4_bin DEFAULT '{}',
`meta` varchar(255) COLLATE utf8mb4_bin NOT NULL DEFAULT '{}',
`firstname` varchar(50) COLLATE utf8mb4_bin DEFAULT ' ',
`lastname` varchar(50) COLLATE utf8mb4_bin DEFAULT ' ',
`character_desc` MEDIUMTEXT NOT NULL DEFAULT ' ' COLLATE 'utf8mb4_bin',
`gender` VARCHAR(50) NOT NULL DEFAULT ' ' COLLATE 'utf8mb4_bin',
`age` INT(11) NOT NULL DEFAULT '0',
`nickname` VARCHAR(50) NULL DEFAULT ' ' COLLATE 'utf8mb4_bin',
`skinPlayer` longtext COLLATE utf8mb4_bin DEFAULT NULL,
`compPlayer` longtext COLLATE utf8mb4_bin DEFAULT NULL,
`compTints` LONGTEXT NULL DEFAULT NULL COLLATE 'utf8mb4_bin',
`jobgrade` int(11) DEFAULT 0,
`coords` LONGTEXT COLLATE utf8mb4_bin DEFAULT '{}',
`isdead` tinyint(1) DEFAULT 0,
`trust` int(11) DEFAULT 0,
`walk` varchar(50) COLLATE utf8mb4_bin DEFAULT 'noanim',
`crafting` longtext COLLATE utf8mb4_bin DEFAULT '{"medical":0,"blacksmith":0,"basic":0,"survival":0,"brewing":0,"food":0}',
`info` longtext COLLATE utf8mb4_bin DEFAULT '{}',
`gunsmith` double(11,2) DEFAULT 0.00,
`ammo` longtext COLLATE utf8mb4_bin DEFAULT '{}',
`discordid` varchar(255) COLLATE utf8mb4_bin DEFAULT '0',
`lastjoined` longtext COLLATE utf8mb4_bin DEFAULT '[]',
UNIQUE KEY `identifier_charidentifier` (`identifier`,`charidentifier`) USING BTREE,
KEY `charidentifier` (`charidentifier`) USING BTREE,
KEY `crafting` (`crafting`(768)),
KEY `compPlayer` (`compPlayer`(768)),
KEY `info` (`info`(768)),
KEY `inventory` (`inventory`(768)),
KEY `coords` (`coords`),
KEY `money` (`money`),
KEY `meta` (`meta`),
KEY `steamname` (`steamname`),
CONSTRAINT `FK_characters_users` FOREIGN KEY (`identifier`) REFERENCES `users` (`identifier`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC;
CREATE TABLE `housing` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`charidentifier` int(11) NOT NULL,
`inventory` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`furniture` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`open` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 34307 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
CREATE TABLE `rooms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`interiorId` int(11) NOT NULL,
`inventory` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL,
`identifier` varchar(60) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`charidentifier` int(11) NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 4 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC;
CREATE TABLE `character_inventories` (
`character_id` int(11) DEFAULT NULL,
`inventory_type` varchar(100) NOT NULL DEFAULT 'default',
`item_crafted_id` int(11) NOT NULL,
`item_name` VARCHAR(50) COLLATE 'utf8mb4_general_ci' DEFAULT 'item',
`amount` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
KEY `character_inventory_idx` (`character_id`,`inventory_type`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
CREATE TABLE `herbalists` (
`identifier` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`charidentifier` int(11) NOT NULL,
`location` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
PRIMARY KEY (`identifier`) USING BTREE,
UNIQUE KEY `identifier_charidentifier` (`identifier`,`charidentifier`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
CREATE TABLE `item_group` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`description` VARCHAR(255) NOT NULL COMMENT 'Description of Item Group',
PRIMARY KEY (`id`)
) AUTO_INCREMENT=1;
INSERT INTO `item_group` (`id`, `description`) VALUES (1,"default");
CREATE TABLE `items` (
`item` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
`label` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
`limit` INT(11) NOT NULL DEFAULT '1',
`can_remove` TINYINT(1) NOT NULL DEFAULT '1',
`type` VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`usable` TINYINT(1) NULL DEFAULT NULL,
`id` INT(11) NOT NULL AUTO_INCREMENT,
`groupId` INT(10) UNSIGNED NOT NULL DEFAULT '1' COMMENT 'Item Group ID for Filtering',
`metadata` LONGTEXT NULL DEFAULT '{}' COLLATE 'utf8mb4_bin',
`desc` VARCHAR(5550) NOT NULL DEFAULT 'nice item' COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`item`) USING BTREE,
UNIQUE INDEX `id` (`id`) USING BTREE,
INDEX `FK_items_item_group` (`groupId`) USING BTREE,
CONSTRAINT `FK_items_item_group` FOREIGN KEY (`groupId`) REFERENCES `item_group`(`id`) ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT `metadata` CHECK (json_valid(`metadata`))
)COLLATE='utf8mb4_general_ci' ENGINE=InnoDB ROW_FORMAT=DYNAMIC AUTO_INCREMENT=1;
INSERT INTO `item_group` (`description`) VALUES
('medical'),
('foods'),
('tools'),
('weapons'),
('ammo'),
('documents'),
('animals'),
('valuables'),
('horse'),
('herbs');
CREATE TABLE `items_crafted` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`character_id` int(11) NOT NULL,
`item_id` int(11) NOT NULL,
`item_name` VARCHAR(50) COLLATE 'utf8mb4_general_ci' DEFAULT 'item',
`updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
`metadata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`metadata`)),
PRIMARY KEY (`id`),
UNIQUE KEY `ID` (`id`),
KEY `crafted_item_idx` (`character_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=UTF8MB4;
CREATE TABLE `loadout` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_bin',
`charidentifier` int(11) DEFAULT NULL,
`name` varchar(50) DEFAULT NULL,
`ammo` varchar(255) NOT NULL DEFAULT '{}',
`components` varchar(255) NOT NULL DEFAULT '{}',
`dirtlevel` double DEFAULT 0,
`mudlevel` double DEFAULT 0,
`conditionlevel` double DEFAULT 0,
`rustlevel` double DEFAULT 0,
`used` tinyint(4) DEFAULT 0,
`used2` tinyint(4) DEFAULT 0,
`dropped` int(11) NOT NULL DEFAULT 0,
`comps` longtext NOT NULL DEFAULT '{}',
`label` varchar(50) DEFAULT NULL,
`curr_inv` varchar(100) NOT NULL DEFAULT 'default',
`serial_number` VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`custom_label` VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`custom_desc` VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`id`),
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=UTF8MB4;
CREATE TABLE `mailbox_mails` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sender_id` varchar(50) DEFAULT NULL,
`sender_firstname` varchar(50) DEFAULT NULL,
`sender_lastname` varchar(50) DEFAULT NULL,
`receiver_id` varchar(50) DEFAULT NULL,
`receiver_firstname` varchar(50) DEFAULT NULL,
`receiver_lastname` varchar(50) DEFAULT NULL,
`message` text DEFAULT NULL,
`opened` tinyint(1) DEFAULT 0,
`received_at` datetime DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4;
CREATE TABLE `outfits` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(45) NOT NULL,
`charidentifier` int(11) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`comps` longtext DEFAULT NULL,
`compTints` longtext DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
CREATE TABLE `wagons` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(40) NOT NULL,
`charid` int(11) NOT NULL,
`selected` int(11) NOT NULL DEFAULT 0,
`model` varchar(50) NOT NULL,
`name` varchar(50) NOT NULL,
`items` longtext DEFAULT '{}',
PRIMARY KEY (`id`),
KEY `FK_horses_characters` (`charid`),
KEY `model` (`model`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=UTF8MB4;
CREATE TABLE `stables` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`charidentifier` int(11) NOT NULL,
`name` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`modelname` varchar(70) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`type` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`status` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`xp` int(11) NULL DEFAULT 0,
`injured` int(11) NULL DEFAULT 0,
`gear` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
`isDefault` int(11) NOT NULL DEFAULT 0,
`inventory` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
CREATE TABLE `horse_complements` (
`identifier` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
`charidentifier` int(11) NOT NULL,
`complements` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
UNIQUE INDEX `identifier`(`identifier`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = DYNAMIC;
SET FOREIGN_KEY_CHECKS = 1;
CREATE TABLE `whitelist` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`identifier` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_bin',
`status` TINYINT(1) NULL DEFAULT NULL,
`firstconnection` TINYINT(1) NULL DEFAULT '1',
`discordid` VARCHAR(255) NULL DEFAULT '0' COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `identifier` (`identifier`) USING BTREE
)COLLATE='utf8mb4_general_ci' ENGINE=InnoDB ROW_FORMAT=DYNAMIC AUTO_INCREMENT=1;
INSERT IGNORE INTO `items` (`item`, `label`, `limit`, `can_remove`, `type`, `usable`, `metadata`, `desc`) VALUES
('acid', 'Acid', 10, 1, 'item_standard', 1,'{}', 'A corrosive substance used for various purposes.'),
('Agarita', 'Agarita', 10, 1, 'item_standard', 1,'{}', 'A flowering plant found in the wild, known for its medicinal properties.'),
('Agarita_Seed', 'Agarita Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Agarita plants.'),
('Alaskan_Ginseng', 'Alaskan Ginseng', 10, 1, 'item_standard', 1,'{}', 'A type of ginseng native to the Alaskan region, prized for its healing properties.'),
('Alaskan_Ginseng_Seed', 'Alaskan Ginseng Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Alaskan Ginseng.'),
('alcohol', 'Alcohol', 10, 1, 'item_standard', 1,'{}', 'An intoxicating beverage consumed for recreational purposes.'),
('aligatormeat', 'Alligator Meat', 20, 1, 'item_standard', 1,'{}', 'Raw meat obtained from hunting alligators, suitable for cooking.'),
('aligators', 'Alligator Pelt', 20, 1, 'item_standard', 1,'{}', 'The skin of an alligator, commonly used for crafting and trading.'),
('aligatorto', 'Alligator Tooth', 20, 1, 'item_standard', 1,'{}', 'A tooth extracted from an alligator, sometimes used for decorative purposes.'),
('American_Ginseng', 'American Ginseng', 10, 1, 'item_standard', 1,'{}', 'A species of ginseng native to North America, valued for its medicinal properties.'),
('American_Ginseng_Seed', 'American Ginseng Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow American Ginseng.'),
('ammoarrownormal', 'Arrow Normal', 10, 1, 'item_standard', 1,'{}', 'A standard arrow used with bows for hunting and combat.'),
('ammoarrowdynamite', 'Arrow Dynamite', 10, 1, 'item_standard', 1,'{}', 'An explosive arrow designed to cause significant damage upon impact.'),
('ammoarrowfire', 'Arrow Fire', 10, 1, 'item_standard', 1,'{}', 'An arrow equipped with a flaming tip, capable of setting targets on fire.'),
('ammoarrowimproved', 'Arrow Improved', 10, 1, 'item_standard', 1,'{}', 'An upgraded arrow with improved accuracy and damage.'),
('ammoarrowpoison', 'Arrow Poison', 10, 1, 'item_standard', 1,'{}', 'An arrow coated with a poisonous substance, capable of inflicting additional damage over time.'),
('ammoarrowsmallgame', 'Arrow Small Game', 10, 1, 'item_standard', 1,'{}', 'A specialized arrow designed for hunting small game without damaging their pelts.'),
('ammobolahawk', 'Bola Ammo Hawk', 10, 1, 'item_standard', 1,'{}', 'A projectile consisting of weights attached to ropes, used to immobilize targets.'),
('ammobolainterwired', 'Bola Ammo Interwired', 10, 1, 'item_standard', 1,'{}', 'A reinforced bola ammunition with interwoven materials, providing enhanced durability.'),
('ammobolaironspiked', 'Bola Ammo Ironspiked', 10, 1, 'item_standard', 1,'{}', 'A bola ammunition featuring iron spikes, inflicting additional damage to immobilized targets.'),
('ammobolla', 'Bolla Ammo', 10, 1, 'item_standard', 1,'{}', 'A weighted throwing weapon used to ensnare and immobilize targets.'),
('ammodynamite', 'Dynamite Ammo', 10, 1, 'item_standard', 1,'{}', 'An explosive device with a short fuse, capable of causing significant damage.'),
('ammoelephant', 'Elephant Rifle Ammo', 10, 1, 'item_standard', 1,'{}', 'Ammunition specifically designed for powerful elephant rifles, providing superior stopping power.'),
('ammoknives', 'Knives Ammo', 10, 1, 'item_standard', 1,'{}', 'Ammunition for a throwing knife, used as a versatile and silent weapon.'),
('ammomolotov', 'Molotov Ammo', 10, 1, 'item_standard', 1,'{}', 'A glass bottle filled with flammable liquid, designed to burst into flames upon impact.'),
('ammopistolexplosive', 'Pistol Ammo Explosive', 10, 1, 'item_standard', 1,'{}', 'Ammunition for a pistol with explosive properties, causing significant damage upon impact.'),
('ammopistolexpress', 'Pistol Ammo Express', 10, 1, 'item_standard', 1,'{}', 'High-velocity ammunition specifically designed for pistols, providing increased range and damage.'),
('ammopistolnormal', 'Pistol Ammo Normal', 10, 1, 'item_standard', 1,'{}', 'Standard ammunition used with pistols for self-defense and combat.'),
('ammopistolsplitpoint', 'Pistol Ammo Splitpoint', 10, 1, 'item_standard', 1,'{}', 'Ammunition with a split point tip, designed to cause more damage and improve accuracy.'),
('ammopistolvelocity', 'Pistol Ammo Velocity', 10, 1, 'item_standard', 1,'{}', 'Ammunition designed to enhance the velocity and accuracy of pistol shots.'),
('ammopoisonbottle', 'Poison Bottle Ammo', 10, 1, 'item_standard', 1,'{}', 'A glass bottle filled with a poisonous substance, used to coat weapons and inflict additional damage.'),
('ammorepeaterexplosive', 'Repeater Ammo Explosive', 10, 1, 'item_standard', 1,'{}', 'Ammunition for a repeater rifle with explosive properties, causing significant damage upon impact.'),
('ammorepeaterexpress', 'Repeater Ammo Express', 10, 1, 'item_standard', 1,'{}', 'High-velocity ammunition specifically designed for repeater rifles, providing increased range and damage.'),
('ammorepeaternormal', 'Repeater Ammo Normal', 10, 1, 'item_standard', 1,'{}', 'Standard ammunition used with repeater rifles for self-defense and combat.'),
('ammorepeatersplitpoint', 'Repeater Ammo Splitpoint', 10, 1, 'item_standard', 1,'{}', 'Ammunition with a split point tip, designed to cause more damage and improve accuracy when used with repeater rifles.'),
('ammorepeatervelocity', 'Repeater Ammo Velocity', 10, 1, 'item_standard', 1,'{}', 'Ammunition designed to enhance the velocity and accuracy of repeater rifle shots.'),
('ammorevolverexplosive', 'Revolver Ammo Explosive', 10, 1, 'item_standard', 1,'{}', 'Ammunition for a revolver with explosive properties, causing significant damage upon impact.'),
('ammorevolverexpress', 'Revolver Ammo Express', 10, 1, 'item_standard', 1,'{}', 'High-velocity ammunition specifically designed for revolvers, providing increased range and damage.'),
('ammorevolvernormal', 'Revolver Ammo Normal', 10, 1, 'item_standard', 1,'{}', 'Standard ammunition used with revolvers for self-defense and combat.'),
('ammorevolversplitpoint', 'Revolver Ammo Splitpoint', 10, 1, 'item_standard', 1,'{}', 'Ammunition with a split point tip, designed to cause more damage and improve accuracy when used with revolvers.'),
('ammorevolvervelocity', 'Revolver Ammo Velocity', 10, 1, 'item_standard', 1,'{}', 'Ammunition designed to enhance the velocity and accuracy of revolver shots.'),
('ammorifleexplosive', 'Rifle Ammo Explosive', 10, 1, 'item_standard', 1,'{}', 'Ammunition for a rifle with explosive properties, causing significant damage upon impact.'),
('ammorifleexpress', 'Rifle Ammo Express', 10, 1, 'item_standard', 1,'{}', 'High-velocity ammunition specifically designed for rifles, providing increased range and damage.'),
('ammoriflenormal', 'Rifle Ammo Normal', 10, 1, 'item_standard', 1,'{}', 'Standard ammunition used with rifles for self-defense and combat.'),
('ammoriflesplitpoint', 'Rifle Ammo Splitpoint', 10, 1, 'item_standard', 1,'{}', 'Ammunition with a split point tip, designed to cause more damage and improve accuracy when used with rifles.'),
('ammoriflevelocity', 'Rifle Ammo Velocity', 10, 1, 'item_standard', 1,'{}', 'Ammunition designed to enhance the velocity and accuracy of rifle shots.'),
('ammoshotgunexplosive', 'Shotgun Ammo Explosive', 10, 1, 'item_standard', 1,'{}', 'Ammunition for a shotgun with explosive properties, causing significant damage upon impact.'),
('ammoshotgunincendiary', 'Shotgun Ammo Incendiary', 10, 1, 'item_standard', 1,'{}', 'Ammunition designed to ignite targets, causing them to burst into flames.'),
('ammoshotgunnormal', 'Shotgun Ammo Normal', 10, 1, 'item_standard', 1,'{}', 'Standard ammunition used with shotguns for self-defense and combat.'),
('ammoshotgunslug', 'Shotgun Ammo Slug', 10, 1, 'item_standard', 1,'{}', 'Ammunition with a single solid projectile, offering increased accuracy and range for shotguns.'),
('ammotomahawk', 'Tomahawk Ammo', 10, 1, 'item_standard', 1,'{}', 'Ammo used for Tomahawk throwing weapons'),
('ammovarmint', 'Varmint Ammo', 10, 1, 'item_standard', 1,'{}', 'Ammo used for Varmint rifles'),
('ammovarminttranq', 'Varmint Tranquilizer Ammo', 10, 1, 'item_standard', 1,'{}', 'Ammo used for tranquilizing animals with Varmint rifles'),
('ammovoldynamite', 'Volatile Dynamite Ammo', 10, 1, 'item_standard', 1,'{}', 'Ammo used for crafting Volatile Dynamite'),
('ammovolmolotov', 'Volatile Molotov Ammo', 10, 1, 'item_standard', 1,'{}', 'Ammo used for crafting Volatile Molotovs'),
('antipoison', 'Antipoison', 20, 1, 'item_standard', 1,'{}', 'A medicine used to counteract the effects of poison'),
('antipoison2', 'Anti Snake Poison', 20, 1, 'item_standard', 1,'{}', 'A poison used to fend off snakes'),
('apple', 'Apple', 20, 1, 'item_standard', 1,'{}', 'A juicy and delicious fruit'),
('applebarrel', 'Apple Barrel', 20, 1, 'item_standard', 1,'{}', 'A barrel filled with fresh apples'),
('applebasket', 'Apple Basket', 20, 1, 'item_standard', 1,'{}', 'A basket filled with fresh apples'),
('appleCrumbMash', 'Minty Berry Mash', 10, 1, 'item_standard', 1,'{}', 'A mashed mixture of mint and berries used for crafting Moonshine'),
('appleCrumbMoonshine', 'Minty Berry Moonshine', 10, 1, 'item_standard', 1,'{}', 'A strong alcoholic beverage made from mint and berries'),
('apple_barrel', 'Apple Barrel', 20, 1, 'item_standard', 1,'{}', 'A barrel filled with fresh apples'),
('apple_basket', 'Apple Basket', 20, 1, 'item_standard', 1,'{}', 'A basket filled with fresh apples'),
('Apple_Seed', 'Apple Seed', 10, 1, 'item_standard', 1,'{}', 'A seed used for growing apple trees'),
('armadilloc', 'Armadillo Claws', 20, 1, 'item_standard', 1,'{}', 'Sharp claws harvested from an Armadillo'),
('armadillos', 'Armadillo Pelt', 20, 1, 'item_standard', 1,'{}', 'A pelt taken from an Armadillo'),
('asnakes', 'Copperhead Snake pelt', 20, 1, 'item_standard', 1,'{}', 'A valuable pelt from a Copperhead Snake.'),
('a_c_fishbluegil_01_ms', 'Medium Bluegil', 10, 1, 'item_standard', 0,'{}', 'A medium-sized Bluegil fish.'),
('a_c_fishbluegil_01_sm', 'Small Bluegil', 5, 1, 'item_standard', 0,'{}', 'A small Bluegil fish.'),
('a_c_fishbullheadcat_01_ms', 'Medium Bullhead', 10, 1, 'item_standard', 0,'{}', 'A medium-sized Bullhead fish.'),
('a_c_fishbullheadcat_01_sm', 'Small Bullhead', 5, 1, 'item_standard', 0,'{}', 'A small Bullhead fish.'),
('a_c_fishchainpickerel_01_ms', 'Medium Pickerel', 10, 1, 'item_standard', 0,'{}', 'A medium-sized Pickerel fish.'),
('a_c_fishchainpickerel_01_sm', 'Small Pickerel', 5, 1, 'item_standard', 0,'{}', 'A small Pickerel fish.'),
('a_c_fishlargemouthbass_01_ms', 'Largemouth Bass', 10, 1, 'item_standard', 0,'{}', 'A large Largemouth Bass fish.'),
('a_c_fishperch_01_ms', 'Medium Perch', 10, 1, 'item_standard', 0,'{}', 'A medium-sized Perch fish.'),
('a_c_fishperch_01_sm', 'Small Perch', 5, 1, 'item_standard', 0,'{}', 'A small Perch fish.'),
('a_c_fishrainbowtrout_01_ms', 'Rainbow Trout', 10, 1, 'item_standard', 0,'{}', 'A Rainbow Trout fish.'),
('a_c_fishredfinpickerel_01_ms', 'Medium Redfin Pickerel', 10, 1, 'item_standard', 0,'{}', 'A medium-sized Redfin Pickerel fish.'),
('a_c_fishredfinpickerel_01_sm', 'Small Redfin Pickerel', 5, 1, 'item_standard', 0,'{}', 'A small Redfin Pickerel fish.'),
('a_c_fishrockbass_01_ms', 'Medium Rockbass', 10, 1, 'item_standard', 0,'{}', 'A medium-sized Rockbass fish.'),
('a_c_fishrockbass_01_sm', 'Small Rockbass', 5, 1, 'item_standard', 0,'{}', 'A small Rockbass fish.'),
('a_c_fishsalmonsockeye_01_ms', 'Sockeye Salmon', 10, 1, 'item_standard', 0,'{}', 'A Sockeye Salmon fish.'),
('a_c_fishsmallmouthbass_01_ms', 'Smallmouth Bass', 10, 1, 'item_standard', 0,'{}', 'A small and tasty bass fish.'),
('badgers', 'Badger skin', 20, 1, 'item_standard', 1,'{}', 'Skin obtained from a badger.'),
('bait', 'Bait', 20, 1, 'item_standard', 1,'{}', 'Used as bait to attract fish while fishing.'),
('banana', 'Banana', 20, 1, 'item_standard', 1,'{}', 'A delicious and nutritious tropical fruit.'),
('bandage', 'Bandage', 20, 1, 'item_standard', 1,'{}', 'A medical item used to dress wounds.'),
('barrel', 'Barrel', 5, 1, 'item_standard', 1,'{}', 'A container made of wood or metal used for storing or transporting goods.'),
('bat_c', 'Bat', 20, 1, 'item_standard', 1,'{}', 'A flying mammal known for its nocturnal habits.'),
('Bay_Bolete', 'Bay Bolete', 10, 1, 'item_standard', 1,'{}', 'An edible mushroom with a brown cap and yellow pores.'),
('Bay_Bolete_Seed', 'Bay Bolete Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Bay Bolete mushrooms.'),
('bbears', 'Black Bear skin', 20, 1, 'item_standard', 1,'{}', 'Skin obtained from a black bear.'),
('bbirdb', 'Cormorant beak', 20, 1, 'item_standard', 1,'{}', 'Beak obtained from a cormorant bird.'),
('bbirdf', 'Cormorant feather', 20, 1, 'item_standard', 1,'{}', 'Feather obtained from a cormorant bird.'),
('bcandle', 'Bottle Candle', 20, 1, 'item_standard', 1,'{}', 'A candle made from a glass bottle.'),
('bearbench', 'Bear Bench', 20, 1, 'item_standard', 1,'{}', 'A bench made from the hide and bones of a bear.'),
('bearc', 'Bear claws', 20, 1, 'item_standard', 1,'{}', 'Sharp claws obtained from a bear.'),
('beart', 'Bear tooth', 20, 1, 'item_standard', 1,'{}', 'A tooth obtained from a bear.'),
('bear_bench', 'Bear Bench', 20, 1, 'item_standard', 1,'{}', 'A bench made from the hide and bones of a bear.'),
('beavertail', 'Beaver tail', 20, 1, 'item_standard', 1,'{}', 'A flat and scaly tail obtained from a beaver.'),
('beawers', 'Beaver pelt', 20, 1, 'item_standard', 1,'{}', 'A pelt obtained from a beaver.'),
('beef', 'Beef', 20, 1, 'item_standard', 1,'{}', 'Fresh and tender beef meat.'),
('beefjerky', 'Beef Jerky', 20, 1, 'item_standard', 1,'{}', 'Dried and seasoned beef meat.'),
('beer', 'Beer', 10, 1, 'item_standard', 1,'{}', 'An alcoholic beverage brewed from grains.'),
('beerbox', 'Beer Box', 20, 1, 'item_standard', 1,'{}', 'A container holding multiple bottles of beer.'),
('bigchest', 'Big Chest', 1, 1, 'item_standard', 1,'{}', 'A large chest for storing items.'),
('biggame', 'Big Game Meat', 20, 1, 'item_standard', 1,'{}', 'Meat obtained from a large game animal.'),
('Big_Leather', 'Big Leather', 10, 1, 'item_standard', 1,'{}', 'Large piece of leather.'),
('bird', 'Bird Meat', 20, 1, 'item_standard', 1,'{}', 'Meat obtained from a bird.'),
('bisonhorn', 'Bison horn', 20, 1, 'item_standard', 1,'{}', 'A horn obtained from a bison.'),
('bisons', 'Bison pelt', 20, 1, 'item_standard', 1,'{}', 'A pelt obtained from a bison.'),
('Bitter_Weed', 'Bitter Weed', 10, 1, 'item_standard', 1,'{}', 'A type of bitter herb.'),
('Bitter_Weed_Seed', 'Bitter Weed Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow bitter weed.'),
('blackberryale', 'Black Berry Ale', 10, 1, 'item_standard', 1,'{}', 'An ale made from blackberries.'),
('Black_Berry', 'Black Berry', 10, 1, 'item_standard', 1,'{}', 'A small and sweet black-colored berry.'),
('Black_Berry_Seed', 'Black Berry Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow blackberries.'),
('Black_Currant', 'Black Currant', 10, 1, 'item_standard', 1,'{}', 'A small dark purple berry with a tart flavor.'),
('Black_Currant_Seed', 'Black Currant Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow black currants.'),
('blanketbox', 'Blanket Box', 20, 1, 'item_standard', 1,'{}', 'A box used for storing blankets.'),
('blanket_box', 'Blanket Box', 20, 1, 'item_standard', 1,'{}', 'A box used for storing blankets.'),
('Blood_Flower', 'Blood Flower', 10, 1, 'item_standard', 1,'{}', 'A type of flower with red petals.'),
('Blood_Flower_Seed', 'Blood Flower Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow blood flowers.'),
('blueberry', 'Blueberry', 10, 1, 'item_standard', 1,'{}', 'A small sweet fruit with a bluish color.'),
('bluejay_c', 'Blue jay', 20, 1, 'item_standard', 1,'{}', 'A colorful bird known as blue jay.'),
('bmdresser', 'brown mirror dresser', 20, 1, 'item_standard', 1,'{}', 'A dresser with a brown mirror.'),
('boarmusk', 'Boar tusk', 20, 1, 'item_standard', 1,'{}', 'A large tusk obtained from a boar.'),
('boars', 'Boar pelt', 20, 1, 'item_standard', 1,'{}', 'A pelt obtained from a boar.'),
('boaskin', 'Boa Snake pelt', 20, 1, 'item_standard', 1,'{}', 'A snake skin obtained from a boa.'),
('boiledegg', 'Boiled Egg', 10, 1, 'item_standard', 1,'{}', 'An egg cooked by boiling.'),
('boobyb', 'Red-footed booby beak', 20, 1, 'item_standard', 1,'{}', 'A beak obtained from a red-footed booby bird.'),
('boobyf', 'Red-footed booby feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from a red-footed booby bird.'),
('book', 'Book', 5, 1, 'item_standard', 1,'{}', 'A written or printed work consisting of pages.'),
('bountylicns', 'Bounty Hunter License', 10, 1, 'item_standard', 1,'{}', 'A license granting permission to be a bounty hunter.'),
('bouquet', 'Bouquet', 1, 1, 'item_standard', 1,'{}', 'A collection of flowers arranged in an artistic way.'),
('bparrotb', 'Parrot beak', 20, 1, 'item_standard', 1,'{}', 'A beak obtained from a parrot.'),
('bparrotf', 'Parrot feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from a parrot.'),
('buckantler', 'Buck Antlers', 20, 1, 'item_standard', 1,'{}', 'Antlers obtained from a buck.'),
('bucks', 'Buck skin', 20, 1, 'item_standard', 1,'{}', 'A pelt obtained from a buck.'),
('bullhorn', 'Bull horn', 20, 1, 'item_standard', 1,'{}', 'A horn obtained from a bull.'),
('bulls', 'Bull pelt', 20, 1, 'item_standard', 1,'{}', 'A pelt obtained from a bull.'),
('Bulrush', 'Bulrush', 10, 1, 'item_standard', 1,'{}', 'A type of tall wetland plant.'),
('Bulrush_Seed', 'Bulrush Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow bulrushes.'),
('bunkbed', 'bunk bed', 20, 1, 'item_standard', 1,'{}', 'A bed with two tiers, designed for multiple occupants.'),
('Burdock_Root', 'Burdock Root', 10, 1, 'item_standard', 1,'{}', 'The root of a burdock plant, often used for medicinal purposes.'),
('Burdock_Root_Seed', 'Burdock Root Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow burdock roots.'),
('butchertable1', 'Small Butcher Table', 20, 1, 'item_standard', 1,'{}', 'A small table used for butchering animals.'),
('butchertable2', 'Medium Butcher Table', 20, 1, 'item_standard', 1,'{}', 'A medium-sized table used for butchering animals.'),
('butchertable3', 'Large Butcher Table', 20, 1, 'item_standard', 1,'{}', 'A large table used for butchering animals.'),
('bwdresser', 'brown wood dresser', 20, 1, 'item_standard', 1,'{}', 'A dresser made of brown wood.'),
('camera', 'Camera', 1, 1, 'item_standard', 1,'{}', 'A device used to capture photographs.'),
('campfire', 'Campfire', 5, 1, 'item_standard', 1,'{}', 'A fire pit used for cooking and warmth during camping.'),
('candlea', 'Candle', 20, 1, 'item_standard', 1,'{}', 'A wax candle that provides light.'),
('cane', 'Cane', 1, 1, 'item_standard', 1,'{}', 'A walking stick for support and stability.'),
('cardinal_c', 'Cardinal bird', 20, 1, 'item_standard', 1,'{}', 'A small, colorful bird known for its distinctive crest.'),
('Cardinal_Flower', 'Cardinal Flower', 10, 1, 'item_standard', 1,'{}', 'A vibrant red flower often found near water.'),
('Cardinal_Flower_Seed', 'Cardinal Flower Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Cardinal Flowers.'),
('carrots', 'Carrot', 10, 1, 'item_standard', 1,'{}', 'An orange root vegetable commonly used in cooking.'),
('cedarwaxwing_c', 'Cedar waxwing', 20, 1, 'item_standard', 1,'{}', 'A medium-sized bird with a distinctive crest and red tips on its wings.'),
('Chanterelles', 'Chanterelles', 10, 1, 'item_standard', 1,'{}', 'A type of edible mushroom with a fruity aroma.'),
('Chanterelles_Seed', 'Chanterelles Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Chanterelles mushrooms.'),
('char', 'Char', 10, 1, 'item_standard', 0,'{}', 'A type of fish commonly found in cold, deep lakes and rivers.'),
('chestc', 'Chest C', 20, 1, 'item_standard', 1,'{}', 'A storage container used to store items securely.'),
('chewingtobacco', 'Chewing Tobacco', 20, 1, 'item_standard', 1,'{}', 'A form of tobacco that is chewed rather than smoked.'),
('chickenf', 'Chicken feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from a chicken.'),
('chickenheart', 'Chicken heart', 20, 1, 'item_standard', 1,'{}', 'The internal organ of a chicken.'),
('chipmunk_c', 'Chipmunk', 20, 1, 'item_standard', 1,'{}', 'A small, striped rodent known for its burrowing habits.'),
('Choc_Daisy', 'Choc Daisy', 10, 1, 'item_standard', 1,'{}', 'A beautiful Choc Daisy.'),
('Choc_Daisy_Seed', 'Choc Daisy Seed', 10, 1, 'item_standard', 1,'{}', 'A seed to grow Choc Daisies.'),
('cigar', 'Cigar', 20, 1, 'item_standard', 1,'{}', 'A fine cigar for relaxing.'),
('cigarette', 'Cigarette', 20, 1, 'item_standard', 1,'{}', 'A cigarette for a quick smoke.'),
('cigarettefilter', 'Cig Filter', 20, 1, 'item_standard', 1,'{}', 'A filter for cigarettes.'),
('cinematicket', 'Ticket', 2, 1, 'item_standard', 0,'{}', 'A ticket for a movie or event.'),
('clay', 'Clay', 20, 1, 'item_standard', 1,'{}', 'A block of clay for crafting.'),
('cleanser', 'Cleanser', 5, 1, 'item_standard', 1,'{}', 'A cleanser for various uses.'),
('clothbench', 'Cloth Bench', 20, 1, 'item_standard', 1,'{}', 'A bench made of cloth material.'),
('clothesline', 'Clothes Line', 20, 1, 'item_standard', 1,'{}', 'A line for hanging clothes.'),
('clothes_line', 'Clothes Line', 20, 1, 'item_standard', 1,'{}', 'A line for hanging clothes.'),
('cloth_bench', 'Cloth Bench', 20, 1, 'item_standard', 1,'{}', 'A bench made of cloth material.'),
('coal', 'Coal', 20, 1, 'item_standard', 1,'{}', 'A chunk of coal for fuel.'),
('cockc', 'Rooster claws', 20, 1, 'item_standard', 1,'{}', 'Claws from a rooster.'),
('cockf', 'Rooster feather', 20, 1, 'item_standard', 1,'{}', 'Feathers from a rooster.'),
('cocoa', 'Cocoa', 20, 1, 'item_standard', 1,'{}', 'Cocoa beans for making chocolate.'),
('cocoaseeds', 'Cocoa Seeds', 10, 1, 'item_standard', 1,'{}', 'Seeds to grow cocoa plants.'),
('coffindecor', 'Coffin Decor', 20, 1, 'item_standard', 1,'{}', 'Decorations for a coffin.'),
('condenser', 'Condenser', 5, 1, 'item_standard', 1,'{}', 'A device used to condense substances.'),
('condorb', 'Condor beak', 20, 1, 'item_standard', 1,'{}', 'A beak from a condor bird.'),
('condorf', 'Condor feather', 20, 1, 'item_standard', 1,'{}', 'A beautiful feather from a condor.'),
('consumable_bluegil', 'Dried Bluegil', 10, 1, 'item_standard', 1,'{}', 'A dried Bluegil fish.'),
('consumable_breakfast', 'Breakfast', 5, 1, 'item_standard', 1,'{}', 'A hearty breakfast meal.'),
('consumable_caramel', 'Caramel', 5, 1, 'item_standard', 1,'{}', 'Sweet and sticky caramel.'),
('consumable_chocolate', 'Chocolate Bar', 10, 1, 'item_standard', 1,'{}', 'A delicious chocolate bar.'),
('consumable_coffee', 'Coffee', 5, 1, 'item_standard', 1,'{}', 'A warm cup of coffee.'),
('consumable_fruitsalad', 'Fruit Salad', 5, 1, 'item_standard', 1,'{}', 'A refreshing fruit salad.'),
('consumable_game', 'Jerkied GameMeat', 10, 1, 'item_standard', 1,'{}', 'Dried and seasoned game meat.'),
('consumable_haycube', 'Haycube', 10, 1, 'item_standard', 1,'{}', 'A compact cube of hay.'),
('consumable_herb_chanterelles', 'Chanterelles', 10, 1, 'item_standard', 1,'{}', 'A bundle of Chanterelle mushrooms.'),
('consumable_herb_evergreen_huckleberry', 'Evergreen Huckleberry', 10, 1, 'item_standard', 1,'{}', 'Plump and juicy Evergreen Huckleberries.'),
('consumable_herb_oregano', 'Oregano', 10, 1, 'item_standard', 1,'{}', 'Fragrant oregano leaves.'),
('consumable_herb_vanilla_flower', 'Vanilla Flower', 10, 1, 'item_standard', 1,'{}', 'A delicate vanilla flower.'),
('consumable_herb_wintergreen_berry', 'Wintergreen Berry', 10, 1, 'item_standard', 1,'{}', 'Tart and refreshing Wintergreen Berries.'),
('consumable_kidneybeans_can', 'Kidney Beans', 5, 1, 'item_standard', 1,'{}', 'Canned kidney beans.'),
('consumable_lock_breaker', 'Lock Breaker', 10, 1, 'item_standard', 1,'{}', 'A tool for breaking locks.'),
('consumable_meat_greavy', 'Meat Stew', 12, 1, 'item_standard', 1,'{}', 'A hearty meat stew.'),
('consumable_medicine', 'Medicine', 10, 1, 'item_standard', 1,'{}', 'Medicinal treatment.'),
('consumable_peach', 'Peach', 5, 1, 'item_standard', 1,'{}', 'Juicy and ripe peach.'),
('consumable_pear', 'Pear', 10, 1, 'item_standard', 1,'{}', 'A sweet and juicy pear.'),
('consumable_raspberrywater', 'Berry Water', 10, 1, 'item_standard', 1,'{}', 'Refreshing water infused with berries.'),
('consumable_salmon', 'Dried Salmon', 10, 1, 'item_standard', 1,'{}', 'A dried and preserved salmon.'),
('consumable_salmon_can', 'Salmon Can', 10, 1, 'item_standard', 1,'{}', 'Canned salmon.'),
('consumable_trout', 'Cooked Trout', 10, 1, 'item_standard', 1,'{}', 'A cooked and seasoned trout.'),
('consumable_veggies', 'Edible Veggies', 5, 1, 'item_standard', 1,'{}', 'A mix of various edible vegetables.'),
('cookedbluegil', 'Cooked Bluegil with Veggies', 5, 1, 'item_standard', 1,'{}', 'A cooked Bluegil fish served with vegetables.'),
('copper', 'Copper', 30, 1, 'item_standard', 1,'{}', 'A piece of copper.'),
('corn', 'Corn', 10, 1, 'item_standard', 1,'{}', 'Fresh and juicy corn.'),
('cornseed', 'Corn seed', 10, 1, 'item_standard', 1,'{}', 'Seeds for growing corn.'),
('cougarf', 'Cougar tooth', 20, 1, 'item_standard', 1,'{}', 'A sharp tooth from a cougar.'),
('cougars', 'Cougar skin', 20, 1, 'item_standard', 1,'{}', 'The thick and durable skin of a cougar.'),
('cougartaxi', 'Cougar Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A taxidermy mount of a cougar.'),
('cougar_taxidermy', 'Cougar Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A taxidermy mount of a cougar.'),
('cowh', 'Cow horn', 20, 1, 'item_standard', 1,'{}', 'A long and curved horn from a cow.'),
('cows', 'Cow pelt', 20, 1, 'item_standard', 1,'{}', 'The soft and furry pelt of a cow.'),
('coyotef', 'Coyote tooth', 20, 1, 'item_standard', 1,'{}', 'A sharp tooth from a coyote.'),
('coyotepelt', 'Coyote Pelt', 20, 1, 'item_standard', 1,'{}', 'The fur pelt of a coyote.'),
('coyotes', 'Coyote skin', 20, 1, 'item_standard', 1,'{}', 'The rugged and weathered skin of a coyote.'),
('coyotetaxi', 'Coyote Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A taxidermy mount of a coyote.'),
('coyote_pelt', 'Coyote Pelt', 20, 1, 'item_standard', 1,'{}', 'The fur pelt of a coyote.'),
('coyote_taxidermy', 'Coyote Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A taxidermy mount of a coyote.'),
('crab_c', 'Crab', 20, 1, 'item_standard', 1,'{}', 'A crab with a hard shell.'),
('craftingfire', 'Crafting Fire', 20, 1, 'item_standard', 1,'{}', 'A fire used for crafting.'),
('crafting_fire', 'Crafting Fire', 20, 1, 'item_standard', 1,'{}', 'A fire used for crafting.'),
('crawfish_c', 'Crawfish', 20, 1, 'item_standard', 1,'{}', 'A small freshwater crustacean.'),
('Creeking_Thyme', 'Creeping Thyme', 10, 1, 'item_standard', 1,'{}', 'A fragrant herb with small purple flowers.'),
('Creeking_Thyme_Seed', 'Creeping Thyme Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds for growing creeping thyme.'),
('Creekplum', 'Creekplum', 10, 1, 'item_standard', 1,'{}', 'A small and juicy creekplum.'),
('Creekplum_Seed', 'Creekplum Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds for growing creekplums.'),
('Crows_Garlic', 'Crows Garlic', 10, 1, 'item_standard', 1,'{}', 'A pungent garlic with black bulbs.'),
('Crows_Garlic_Seed', 'Crows Garlic Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds for growing crows garlic.'),
('crow_c', 'Crow', 20, 1, 'item_standard', 1,'{}', 'A black-feathered bird with a sharp beak.'),
('darub', 'Crane beak', 20, 1, 'item_standard', 1,'{}', 'A long and slender beak from a crane.'),
('daruf', 'Crane feather', 20, 1, 'item_standard', 1,'{}', 'A beautiful feather from a crane.'),
('dbcandle', 'Dbl Candle', 20, 1, 'item_standard', 1,'{}', 'A double-sided candle with two wicks.'),
('decortent1', 'Decor Tent 1 Set', 20, 1, 'item_standard', 1,'{}', 'A decorative tent set with unique patterns.'),
('decortent2', 'Decor Tent 2 Set', 20, 1, 'item_standard', 1,'{}', 'A decorative tent set with unique patterns.'),
('decortent3', 'Decor Tent 3 Set', 20, 1, 'item_standard', 1,'{}', 'A decorative tent set with unique patterns.'),
('deerheart', 'Deer heart', 20, 1, 'item_standard', 1,'{}', 'The heart of a deer.'),
('deerpelt', 'Deer pelt', 20, 1, 'item_standard', 1,'{}', 'The soft and warm pelt of a deer.'),
('deerskin', 'Deer skin', 20, 1, 'item_standard', 1,'{}', 'The skin of a deer.'),
('deertaxi', 'Deer Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A taxidermy mount of a deer.'),
('deer_pelt', 'Deer Pelt', 20, 1, 'item_standard', 1,'{}', 'The soft and warm pelt of a deer.'),
('deer_taxidermy', 'Deer Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A taxidermy mount of a deer.'),
('Desert_Sage', 'Desert Sage', 10, 1, 'item_standard', 1,'{}', 'A bundle of Desert Sage used for crafting and medicinal purposes.'),
('Desert_Sage_Seed', 'Desert Sage Seed', 10, 1, 'item_standard', 1,'{}', 'A seed of Desert Sage that can be planted to grow Desert Sage plants.'),
('diamond', 'Diamond', 20, 1, 'item_standard', 1,'{}', 'A precious gemstone known for its brilliance and value.'),
('dleguans', 'Desert Iguana pelt', 20, 1, 'item_standard', 1,'{}', 'The skin of a Desert Iguana, commonly used for crafting and trading.'),
('dreamcatcher', 'Dream Catcher', 20, 1, 'item_standard', 1,'{}', 'A traditional Native American ornament believed to filter out bad dreams and let only good dreams pass through.'),
('Drink_For_Dog', 'Pet Water', 10, 1, 'item_standard', 1,'{}', 'A refreshing drink specially made for pets to keep them hydrated.'),
('duckfat', 'Duck fat', 20, 1, 'item_standard', 1,'{}', 'The rendered fat from a duck, commonly used in cooking and baking.'),
('Duck_Egg', 'Duck Egg', 10, 1, 'item_standard', 1,'{}', 'An egg laid by a duck, often used in various culinary preparations.'),
('dynamite', 'Pipe charge dynamite', 30, 1, 'item_standard', 1,'{}', 'An explosive device consisting of a tube filled with explosive material, used for various purposes including mining and demolition.'),
('eaglef', 'Eagle feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from an eagle, often used for decorative purposes and in crafting.'),
('eaglet', 'Eagle claws', 20, 1, 'item_standard', 1,'{}', 'The sharp claws of an eagle, sometimes collected as a trophy or used in traditional medicine.'),
('egg', 'Egg', 20, 1, 'item_standard', 1,'{}', 'A small oval object laid by a female bird, reptile, or fish, containing a fertilized embryo and nutrients for development.'),
('eggs', 'Egg', 50, 1, 'item_standard', 1,'{}', 'Various types of eggs collected from different animals, often used in cooking and crafting.'),
('egretb', 'Snowy Egret beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a Snowy Egret, commonly used for crafting and trading.'),
('egretf', 'Snowy Egret feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from a Snowy Egret, often used for decorative purposes and in crafting.'),
('elkantler', 'Elk antler', 20, 1, 'item_standard', 1,'{}', 'A large branched horn-like appendage grown by male elks.'),
('elks', 'Elk pelt', 20, 1, 'item_standard', 1,'{}', 'A high-quality pelt obtained from an elk.'),
('emerald', 'Emerald', 20, 1, 'item_standard', 1,'{}', 'A precious green gemstone with a sparkling appearance.'),
('English_Mace', 'English Mace', 10, 1, 'item_standard', 1,'{}', 'A type of spice commonly used in cooking and herbal medicine.'),
('English_Mace_Seed', 'English Mace Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds that can be planted to grow English Mace plants.'),
('Evergreen_Huckleberry', 'Evergreen Huckleberry', 10, 1, 'item_standard', 1,'{}', 'A small, dark purple berry known for its tart and sweet flavor.'),
('Evergreen_Huckleberry_Seed', 'Evergreen Huckleberry Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds that can be planted to grow Evergreen Huckleberry bushes.'),
('fan', 'Fan', 5, 1, 'item_standard', 1,'{}', 'A handheld device with flat blades used to create a breeze or provide cooling.'),
('fancydouble', 'Fancy Double', 20, 1, 'item_standard', 1,'{}', 'A stylish and well-crafted double-barreled firearm.'),
('Fat', 'Animal Fat', 10, 1, 'item_standard', 1,'{}', 'Rendered fat obtained from animals, commonly used in cooking and crafting.'),
('Feather', 'Feather', 20, 1, 'item_standard', 1,'{}', 'A lightweight and delicate feather, often used for decorative purposes.'),
('Feed_For_Dog', 'Dog Food', 10, 1, 'item_standard', 1,'{}', 'Nutritious food specifically formulated for dogs.'),
('fertilizer', 'Fertilizer', 10, 1, 'item_standard', 1,'{}', 'A substance used to enrich soil and promote plant growth.'),
('fertilizerbless', 'Blessed Fertilizer', 10, 1, 'item_standard', 1,'{}', 'Sacred fertilizer imbued with spiritual blessings, known to enhance crop yield.'),
('fertilizeregg', 'Fertilizer with Eggs', 10, 1, 'item_standard', 1,'{}', 'Fertilizer enriched with nutrients from various eggs, providing excellent nourishment for plants.'),
('fertilizerpro', 'Fertilizer with Produce', 10, 1, 'item_standard', 1,'{}', 'Fertilizer containing organic matter from fresh produce, enhancing soil fertility and plant health.'),
('fertilizerpulpsap', 'Fertilizer with Pulp/Sap', 10, 1, 'item_standard', 1,'{}', 'Fertilizer enriched with natural pulp or sap, promoting robust growth and vitality in plants.'),
('fertilizersn', 'Fertilizer with Snake', 10, 1, 'item_standard', 1,'{}', 'Fertilizer enriched with beneficial nutrients extracted from snakes, promoting vigorous growth in plants.'),
('fertilizersq', 'Fertilizer with Squirrel', 10, 1, 'item_standard', 1,'{}', 'Fertilizer infused with nutrients derived from squirrels, providing essential elements for plant nourishment and vitality.'),
('fertilizersw', 'Fertilizer with Soft Wood', 10, 1, 'item_standard', 1,'{}', 'Fertilizer blended with fine particles of softwood, enriching the soil with organic matter and enhancing plant development.'),
('fertilizersyn', 'Synful Fertilizer', 10, 1, 'item_standard', 1,'{}', 'A potent and forbidden fertilizer concocted from mystical ingredients, known to produce extraordinary growth in plants.'),
('fertilizerwoj', 'Fertilizer with Wojape', 10, 1, 'item_standard', 1,'{}', 'Fertilizer infused with the essence of Wojape, a rare and powerful herb known for its profound effects on plant growth.'),
('fibers', 'Fibers', 20, 1, 'item_standard', 0,'{}', 'Fine threads or filaments extracted from plants or animals, often used for crafting or weaving.'),
('fish', 'Fish', 50, 1, 'item_standard', 1,'{}', 'A aquatic creature with fins and scales, commonly caught for food or sport.'),
('fishbait', 'Fishbait', 10, 1, 'item_standard', 1,'{}', 'A substance or lure used to attract fish, increasing the chances of a successful catch.'),
('fishchips', 'Fish and Chips', 10, 1, 'item_standard', 1,'{}', 'A classic dish consisting of fried fish fillets and potato chips, often served with tartar sauce.'),
('fishmeat', 'Bigfish Meat', 20, 1, 'item_standard', 1,'{}', 'Meat obtained from large fish species, known for its tender texture and rich flavor.'),
('flag', 'Camp Flag', 10, 1, 'item_standard', 1,'{}', 'A colorful and distinctive flag used to mark and identify a campsite or specific location.'),
('flowerboxes', 'Flower Boxes', 20, 1, 'item_standard', 1,'{}', 'Containers or receptacles designed to hold and display blooming flowers, adding beauty and charm to any setting.'),
('foodbarrel', 'Food Barrel', 20, 1, 'item_standard', 1,'{}', 'A sturdy barrel used for storing and preserving food items, keeping them fresh and safe from pests.'),
('food_barrel', 'Food Barrel', 20, 1, 'item_standard', 1,'{}', 'A large barrel specifically designed for storing and transporting food, ideal for provisioning during long journeys or expeditions.'),
('foxskin', 'Foxskin', 20, 1, 'item_standard', 1,'{}', 'The skin of a fox.'),
('foxt', 'Fox tooth', 20, 1, 'item_standard', 1,'{}', 'A tooth extracted from a fox.'),
('friedtater', 'Fried Taters', 10, 1, 'item_standard', 1,'{}', 'Crispy and delicious fried potatoes.'),
('frogbull2_c', 'Poisoned Frogbull', 20, 1, 'item_standard', 1,'{}', 'A toxic variant of a frogbull.'),
('frogbull_c', 'Frogbull', 20, 1, 'item_standard', 1,'{}', 'A small creature found near water bodies.'),
('fsnakes', 'Blacktail rattlesnake pelt', 20, 1, 'item_standard', 1,'{}', 'The skin of a blacktail rattlesnake.'),
('game', 'Game Meat', 20, 1, 'item_standard', 1,'{}', 'Fresh meat obtained from hunting animals.'),
('Gamey_Meat', 'Gamey Meat', 10, 1, 'item_standard', 1,'{}', 'A type of meat with a distinct gamey flavor.'),
('Gator_Egg_3', 'Aligator Egg 3', 10, 1, 'item_standard', 1,'{}', 'The third stage of an alligator egg.'),
('Gator_Egg_4', 'Aligator Egg 4', 10, 1, 'item_standard', 1,'{}', 'The fourth stage of an alligator egg.'),
('Gator_Egg_5', 'Aligator Egg 5', 10, 1, 'item_standard', 1,'{}', 'The final stage of an alligator egg.'),
('gbarrelx', 'Gun Barrel', 20, 1, 'item_standard', 1,'{}', 'A part used in firearm manufacturing.'),
('gbears', 'Grizzly Bear skin', 20, 1, 'item_standard', 1,'{}', 'The skin of a grizzly bear.'),
('ginsengtea', 'Ginseng Tea', 10, 1, 'item_standard', 1,'{}', 'A soothing tea made from ginseng roots.'),
('glassbottle', 'Glass Bottle', 15, 1, 'item_standard', 1,'{}', 'A transparent bottle made of glass.'),
('gleguans', 'Green Iguana pelt', 20, 1, 'item_standard', 1,'{}', 'The skin of a green iguana.'),
('goathead', 'Goat head', 20, 1, 'item_standard', 1,'{}', 'The severed head of a goat.'),
('goats', 'Goat pelt', 20, 1, 'item_standard', 1,'{}', 'The skin of a goat.'),
('goldbar', 'GoldBar', 5, 1, 'item_standard', 1,'{}', 'A bar made of solid gold.'),
('Golden_Currant', 'Golden Currant', 10, 1, 'item_standard', 1,'{}', 'A type of golden-colored currant.'),
('Golden_Currant_Seed', 'Golden Currant Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow golden currants.'),
('goldfish', 'Gold Fish', 10, 1, 'item_standard', 0,'{}', 'A shimmering gold-colored fish.'),
('goldpan', 'Gold pan', 10, 1, 'item_standard', 1,'{}', 'A shallow pan used for gold panning.'),
('goldring', 'Gold Ring', 10, 1, 'item_standard', 1,'{}', 'A ring made of solid gold.'),
('gold_nugget', 'Gold nugget', 30, 1, 'item_standard', 0,'{}', 'A nugget of pure gold.'),
('gooseb', 'Goose beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a goose.'),
('goosef', 'Goose feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from a goose.'),
('Goose_Egg_4', 'Goose Egg', 10, 1, 'item_standard', 1,'{}', 'An egg laid by a goose.'),
('guitar', 'Classic Guitar', 1, 1, 'item_standard', 1,'{}', 'A traditional six-string guitar.'),
('gun_barrel', 'Gun Barrel', 20, 1, 'item_standard', 1,'{}', 'A cylindrical barrel used in firearm construction.'),
('gypsywagon', 'Gypsys Wagon Set', 20, 1, 'item_standard', 1,'{}', 'A set of items related to a gypsy wagon.'),
('hairpomade', 'Hair Pomade', 5, 1, 'item_standard', 1,'{}', 'A grooming product for styling hair.'),
('handcuffs', 'Handcuffs', 10, 1, 'item_standard', 1,'{}', 'Metal restraints used for restraining someone.'),
('hatchet', 'Hatchet', 1, 1, 'item_standard', 1,'{}', 'A small axe with a short handle.'),
('hawkf', 'Hawk feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from a hawk.'),
('hawkt', 'Hawk claws', 20, 1, 'item_standard', 1,'{}', 'The sharp claws of a hawk.'),
('Health_For_Dog', 'Pet Bandages', 10, 1, 'item_standard', 1,'{}', 'Bandages designed for treating injuries in pets.'),
('hemp', 'Hemp', 10, 1, 'item_standard', 1,'{}', 'A plant commonly used for its fiber.'),
('hemp_cig', 'Hemp Cigarette', 1, 1, 'item_standard', 1,'{}', 'A cigarette made from hemp leaves.'),
('hemp_seed', 'Hemp Seed', 20, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow hemp plants.'),
('herbal_medicine', 'Herbal Medicine', 20, 1, 'item_standard', 1,'{}', 'Medicine made from natural herbal ingredients.'),
('herbal_tonic', 'Herbal Tonic', 20, 1, 'item_standard', 1,'{}', 'A tonic made from herbal extracts.'),
('herbmed', 'Herbal Remedy', 10, 1, 'item_standard', 1,'{}', 'A remedy made from various herbs.'),
('heroin', 'Heroin', 5, 1, 'item_standard', 1,'{}', 'A highly addictive and illegal drug.'),
('herptile', 'Herptile meat', 20, 1, 'item_standard', 1,'{}', 'Meat obtained from reptiles and amphibians.'),
('hitchingpost', 'Hitching Post', 20, 1, 'item_standard', 1,'{}', 'A post used for tying up horses.'),
('hoe', 'Garden Hoe', 10, 1, 'item_standard', 1,'{}', 'A gardening tool with a thin metal blade.'),
('honey', 'Honey', 10, 1, 'item_standard', 1,'{}', 'A sweet and sticky substance produced by bees.'),
('hop', 'Hop', 10, 1, 'item_standard', 1,'{}', 'A plant used in brewing beer.'),
('hop_seed', 'Hop Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow hop plants.'),
('horsebrush', 'Horse Brush', 5, 1, 'item_standard', 1,'{}', 'A brush used for grooming horses.'),
('horsehitches', 'Horse Hitches Set', 20, 1, 'item_standard', 1,'{}', 'A set of items used for hitching horses.'),
('horsemeal', 'Horse ration', 10, 1, 'item_standard', 1,'{}', 'Food provided to horses for sustenance.'),
('Hummingbird_Sage', 'Hummingbird Sage', 10, 1, 'item_standard', 1,'{}', 'A type of sage plant favored by hummingbirds.'),
('Hummingbird_Sage_Seed', 'Hummingbird Sage Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow hummingbird sage.'),
('hwood', 'Hard Wood', 20, 1, 'item_standard', 0,'{}', 'Durable and strong wood used in various applications.'),
('Indian_Tobbaco', 'Indian Tobbaco', 20, 1, 'item_standard', 1,'{}', 'A type of tobacco used by Native Americans.'),
('Indian_Tobbaco_Seed', 'Indian Tobbaco Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Indian tobbaco plants.'),
('iron', 'Iron', 30, 1, 'item_standard', 0,'{}', 'A strong and durable metal.'),
('ironbar', 'Iron Bar', 30, 1, 'item_standard', 1,'{}', 'A solid bar made of iron, known for its strength and durability.'),
('ironextract', 'Iron Extract', 1, 1, 'item_standard', 0,'{}', 'A concentrated form of iron, extracted from natural sources.'),
('ironhammer', 'Iron Hammer', 5, 1, 'item_standard', 1,'{}', 'A hammer with a head made of iron, used for various construction and crafting purposes.'),
('kbirdb', 'Great Blue Heron Beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a Great Blue Heron, known for its long and slender shape.'),
('kbirdf', 'Great Blue Heron Feather', 20, 1, 'item_standard', 1,'{}', 'A feather obtained from a Great Blue Heron, valued for its beauty and softness.'),
('kitchencounter', 'Kitchen Counter', 20, 1, 'item_standard', 1,'{}', 'A sturdy counter surface typically found in kitchens, providing space for food preparation and other tasks.'),
('kit_bandana', 'Bandana', 2, 1, 'item_standard', 1,'{}', 'A versatile and stylish piece of cloth that can be worn around the neck or head for various purposes. It adds a touch of fashion to any outfit.'),
('lamppost1', 'Lamp Post 1 Set', 20, 1, 'item_standard', 1,'{}', 'A set of Lamp Post 1'),
('lamppost2', 'Lamp Post 2 Set', 20, 1, 'item_standard', 1,'{}', 'A set of Lamp Post 2'),
('lanterna', 'Lantern', 20, 1, 'item_standard', 1,'{}', 'A lantern'),
('leather', 'Leather', 50, 1, 'item_standard', 1,'{}', 'Leather material'),
('leatherchair', 'Leather Chair', 20, 1, 'item_standard', 1,'{}', 'A leather chair'),
('leather_chair', 'Leather Chair', 20, 1, 'item_standard', 1,'{}', 'A leather chair'),
('legalbook', 'Legal Book', 1, 1, 'item_standard', 1,'{}', 'A legal book'),
('legaligators', 'Legendary Alligator pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from an alligator'),
('legaligators1', 'Legendary Teca Alligator pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Teca Alligator'),
('legaligators2', 'Legendary Sun Alligator pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Sun Alligator'),
('legaligators3', 'Legendary Banded Alligator pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Banded Alligator'),
('legalpaper', 'Legal Paper', 4, 1, 'item_standard', 1,'{}', 'Legal paper'),
('legbears1', 'Legendary Deadly Bear pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Deadly Bear'),
('legbears2', 'Legendary Owiza Bear pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from an Owiza Bear'),
('legbears3', 'Legendary Ridgeback Spirit Bear pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Ridgeback Spirit Bear'),
('legbears4', 'Legendary Golden Spirit Bear pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Golden Spirit Bear'),
('legbeavers1', 'Legendary Grey Beaver pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Grey Beaver'),
('legbeavers2', 'Legendary White Beaver pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a White Beaver'),
('legbeavers3', 'Legendary Black Beaver pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Black Beaver'),
('legbeawers', 'Legendary Beaver pelt', 20, 1, 'item_standard', 1,'{}', 'A legendary pelt from a Beaver'),
('legbisonhorn', 'Legendary Bison Horns', 20, 1, 'item_standard', 1,'{}', 'A pair of majestic horns from a legendary bison'),
('legbisons', 'Legendary Bison pelt', 20, 1, 'item_standard', 1,'{}', 'A rare and valuable pelt from a legendary bison'),
('legbisons1', 'Legendary Tatanka Bison pelt', 20, 1, 'item_standard', 1,'{}', 'An exquisite pelt from a legendary Tatanka Bison'),
('legbisons2', 'Legendary Winyan Bison pelt', 20, 1, 'item_standard', 1,'{}', 'A beautiful pelt from a legendary Winyan Bison'),
('legbisons3', 'Legendary Payata Bison pelt', 20, 1, 'item_standard', 1,'{}', 'A prized pelt from a legendary Payata Bison'),
('legbisonstak', 'Legendary Takanta Bison pelt', 20, 1, 'item_standard', 1,'{}', 'An exceptional pelt from a legendary Takanta Bison'),
('legboars', 'Legendary Boar pelt', 20, 1, 'item_standard', 1,'{}', 'A rare and sought-after pelt from a legendary boar'),
('legboars1', 'Legendary Cogi Boar pelt', 20, 1, 'item_standard', 1,'{}', 'A magnificent pelt from a legendary Cogi Boar'),
('legboars2', 'Legendary Wakpa Boar pelt', 20, 1, 'item_standard', 1,'{}', 'A formidable pelt from a legendary Wakpa Boar'),
('legboars3', 'Legendary Icahi Boar pelt', 20, 1, 'item_standard', 1,'{}', 'A rare pelt from a legendary Icahi Boar'),
('legboars4', 'Legendary Wildhog pelt', 20, 1, 'item_standard', 1,'{}', 'An untamed pelt from a legendary Wildhog'),
('legbucks', 'Legendary Buck skin', 20, 1, 'item_standard', 1,'{}', 'A prized skin from a legendary buck'),
('legbucks1', 'Legendary Buck pelt', 20, 1, 'item_standard', 1,'{}', 'A splendid pelt from a legendary buck'),
('legbucks2', 'Legendary Mudrunner Buck pelt', 20, 1, 'item_standard', 1,'{}', 'A distinct pelt from a legendary Mudrunner Buck'),
('legbucks3', 'Legendary Snow Buck pelt', 20, 1, 'item_standard', 1,'{}', 'A pristine pelt from a legendary Snow Buck'),
('legbucks4', 'Legendary Shadow Buck pelt', 20, 1, 'item_standard', 1,'{}', 'A mysterious pelt from a legendary Shadow Buck'),
('legcougars', 'Legendary Cougar skin', 20, 1, 'item_standard', 1,'{}', 'A rare and valuable skin from a legendary cougar'),
('legcougars1', 'Legendary Iguga Cougar pelt', 20, 1, 'item_standard', 1,'{}', 'A striking pelt from a legendary Iguga Cougar'),
('legcougars2', 'Legendary Maza Cougar pelt', 20, 1, 'item_standard', 1,'{}', 'An exceptional pelt from a legendary Maza Cougar'),
('legcougars3', 'Legendary Sapa Cougar pelt', 20, 1, 'item_standard', 1,'{}', 'A majestic pelt from a legendary Sapa Cougar'),
('legcougars4', 'Legendary Black Cougar pelt', 20, 1, 'item_standard', 1,'{}', 'A rare pelt from a legendary Black Cougar'),
('legcoyotes', 'Legendary Coyote skin', 20, 1, 'item_standard', 1,'{}', 'A prized skin from a legendary coyote'),
('legcoyotes1', 'Legendary Red Streak Coyote pelt', 20, 1, 'item_standard', 1,'{}', 'A vibrant pelt from a legendary Red Streak Coyote'),
('legcoyotes2', 'Legendary Midnight Paw Coyote pelt', 20, 1, 'item_standard', 1,'{}', 'A dark and mysterious pelt from a legendary Midnight Paw Coyote'),
('legcoyotes3', 'Legendary Milk Coyote pelt', 20, 1, 'item_standard', 1,'{}', 'A rare pelt from a legendary Milk Coyote'),
('legelkantler', 'Legendary Elk Antlers', 20, 1, 'item_standard', 1,'{}', 'A magnificent set of antlers from a legendary elk'),
('legelks', 'Legendary Elk pelt', 20, 1, 'item_standard', 1,'{}', 'An impressive pelt from a legendary elk'),
('legelks1', 'Legendary Katata Elk pelt', 20, 1, 'item_standard', 1,'{}', 'An exceptional pelt from a legendary Katata Elk'),
('legelks2', 'Legendary Ozula Elk pelt', 20, 1, 'item_standard', 1,'{}', 'A rare pelt from a legendary Ozula Elk'),
('legelks3', 'Legendary Inahme Elk pelt', 20, 1, 'item_standard', 1,'{}', 'An exquisite pelt from a legendary Inahme Elk'),
('legendbuckantler', 'Legendary Buck Antlers', 20, 1, 'item_standard', 1,'{}', 'A pair of majestic antlers from a legendary buck'),
('legendsnakes', 'Legendary Boa pelt', 20, 1, 'item_standard', 1,'{}', 'A rare and valuable pelt from a legendary boa'),
('legfoxs2', 'Legendary Marble Fox pelt', 20, 1, 'item_standard', 1,'{}', 'A beautiful pelt from a legendary Marble Fox'),
('legfoxs3', 'Legendary Cross Fox pelt', 20, 1, 'item_standard', 1,'{}', 'An exquisite pelt from a legendary Cross Fox'),
('legfoxskin', 'Legendary Fox skin', 20, 1, 'item_standard', 1,'{}', 'A valuable and versatile skin from a legendary fox'),
('leggbears', 'Legendary Bear skin', 20, 1, 'item_standard', 1,'{}', 'A formidable and sought-after skin from a legendary bear'),
('legmooseantler', 'Legendary Moose Antlers', 20, 1, 'item_standard', 1,'{}', 'A massive set of antlers from a legendary moose'),
('legmooses', 'Legendary Moose pelt', 20, 1, 'item_standard', 1,'{}', 'A majestic pelt from a legendary moose'),
('legmooses1', 'Legendary Snowflake Moose pelt', 20, 1, 'item_standard', 1,'{}', 'A pristine pelt from a legendary Snowflake Moose'),
('legmooses2', 'Legendary Knight Moose pelt', 20, 1, 'item_standard', 1,'{}', 'An impressive pelt from a legendary Knight Moose'),
('legmooses3', 'Legendary Rudy Moose pelt', 20, 1, 'item_standard', 1,'{}', 'A distinctive pelt from a legendary Rudy Moose'),
('legpanthers1', 'Legendary Nightwalker Panther pelt', 20, 1, 'item_standard', 1,'{}', 'A dark and elusive pelt from a legendary Nightwalker Panther'),
('legpanthers2', 'Legendary Ghost Panther pelt', 20, 1, 'item_standard', 1,'{}', 'An ethereal pelt from a legendary Ghost Panther'),
('legpanthers3', 'Legendary Iwakta Panther pelt', 20, 1, 'item_standard', 1,'{}', 'A rare and valuable pelt from a legendary Iwakta Panther'),
('legprongs', 'Legendary Pronghorn skin', 20, 1, 'item_standard', 1,'{}', 'A sleek and coveted skin from a legendary pronghorn'),
('legramhorn', 'Legendary Ram Horns', 20, 1, 'item_standard', 1,'{}', 'Impressive horns from a legendary ram'),
('legrams', 'Legendary Ram pelt', 20, 1, 'item_standard', 1,'{}', 'A distinctive pelt from a legendary ram'),
('legrams1', 'Legendary Gabbro Horn Ram pelt', 20, 1, 'item_standard', 1,'{}', 'A rare and valuable pelt from a legendary Gabbro Horn Ram'),
('legrams2', 'Legendary Chalk Horn Ram pelt', 20, 1, 'item_standard', 1,'{}', 'An exceptional pelt from a legendary Chalk Horn Ram'),
('legrams3', 'Legendary Rutile Horn Ram pelt', 20, 1, 'item_standard', 1,'{}', 'An exquisite pelt from a legendary Rutile Horn Ram'),
('legrams4', 'Legendary GreatHorn Ram pelt', 20, 1, 'item_standard', 1,'{}', 'An impressive pelt from a legendary GreatHorn Ram'),
('legwolfpelt', 'Legendary Wolf skin', 20, 1, 'item_standard', 1,'{}', 'A prized and valuable skin from a legendary wolf'),
('legwolfs1', 'Legendary Emerald Wolf pelt', 20, 1, 'item_standard', 1,'{}', 'A vibrant pelt from a legendary Emerald Wolf'),
('legwolfs2', 'Legendary Onyx Wolf pelt', 20, 1, 'item_standard', 1,'{}', 'nice item'),
('legwolfs3', 'Legendary Moonstone Wolf pelt', 20, 1, 'item_standard', 1,'{}', 'A magnificent pelt from a legendary Moonstone Wolf'),
('lizardl', 'Lizard foot', 20, 1, 'item_standard', 1,'{}', 'A preserved foot of a lizard'),
('lizards', 'Lizard pelt', 20, 1, 'item_standard', 1,'{}', 'A unique and scaly skin from a lizard'),
('lockpick', 'Lockpick', 5, 1, 'item_standard', 1,'{}', 'A handy tool used for picking locks'),
('lockpickmold', 'Lockpick Mold', 5, 1, 'item_standard', 1,'{}', 'A mold used for crafting lockpicks'),
('logbechs', 'Log Bench 2', 20, 1, 'item_standard', 1,'{}', 'A sturdy and rustic log bench design'),
('logbench', 'Log Bench 1', 20, 1, 'item_standard', 1,'{}', 'A simple and natural log bench'),
('log_bencha', 'Log Bench 1', 20, 1, 'item_standard', 1,'{}', 'A comfortable log bench for outdoor seating'),
('log_benchb', 'Log Bench 2', 20, 1, 'item_standard', 1,'{}', 'A spacious log bench for outdoor gatherings'),
('loonb', 'Common loon beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a common loon bird'),
('loonf', 'Common loon feather', 20, 1, 'item_standard', 1,'{}', 'A beautiful feather from a common loon bird'),
('loungechair', 'Lounge Chair', 20, 1, 'item_standard', 1,'{}', 'A comfortable and stylish lounge chair'),
('loungechair2', 'Lounge Chair 2', 20, 1, 'item_standard', 1,'{}', 'A modern and luxurious lounge chair'),
('lumberaxe', 'Lumber Axe', 1, 1, 'item_standard', 1,'{}', 'A sturdy axe designed for cutting lumber'),
('mackerel', 'Mackerel', 10, 1, 'item_standard', 0,'{}', 'A small and silvery fish called mackerel'),
('marriagebook', 'Marriage Book', 1, 1, 'item_standard', 1,'{}', 'A book containing the guidelines and rituals for marriage'),
('marriagecertification', 'Marriage Certify', 2, 1, 'item_standard', 1,'{}', 'A legal document certifying a marriage'),
('mashalaskan', 'Alaskan Gin Mash', 20, 1, 'item_standard', 1,'{}', 'A mixture of ingredients used in the production of Alaskan gin'),
('mashamerican', 'Alaskan Gin Mash', 20, 1, 'item_standard', 1,'{}', 'A blend of ingredients used in the production of Alaskan gin'),
('mashapple', 'Apple Mash', 20, 1, 'item_standard', 1,'{}', 'A mashed mixture of apples used for various recipes'),
('mashblackberry', 'Blackberry Mash', 20, 1, 'item_standard', 1,'{}', 'A mashed mixture of blackberries used in cooking and beverages'),
('mashblackberry90p', 'Blackberry Mash 90p', 20, 1, 'item_standard', 1,'{}', 'A concentrated blackberry mash used for crafting high-quality beverages'),
('mashpeach', 'Peach Mash', 20, 1, 'item_standard', 1,'{}', 'A mashed mixture of peaches used in culinary preparations'),
('mashplum', 'Plum Mash', 20, 1, 'item_standard', 1,'{}', 'A mashed mixture of plums used in cooking and distilling'),
('mashraspberry', 'Raspberry Mash', 20, 1, 'item_standard', 1,'{}', 'A mashed mixture of raspberries used for culinary purposes'),
('mashraspberry90p', 'Raspberry Mash 90p', 20, 1, 'item_standard', 1,'{}', 'A concentrated raspberry mash used for crafting potent beverages'),
('mashstrong', 'Strong Mash Batch', 20, 1, 'item_standard', 1,'{}', 'A powerful and highly concentrated mash batch for advanced recipes'),
('meat', 'Meat', 20, 1, 'item_standard', 1,'{}', 'Fresh and uncooked meat from various animals'),
('milk', 'Milk', 50, 1, 'item_standard', 1,'{}', 'A nutritious and creamy dairy product'),
('Milk_Weed', 'Milk Weed', 10, 1, 'item_standard', 1,'{}', 'A plant with milky sap used for medicinal purposes'),
('Milk_Weed_Seed', 'Milk Weed Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds of the milkweed plant for cultivation'),
('moonshine', 'Moonshine', 10, 1, 'item_standard', 1,'{}', 'An illegally distilled and potent alcoholic beverage'),
('mooseantler', 'Moose Antlers', 20, 1, 'item_standard', 1,'{}', 'Impressive antlers shed by a moose'),
('mooses', 'Moose pelt', 20, 1, 'item_standard', 1,'{}', 'A large and thick fur coat from a moose'),
('morpcert', 'Morphine Prescription', 10, 1, 'item_standard', 1,'{}', 'A medical prescription for morphine medication'),
('morphine', 'Morphine', 10, 1, 'item_standard', 1,'{}', 'A potent analgesic and narcotic medication'),
('mountainmen', 'Mountain Camp Set', 20, 1, 'item_standard', 1,'{}', 'A set of equipment and supplies for a mountain camp'),
('mp001_p_mp_still02x', 'Brennerei', 1, 1, 'item_standard', 1,'{}', 'A large still used for distilling alcoholic beverages'),
('muskrats', 'Muskrat skin', 20, 1, 'item_standard', 1,'{}', 'The fur skin of a muskrat, commonly used for crafting'),
('Mutton', 'Mutton', 20, 1, 'item_standard', 1,'{}', 'Meat from mature sheep used in cooking'),
('nails', 'Nails', 40, 1, 'item_standard', 1,'{}', 'Small metal fasteners used for joining materials'),
('nativebasket1', 'Native Basket 1', 20, 1, 'item_standard', 1,'{}', 'A traditional native basket for carrying items'),
('nativebasket2', 'Native Basket 2', 20, 1, 'item_standard', 1,'{}', 'A second variation of a traditional native basket'),
('nativedecor', 'Native Decor Set', 20, 1, 'item_standard', 1,'{}', 'A set of decorative native items for display'),
('nativepot', 'Native Pot', 20, 1, 'item_standard', 1,'{}', 'A traditional native pot for cooking and storage'),
('nativeskull', 'Native Decor 1', 20, 1, 'item_standard', 1,'{}', 'A decorative native skull for ornamental purposes'),
('naturalwagon', 'Naturalists Wagon Set', 20, 1, 'item_standard', 1,'{}', 'A wagon set equipped for naturalists and explorers'),
('newspaper', 'Newspaper', 20, 1, 'item_standard', 1,'{}', 'A printed publication containing news and articles'),
('nightstand', 'Nightstand', 20, 1, 'item_standard', 1,'{}', 'A small bedside table for holding personal items'),
('nitrite', 'Nitrite', 20, 1, 'item_standard', 1,'{}', 'A chemical compound used in various industrial processes'),
('nitroglyserolia', 'Nitroglycerol', 30, 1, 'item_standard', 1,'{}', 'A highly explosive liquid compound used in explosives'),
('normaltable', 'Table', 20, 1, 'item_standard', 1,'{}', 'A standard table for dining or work purposes'),
('notebook', 'Notebook', 5, 1, 'item_standard', 1,'{}', 'A small book with blank pages for writing or drawing'),
('obed', 'Old bed', 20, 1, 'item_standard', 1,'{}', 'An old bed that has seen better days.'),
('Oleander_Sage', 'Oleander Sage', 10, 1, 'item_standard', 1,'{}', 'A herb known for its medicinal properties.'),
('Oleander_Sage_Seed', 'Oleander Sage Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Oleander Sage.'),
('opossumc', 'Opossum claws', 20, 1, 'item_standard', 1,'{}', 'Sharp claws from an opossum.'),
('opossums', 'Opossum skin', 20, 1, 'item_standard', 1,'{}', 'The fur and skin of an opossum.'),
('orden_presidente', 'Order of the President', 10, 1, 'item_standard', 0,'{}', 'A prestigious order awarded by the President.'),
('Oregano', 'Oregano', 10, 1, 'item_standard', 1,'{}', 'A fragrant herb commonly used in cooking.'),
('Oregano_Seed', 'Oregano Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow Oregano.'),
('oriole2_c', 'Hooded Oriole', 20, 1, 'item_standard', 1,'{}', 'Brightly colored feathers from a Hooded Oriole.'),
('oriole_c', 'Oriole', 20, 1, 'item_standard', 1,'{}', 'Vibrant feathers from an Oriole bird.'),
('owlf', 'Owl feather', 20, 1, 'item_standard', 1,'{}', 'Feathers shed by an owl.'),
('owlt', 'Owl claws', 20, 1, 'item_standard', 1,'{}', 'Sharp claws from an owl.'),
('oxhorn', 'Angus Bull horn', 20, 1, 'item_standard', 1,'{}', 'A sturdy horn from an Angus Bull.'),
('oxs', 'Angus Bull pelt', 20, 1, 'item_standard', 1,'{}', 'The thick fur and skin of an Angus Bull.'),
('panthere', 'Panther eyes', 20, 1, 'item_standard', 1,'{}', 'Intense and captivating eyes from a panther.'),
('panthers', 'Panther skin', 20, 1, 'item_standard', 1,'{}', 'The sleek and supple skin of a panther.'),
('paper', 'Paper', 20, 1, 'item_standard', 1,'{}', 'Sheets of paper for writing or drawing.'),
('parasol', 'Parasol', 1, 1, 'item_standard', 1,'{}', 'A stylish and functional parasol to shield from the sun.'),
('Parasol_Mushroom', 'Parasol Mushroom', 10, 1, 'item_standard', 1,'{}', 'A mushroom with a wide, umbrella-like cap.'),
('Parasol_Mushroom_Seed', 'Parasol Mushroom Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow parasol mushrooms.'),
('peachseeds', 'Peach Seeds', 10, 1, 'item_standard', 1,'{}', 'Seeds that can be planted to grow peach trees.'),
('peasantb', 'Peasant beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a peasant bird.'),
('peasantf', 'Peasant feather', 20, 1, 'item_standard', 1,'{}', 'A feather from a peasant bird.'),
('pecaris', 'Peccary pelt', 20, 1, 'item_standard', 1,'{}', 'The fur of a peccary, a pig-like mammal.'),
('pelicanb', 'Pelican beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a pelican bird.'),
('pelicanf', 'Pelican feather', 20, 1, 'item_standard', 1,'{}', 'A feather from a pelican bird.'),
('pen', 'Pen', 2, 1, 'item_standard', 0,'{}', 'A writing instrument used to apply ink.'),
('pheasant_taxidermy', 'Pheasant Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A preserved mount of a pheasant bird for display.'),
('phestaxi', 'Pheasant Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A preserved mount of a pheasant bird for display.'),
('pickaxe', 'Pickaxe', 1, 1, 'item_standard', 0,'{}', 'A tool with a pointed end and a handle, used for breaking up rocks and mining.'),
('pigeon_c', 'Pigeon', 20, 1, 'item_standard', 1,'{}', 'A pigeon bird.'),
('pigs', 'Pig pelt', 20, 1, 'item_standard', 1,'{}', 'The skin and fur of a pig.'),
('pipe', 'Pipe', 5, 1, 'item_standard', 1,'{}', 'A tubular device used for smoking tobacco or other substances.'),
('pipecopper', 'Copper Pipe', 5, 1, 'item_standard', 1,'{}', 'A pipe made of copper.'),
('pocket_watch', 'Pocket Watch', 5, 1, 'item_standard', 1,'{}', 'A small timepiece designed to be carried in a pocket.'),
('pokerset', 'Poker Table Set', 20, 1, 'item_standard', 1,'{}', 'A complete set for playing poker, including a table and cards.'),
('pork', 'Pork', 20, 1, 'item_standard', 1,'{}', 'The meat from a pig, commonly used for cooking and eating.'),
('porkfat', 'Pig fat', 20, 1, 'item_standard', 1,'{}', 'The fat obtained from a pig, often used in cooking and making lard.'),
('pot', 'Distillery Pot', 1, 1, 'item_standard', 1,'{}', 'A large pot used in the distillation process for making alcohol.'),
('pota', 'House Pot', 20, 1, 'item_standard', 1,'{}', 'A pot typically used for cooking and boiling ingredients.'),
('potato', 'Potato', 20, 1, 'item_standard', 1,'{}', 'An edible starchy tuber that is commonly used in cooking.'),
('potatoseed', 'Potato Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow potato plants.'),
('prairib', 'Prairie Chicken Beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a prairie chicken, a bird species found in grassland habitats.'),
('Prairie_Poppy', 'Prairie Poppy', 10, 1, 'item_standard', 1,'{}', 'A type of poppy flower that is native to prairie regions.'),
('Prairie_Poppy_Seed', 'Prairie Poppy Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow prairie poppy flowers.'),
('prairif', 'Prairie Chicken Feather', 20, 1, 'item_standard', 1,'{}', 'A feather from a prairie chicken bird, often used in crafts and decorations.'),
('pronghornh', 'Pronghorn Horn', 20, 1, 'item_standard', 1,'{}', 'The horn of a pronghorn, a mammal native to North America.'),
('prongs', 'Pronghorn Skin', 20, 1, 'item_standard', 1,'{}', 'The skin of a pronghorn, known for its soft and durable fur.'),
('provision_jail_keys', 'Jail Keys', 10, 1, 'item_standard', 1,'{}', 'A set of keys used to unlock jail cells and gates.'),
('pulp', 'Pulp', 20, 1, 'item_standard', 0,'{}', 'A soft and moist mass of plant fibers, typically obtained from crushing or processing plant materials.'),
('p_baitBread01x', 'Bread Bait', 20, 1, 'item_standard', 1,'{}', 'A piece of bread used as bait for fishing.'),
('p_barrelmoonshine', 'Barrel', 1, 1, 'item_standard', 1,'{}', 'A container, typically made of wood, used for storing and aging moonshine.'),
('quailb', 'Quail Beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a quail bird, often used for crafts and decorative purposes.'),
('quailf', 'Quail Feather', 20, 1, 'item_standard', 1,'{}', 'A feather from a quail bird, known for its small size and distinctive patterns.'),
('quartz', 'Quartz', 20, 1, 'item_standard', 1,'{}', 'A hard mineral often used in jewelry and decorative items.'),
('rabbitpaw', 'Rabbitfoot', 20, 1, 'item_standard', 1,'{}', 'The foot of a rabbit, sometimes considered a good luck charm.'),
('rabbits', 'Rabbit Skin', 20, 1, 'item_standard', 1,'{}', 'The skin of a rabbit, commonly used in making fur garments and accessories.'),
('raccoons', 'Raccoon Skin', 20, 1, 'item_standard', 1,'{}', 'The skin of a raccoon, known for its distinctive ringed tail and soft fur.'),
('raccoont', 'Raccoon Tooth', 20, 1, 'item_standard', 1,'{}', 'A tooth from a raccoon, often used in crafts and jewelry.'),
('rajahdysoljy', 'Explosive Oil', 30, 1, 'item_standard', 1,'{}', 'An explosive oil used for various purposes, such as creating dynamite and explosives.'),
('ramhorn', 'Ram Horn', 20, 1, 'item_standard', 1,'{}', 'The horn of a ram, a male sheep, often used in crafting and decoration.'),
('rams', 'Ram Pelt', 20, 1, 'item_standard', 1,'{}', 'The fur and skin of a ram, known for its warmth and durability.'),
('Rams_Head', 'Rams Head', 10, 1, 'item_standard', 1,'{}', 'The preserved head of a ram, often used as a hunting trophy or decorative item.'),
('Rams_Head_Seed', 'Rams Head Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow plants resembling a rams head.'),
('raspberryale', 'Raspberry Ale', 10, 1, 'item_standard', 1,'{}', 'A type of ale infused with the flavor of raspberries.'),
('rat_c', 'Rat', 20, 1, 'item_standard', 1,'{}', 'A small rodent known for its agility and ability to adapt to various environments.'),
('ravenc', 'Raven Claws', 20, 1, 'item_standard', 1,'{}', 'The claws of a raven bird, often used for crafts and jewelry.'),
('ravenf', 'Raven Feather', 20, 1, 'item_standard', 1,'{}', 'A feather from a raven bird, known for its glossy black color and sleek appearance.'),
('rectable', 'Rectangle Table', 20, 1, 'item_standard', 1,'{}', 'A rectangular-shaped table, suitable for various purposes such as dining or work.'),
('rectangle_table', 'Rectangle Table', 20, 1, 'item_standard', 1,'{}', 'A table with a rectangular shape, often used for dining or as a work surface.'),
('Red_Raspberry', 'Red Raspberry', 10, 1, 'item_standard', 1,'{}', 'A type of raspberry with a red color, commonly used in desserts and preserves.'),
('Red_Raspberry_Seed', 'Red Raspberry Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow red raspberry plants.'),
('Red_Sage', 'Red Sage', 10, 1, 'item_standard', 1,'{}', 'A type of sage plant with red-colored flowers, often used in herbal remedies and smudging ceremonies.'),
('Red_Sage_Seed', 'Red Sage Seed', 10, 1, 'item_standard', 1,'{}', 'A seed that can be planted to grow red sage plants.'),
('repeaterbarrel', 'Repeater Barrel', 5, 1, 'item_standard', 1,'{}', 'A replacement barrel for a repeater firearm, used for improving accuracy and performance.'),
('repeatermold', 'Repeater Mold', 5, 1, 'item_standard', 1,'{}', 'A mold used for casting the components of a repeater firearm.'),
('repeaterreceiver', 'Repeater Receiver', 5, 1, 'item_standard', 1,'{}', 'A replacement receiver for a repeater firearm, which houses the firing mechanism.'),
('repeaterrecmold', 'Repeater Receiver Mold', 5, 1, 'item_standard', 1,'{}', 'A mold used for casting the receiver of a repeater firearm.'),
('repeaterstock', 'Repeater Stock', 5, 1, 'item_standard', 1,'{}', 'A replacement stock for a repeater firearm, providing stability and control.'),
('revolverbarrel', 'Revolver Barrel', 5, 1, 'item_standard', 1,'{}', 'A replacement barrel for a revolver firearm, used for improving accuracy and performance.'),
('revolvercylinder', 'Revolver Cylinder', 5, 1, 'item_standard', 1,'{}', 'A replacement cylinder for a revolver firearm, which holds the ammunition.'),
('revolverhandle', 'Revolver Handle', 5, 1, 'item_standard', 1,'{}', 'A replacement handle for a revolver firearm, providing grip and control.'),
('revolvermold', 'Revolver Mold', 5, 1, 'item_standard', 1,'{}', 'A mold used for casting the components of a revolver firearm.'),
('riflebarrel', 'Rifle Barrel', 5, 1, 'item_standard', 1,'{}', 'A replacement barrel for a rifle firearm, used for improving accuracy and performance.'),
('riflemold', 'Rifle Mold', 5, 1, 'item_standard', 1,'{}', 'A mold used for casting the components of a rifle firearm.'),
('riflereceiver', 'Rifle Receiver', 5, 1, 'item_standard', 1,'{}', 'A replacement receiver for a rifle firearm, which houses the firing mechanism.'),
('riflerecmold', 'Rifle Receiver Mold', 5, 1, 'item_standard', 1,'{}', 'A mold used for casting the receiver of a rifle firearm.'),
('riflestock', 'Rifle Stock', 5, 1, 'item_standard', 1,'{}', 'A replacement stock for a rifle firearm, providing stability and control.'),
('roach', 'Roach', 10, 1, 'item_standard', 0,'{}', 'A small insect commonly found in households and other environments.'),
('robberyplanning', 'Robbery Planning Set', 20, 1, 'item_standard', 1,'{}', 'A set of tools and materials used for planning a robbery or heist.'),
('robin_c', 'Robin', 20, 1, 'item_standard', 1,'{}', 'A small songbird known for its red breast and melodious voice.'),
('rock', 'Rock', 30, 1, 'item_standard', 0,'{}', 'A solid mineral material that forms the Earths crust, commonly found in various shapes and sizes.'),
('rollingpaper', 'Rolling paper', 30, 1, 'item_standard', 1,'{}', 'A thin, lightweight paper used for rolling cigarettes or other smoking materials.'),
('roundtable', 'Round Table', 20, 1, 'item_standard', 1,'{}', 'A circular table with a flat top surface, often used for dining or discussions.'),
('round_table', 'Round Table', 20, 1, 'item_standard', 1,'{}', 'A table with a round top surface, typically used for dining or meetings.'),
('rspoonb', 'Roseta Spoonbill beak', 20, 1, 'item_standard', 1,'{}', 'The long, slender beak of a Roseta Spoonbill bird, known for its distinctive shape and color.'),
('rspoonf', 'Roseta Spoonbill feather', 20, 1, 'item_standard', 1,'{}', 'A feather from a Roseta Spoonbill bird, often used in crafts and decorative items.'),
('rubber', 'Rubber', 20, 1, 'item_standard', 0,'{}', 'A flexible, elastic material derived from the sap of certain plants or synthesized chemically.'),
('rubbertube', 'Rubber Tube', 5, 1, 'item_standard', 0,'{}', 'A cylindrical tube made of rubber, commonly used for various applications such as plumbing or medical procedures.'),
('salamelle', 'Fresh Pork ', 20, 1, 'item_standard', 1,'{}', 'Fresh pork salamelle'),
('salmon', 'Salmon', 10, 1, 'item_standard', 0,'{}', 'Fresh salmon'),
('salt', 'Salt', 20, 1, 'item_standard', 1,'{}', 'Common salt'),
('Saltbush', 'Saltbush', 10, 1, 'item_standard', 1,'{}', 'Saltbush plant'),
('Saltbush_Seed', 'Saltbush Seed', 10, 1, 'item_standard', 1,'{}', 'Seed of Saltbush plant'),
('sap', 'Sap', 20, 1, 'item_standard', 0,'{}', 'Sticky sap'),
('sarsaparilla', 'Sarsaparilla', 10, 1, 'item_standard', 1,'{}', 'Medicinal sarsaparilla'),
('scale', 'Scale', 5, 1, 'item_standard', 1,'{}', 'Measuring scale'),
('scentg', 'Scent glad', 20, 1, 'item_standard', 1,'{}', 'Scented glad'),
('seagullb', 'Seagull beak', 20, 1, 'item_standard', 1,'{}', 'Beak of a seagull'),
('seagullf', 'Seagull feather', 20, 1, 'item_standard', 1,'{}', 'Feather from a seagull'),
('secondchance', 'Second Chance', 10, 1, 'item_standard', 1,'{}', 'Opportunity for a second chance'),
('sheephead', 'Sheep head', 20, 1, 'item_standard', 1,'{}', 'Head of a sheep'),
('shellcasing', 'Shell Casing', 40, 1, 'item_standard', 1,'{}', 'Empty shell casing'),
('shootingtarget', 'Shooting Target', 20, 1, 'item_standard', 1,'{}', 'Target for shooting practice'),
('shotgunbarrel', 'Shotgun Barrel', 5, 1, 'item_standard', 1,'{}', 'Barrel for a shotgun'),
('shotgunmold', 'Shotgun Mold', 5, 1, 'item_standard', 1,'{}', 'Mold for a shotgun'),
('shotgunstock', 'Shotgun Stock', 5, 1, 'item_standard', 1,'{}', 'Stock for a shotgun'),
('shrimps', 'Shrimp Stew', 1, 1, 'item_standard', 1,'{}', 'Delicious shrimp stew'),
('sidetable', 'side table 1', 20, 1, 'item_standard', 1,'{}', 'Functional side table'),
('sidetablea', 'side table 2', 20, 1, 'item_standard', 1,'{}', 'Stylish side table'),
('sidetableb', 'side table 3', 20, 1, 'item_standard', 1,'{}', 'A beautiful side table'),
('side_table', 'side table 1', 20, 1, 'item_standard', 1,'{}', 'A stylish side table'),
('side_tablea', 'side table 2', 20, 1, 'item_standard', 1,'{}', 'An elegant side table'),
('side_tableb', 'side table 3', 20, 1, 'item_standard', 1,'{}', 'A modern side table'),
('singlebed', 'single bed', 20, 1, 'item_standard', 1,'{}', 'A comfortable single bed'),
('skullpost', 'Skull Post', 20, 1, 'item_standard', 1,'{}', 'A decorative skull post'),
('smallchest', 'Small Chest', 1, 1, 'item_standard', 1,'{}', 'A small storage chest'),
('smallmcandle', 'Small Melted Candle', 20, 1, 'item_standard', 1,'{}', 'A small melted candle'),
('Small_Leather', 'Small Leather', 10, 1, 'item_standard', 1,'{}', 'A small piece of leather'),
('SnakeSkin', 'Snake Skin', 20, 1, 'item_standard', 1,'{}', 'A snake skin'),
('snaket', 'Snake tooth', 20, 1, 'item_standard', 1,'{}', 'A tooth from a snake'),
('Snake_Poison', 'Snake Poison', 10, 1, 'item_standard', 1,'{}', 'Poison extracted from a snake'),
('soborno', 'Soborno Alcohol', 15, 1, 'item_standard', 0,'{}', 'A bottle of Soborno alcohol'),
('songbird2_c', 'Scarlet songbird', 20, 1, 'item_standard', 1,'{}', 'A beautiful scarlet songbird'),
('songbird_c', 'Songbird', 20, 1, 'item_standard', 1,'{}', 'A lovely songbird'),
('sparrow0_c', 'Common Sparrow', 20, 1, 'item_standard', 1,'{}', 'A common sparrow'),
('sparrow1_c', 'Sparrow', 20, 1, 'item_standard', 1,'{}', 'A sparrow'),
('sparrow2_c', 'Golden Sparrow', 20, 1, 'item_standard', 1,'{}', 'A golden sparrow'),
('squirrel_black_c', 'Black Squirrel', 20, 1, 'item_standard', 1,'{}', 'A black squirrel'),
('squirrel_grey_c', 'Gray Squirrel', 20, 1, 'item_standard', 1,'{}', 'A gray squirrel'),
('squirrel_red_c', 'Red Squirrel', 20, 1, 'item_standard', 1,'{}', 'A Red squirrel'),
('standard_table', 'Table', 20, 1, 'item_standard', 1,'{}', 'A standard table for various uses.'),
('standingtorch', 'Standing Torch', 20, 1, 'item_standard', 1,'{}', 'A standing torch to provide light.'),
('steak', 'Steak', 10, 1, 'item_standard', 1,'{}', 'A delicious steak for a hearty meal.'),
('steakveg', 'Steak with Veggies', 10, 1, 'item_standard', 1,'{}', 'A balanced meal with steak and vegetables.'),
('stillkit', 'Still Kit', 5, 1, 'item_standard', 1,'{}', 'A kit for setting up a still to make distilled spirits.'),
('stim', 'Horse Stimulant', 2, 1, 'item_standard', 1,'{}', 'A stimulant to boost a horses performance.'),
('stolenmerch', 'Stolen Items', 10, 1, 'item_standard', 0,'{}', 'Various stolen items of questionable origin.'),
('stonehammer', 'Stone Hammer', 5, 1, 'item_standard', 1,'{}', 'A durable hammer made of stone.'),
('stringy', 'Stringy Meat', 20, 1, 'item_standard', 1,'{}', 'Tough and chewy meat that requires thorough cooking.'),
('sugar', 'Sugar', 20, 1, 'item_standard', 0,'{}', 'A sweet and granulated substance used for sweetening.'),
('sugarcaneseed', 'Sugarcane Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds for growing sugarcane.'),
('sugarcube', 'Sugar Cube', 10, 1, 'item_standard', 1,'{}', 'A compact form of sugar for easy use.'),
('sulfur', 'Sulfur', 30, 1, 'item_standard', 0,'{}', 'A yellow chemical element often used in manufacturing.'),
('syn', 'Syn', 50, 1, 'item_standard', 1,'{}', 'A synthetic substance used for various purposes.'),
('synpackage', 'Syn Package', 10, 1, 'item_standard', 1,'{}', 'A package containing synthetic substances.'),
('syringe', 'Syringe', 20, 1, 'item_standard', 1,'{}', 'A medical instrument used for injecting fluids.'),
('syringecert', 'Syringe Cert', 10, 1, 'item_standard', 1,'{}', 'A certification for the proper use of syringes.'),
('tent', 'Tent', 1, 1, 'item_standard', 1,'{}', 'A portable shelter for camping or temporary use.'),
('tent2', 'Trader Tent', 20, 1, 'item_standard', 1,'{}', 'A tent specifically designed for trading purposes.'),
('tent3', 'Simple Tent', 20, 1, 'item_standard', 1,'{}', 'A basic tent for camping.'),
('tent4', 'Canvas Shade', 20, 1, 'item_standard', 1,'{}', 'A canvas shade for shelter.'),
('tequila', 'Tequila', 10, 1, 'item_standard', 1,'{}', 'A bottle of tequila.'),
('Texas_Bonnet', 'Texas Bonnet', 10, 1, 'item_standard', 1,'{}', 'A traditional Texas bonnet.'),
('Texas_Bonnet_Seed', 'Texas Bonnet Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to grow Texas Bonnet flowers.'),
('timbertable', 'Timber Table', 20, 1, 'item_standard', 1,'{}', 'A sturdy table made of timber.'),
('timber_table', 'Timber Table', 20, 1, 'item_standard', 1,'{}', 'A table made of timber.'),
('tipi', 'Native Tipi', 20, 1, 'item_standard', 1,'{}', 'A traditional Native American tipi.'),
('toaddesert_c', 'Desert Toad', 20, 1, 'item_standard', 1,'{}', 'A toad found in the desert.'),
('toadpoison_c', 'Poisoned Toad', 20, 1, 'item_standard', 1,'{}', 'A toad that carries poison.'),
('toad_c', 'Toad', 20, 1, 'item_standard', 1,'{}', 'A common toad.'),
('token', 'Camp License', 5, 1, 'item_standard', 1,'{}', 'A license for setting up a camp.'),
('toolbarrel', 'Tool Barrel', 20, 1, 'item_standard', 1,'{}', 'A barrel for storing tools.'),
('tool_barrel', 'Tool Barrel', 20, 1, 'item_standard', 1,'{}', 'A barrel used for storing tools.'),
('trainkey', 'Train Key', 1, 1, 'item_standard', 1,'{}', 'A key to unlock a train.'),
('trayoffood', 'Serving Table', 20, 1, 'item_standard', 1,'{}', 'A table used for serving food.'),
('tropicalPunchMash', 'Ginseng Mash', 10, 1, 'item_standard', 0,'{}', 'A mash made from ginseng.'),
('tropicalPunchMoonshine', 'Ginseng Moonshine', 10, 1, 'item_standard', 0,'{}', 'Moonshine infused with ginseng.'),
('trout', 'Trout', 10, 1, 'item_standard', 0,'{}', 'A fish of the trout family.'),
('turkeyb', 'Turkey beak', 20, 1, 'item_standard', 1,'{}', 'The beak of a turkey.'),
('turkeyf', 'Turkey feather', 20, 1, 'item_standard', 1,'{}', 'A feather from a turkey.'),
('TurtleShell', 'Turtle Shell', 20, 1, 'item_standard', 1,'{}', 'The shell of a turtle.'),
('turtlet', 'Turtle tooth', 20, 1, 'item_standard', 1,'{}', 'A tooth extracted from a turtle.'),
('tylenol', 'Tylenol', 10, 1, 'item_standard', 1,'{}', 'A medication called Tylenol.'),
('undertaker1', 'Coffin', 20, 1, 'item_standard', 1,'{}', 'A wooden coffin.'),
('undertaker2', 'Flower Coffin', 20, 1, 'item_standard', 1,'{}', 'A coffin decorated with flowers.'),
('unique_brad_horsesugar', 'Brad Horse Sugar', 5, 1, 'item_standard', 1,'{}', 'Sugar used for horses owned by Brad.'),
('unique_horse_feed', 'Horse Feed', 5, 1, 'item_standard', 1,'{}', 'Feed for horses.'),
('vanillaFlower', 'Vanille Flower', 20, 1, 'item_standard', 0,'{}', 'A flower known as Vanille.'),
('venison', 'Venison', 20, 1, 'item_standard', 1,'{}', 'Lean meat obtained from deer.'),
('Violet_Snowdrop', 'Violet Snowdrop', 10, 1, 'item_standard', 1,'{}', 'A delicate flower called Violet Snowdrop.'),
('Violet_Snowdrop_Seed', 'Violet Snowdrop Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to grow Violet Snowdrop flowers.'),
('vodka', 'Vodka', 10, 1, 'item_standard', 1,'{}', 'A strong alcoholic beverage known as Vodka.'),
('Volture_Egg', 'Volture Egg', 10, 1, 'item_standard', 1,'{}', 'An egg laid by a Volture bird.'),
('vulturetaxi', 'Vulture Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A taxidermy of a vulture bird.'),
('vulture_taxidermy', 'Vulture Taxidermy', 20, 1, 'item_standard', 1,'{}', 'A preserved vulture bird for display.'),
('washtub', 'Wash Tub', 20, 1, 'item_standard', 1,'{}', 'A tub used for washing clothes or other items.'),
('water', 'Water', 15, 1, 'item_standard', 1,'{}', 'Clean drinking water.'),
('waterbarrel', 'Water Barrel', 20, 1, 'item_standard', 1,'{}', 'A large barrel used for storing water.'),
('wateringcan', 'Water Jug', 10, 1, 'item_standard', 1,'{}', 'A jug-shaped container used for watering plants.'),
('wateringcan_dirtywater', 'Dirty Watering Jug', 10, 1, 'item_standard', 1,'{}', 'A watering jug filled with dirty water.'),
('wateringcan_empty', 'Empty Watering Jug', 10, 1, 'item_standard', 1,'{}', 'An empty watering jug.'),
('waterpump', 'Water Pump', 20, 1, 'item_standard', 1,'{}', 'A device used for pumping water.'),
('water_pump', 'Water Pump', 20, 1, 'item_standard', 1,'{}', 'A pump designed to move water.'),
('whisky', 'Whisky', 10, 1, 'item_standard', 1,'{}', 'An alcoholic beverage known as whisky.'),
('wickerbench', 'Wicker Bench', 20, 1, 'item_standard', 1,'{}', 'A bench made from wicker material.'),
('wicker_bench', 'Wicker Bench', 20, 1, 'item_standard', 1,'{}', 'A bench constructed with wicker material.'),
('wildCiderMash', 'Black Berry Mash', 10, 1, 'item_standard', 0,'{}', 'Mashed blackberries used for making cider.'),
('wildCiderMoonshine', 'Black Berry Moonshine', 10, 1, 'item_standard', 0,'{}', 'Homemade moonshine crafted from blackberries.'),
('Wild_Carrot', 'Wild Carrot', 10, 1, 'item_standard', 1,'{}', 'A type of carrot that grows in the wild.'),
('Wild_Carrot_Seed', 'Wild Carrot Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to cultivate wild carrots.'),
('Wild_Feverfew', 'Wild Feverfew', 10, 1, 'item_standard', 1,'{}', 'A wild plant known as Feverfew.'),
('Wild_Feverfew_Seed', 'Wild Feverfew Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to grow Feverfew plants.'),
('Wild_Mint', 'Wild Mint', 10, 1, 'item_standard', 1,'{}', 'A type of mint that grows in the wild.'),
('Wild_Mint_Seed', 'Wild Mint Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to cultivate wild mint.'),
('Wild_Rhubarb', 'Wild Rhubarb', 10, 1, 'item_standard', 1,'{}', 'A rhubarb plant that grows in the wild.'),
('Wild_Rhubarb_Seed', 'Wild Rhubarb Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to grow wild rhubarb.'),
('wine', 'Wine', 10, 1, 'item_standard', 1,'{}', 'An alcoholic beverage made from fermented grapes.'),
('Wintergreen_Berry', 'Wintergreen Berry', 10, 1, 'item_standard', 1,'{}', 'Berries from the wintergreen plant.'),
('Wintergreen_Berry_Seed', 'Wintergreen Berry Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to cultivate wintergreen berries.'),
('Wisteria', 'Wisteria', 10, 1, 'item_standard', 1,'{}', 'A flowering plant called Wisteria.'),
('Wisteria_Seed', 'Wisteria Seed', 10, 1, 'item_standard', 1,'{}', 'Seeds to grow Wisteria plants.'),
('wojape', 'Wojape', 5, 1, 'item_standard', 1,'{}', 'A traditional Native American sauce made from berries.'),
('wolfheart', 'Wolf heart', 20, 1, 'item_standard', 1,'{}', 'The heart of a wolf.'),
('wolfpelt', 'Wolf skin', 20, 1, 'item_standard', 1,'{}', 'The skin of a wolf.'),
('wolftooth', 'Wolf tooth', 20, 1, 'item_standard', 1,'{}', 'A tooth extracted from a wolf.'),
('wood', 'Soft Wood', 20, 1, 'item_standard', 0,'{}', 'A type of wood that is soft and easy to work with.'),
('woodbench', 'Wooden Bench', 20, 1, 'item_standard', 1,'{}', 'A bench made from wood material.'),
('woodchair', 'Wood Chair', 20, 1, 'item_standard', 1,'{}', 'A chair made from wood material.'),
('wooden_bench', 'Wooden Bench', 20, 1, 'item_standard', 1,'{}', 'A bench constructed with wooden material.'),
('wooden_boards', 'Wooden Boards', 25, 1, 'item_standard', 0,'{}', 'Boards made from wood material.'),
('woodpeck01_c', 'Woodpecker', 20, 1, 'item_standard', 1,'{}', 'The skin and feathers of a woodpecker.'),
('woodpeck02_c', 'Woodpecker 2', 20, 1, 'item_standard', 1,'{}', 'The skin and feathers of a woodpecker.'),
('wood_chair', 'Wood Chair', 20, 1, 'item_standard', 1,'{}', 'A chair made from wood material.'),
('wool', 'Wool', 50, 1, 'item_standard', 1,'{}', 'Fiber obtained from the fleece of sheep.'),
('wsnakes', 'Western rattlesnake pelt', 20, 1, 'item_standard', 1,'{}', 'The skin of a western rattlesnake.'),
('wsnakeskin', 'Watersnake pelt', 20, 1, 'item_standard', 1,'{}', 'The skin of a watersnake.'),