forked from Khaligufzel/Dimensionfall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ItemProtosets.tres
2682 lines (2680 loc) · 68 KB
/
ItemProtosets.tres
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
[gd_resource type="Resource" script_class="ItemProtoset" load_steps=2 format=3 uid="uid://cgkq7vfjq07jm"]
[ext_resource type="Script" path="res://addons/gloot/core/item_protoset.gd" id="1_o35lu"]
[resource]
script = ExtResource("1_o35lu")
json_data = "[
{
\"description\": \"A wooden plank that could be used for all kinds of crafting and construction\",
\"id\": \"plank_2x4\",
\"image\": \"./Mods/Dimensionfall/Items/plank.png\",
\"max_stack_size\": 3,
\"name\": \"Plank 2x4\",
\"sprite\": \"plank.png\",
\"stack_size\": 1,
\"volume\": 300,
\"weight\": 2
},
{
\"description\": \"Some metal bits and pieces. Useful for something, right?\",
\"id\": \"steel_scrap\",
\"image\": \"./Mods/Dimensionfall/Items/steel_scrap.png\",
\"max_stack_size\": 100,
\"name\": \"Steel scrap\",
\"sprite\": \"steel_scrap.png\",
\"stack_size\": 2,
\"volume\": 15,
\"weight\": 0.25
},
{
\"Ammo\": {
\"damage\": 25
},
\"description\": \"Standard type of ammunition. Very common.\",
\"id\": \"bullet_9mm\",
\"image\": \"./Mods/Dimensionfall/Items/9mm.png\",
\"max_stack_size\": 100,
\"name\": \"bullet 9mm\",
\"sprite\": \"9mm.png\",
\"stack_size\": 20,
\"volume\": 0.1,
\"weight\": 0.01
},
{
\"Craft\": [
{
\"craft_amount\": 1,
\"craft_time\": 10,
\"required_resources\": [
{
\"amount\": 1,
\"id\": \"steel_scrap\"
},
{
\"amount\": 10,
\"id\": \"bullet_9mm\"
}
],
\"skill_progression\": {
\"id\": \"fabrication\",
\"xp\": 10
},
\"skill_requirement\": {
\"id\": \"fabrication\",
\"level\": 1
}
}
],
\"description\": \"In order for your pistol to fire a bullet, it needs to have a magazine loaded with bullets\",
\"id\": \"pistol_magazine\",
\"image\": \"./Mods/Dimensionfall/Items/pistol_magazine.png\",
\"max_stack_size\": 1,
\"name\": \"Pistol magazine\",
\"sprite\": \"pistol_magazine.png\",
\"stack_size\": 1,
\"volume\": 10,
\"weight\": 0.25
},
{
\"Ranged\": {
\"firing_speed\": 0.4,
\"range\": 1000,
\"recoil\": 10,
\"reload_speed\": 1.5,
\"spread\": 5,
\"sway\": 5,
\"used_ammo\": \"9mm\",
\"used_magazine\": \"pistol_magazine\",
\"used_skill\": {
\"skill_id\": \"handguns\",
\"xp\": 1
}
},
\"description\": \"A standard issue pistol that uses 9mm ammunition\",
\"id\": \"pistol_9mm\",
\"image\": \"./Mods/Dimensionfall/Items/pistol_32.png\",
\"max_stack_size\": 1,
\"name\": \"Pistol 9mm\",
\"sprite\": \"pistol_32.png\",
\"stack_size\": 1,
\"volume\": 150,
\"weight\": 2
},
{
\"Ranged\": {
\"firing_speed\": 0.2,
\"range\": 1000,
\"recoil\": 15,
\"reload_speed\": 2.5,
\"spread\": 8,
\"sway\": 5,
\"used_ammo\": \"9mm\",
\"used_magazine\": \"pistol_magazine\",
\"used_skill\": {
\"skill_id\": \"rifle\",
\"xp\": 1
}
},
\"description\": \"A standard issue rifle that uses 9mm ammunition\",
\"id\": \"rifle_m4a1\",
\"image\": \"./Mods/Dimensionfall/Items/rifle_64_32.png\",
\"max_stack_size\": 1,
\"name\": \"M4a1 rifle\",
\"sprite\": \"rifle_64_32.png\",
\"stack_size\": 1,
\"volume\": 300,
\"weight\": 4
},
{
\"Ranged\": {
\"firing_speed\": 0.25,
\"range\": 1000,
\"recoil\": 20,
\"reload_speed\": 2.5,
\"spread\": 5,
\"sway\": 5,
\"used_ammo\": \"9mm\",
\"used_magazine\": \"chugunov_mpap_magazine\",
\"used_skill\": {
\"skill_id\": \"smg\",
\"xp\": 1
}
},
\"description\": \"Chugun in Russian is for cast steel, MPAP is \\\"Multi Purpose Automatic Pistol\\\"\",
\"id\": \"chugunov_mpap\",
\"image\": \"./Mods/Dimensionfall/Items/chugunov_mpap_32_28.png\",
\"max_stack_size\": 1,
\"name\": \"Chugunov MPAP\",
\"sprite\": \"chugunov_mpap_32_28.png\",
\"stack_size\": 1,
\"volume\": 150,
\"weight\": 3
},
{
\"description\": \"A magazine to be loaded into a Chuganov MPAP\",
\"id\": \"chugunov_mpap_magazine\",
\"image\": \"./Mods/Dimensionfall/Items/chugunov_mpap_magazine_16_32.png\",
\"max_stack_size\": 1,
\"name\": \"Chuganov MPAP magazine\",
\"sprite\": \"chugunov_mpap_magazine_16_32.png\",
\"stack_size\": 1,
\"volume\": 10,
\"weight\": 0.25
},
{
\"description\": \"This plastic bottle only contains air\",
\"id\": \"bottle_plastic_empty\",
\"image\": \"./Mods/Dimensionfall/Items/bottle_empty_32.png\",
\"max_stack_size\": 10,
\"name\": \"Empty plastic bottle\",
\"sprite\": \"bottle_empty_32.png\",
\"stack_size\": 2,
\"volume\": 15,
\"weight\": 0.1
},
{
\"Food\": {
\"attributes\": [
{
\"amount\": 20,
\"id\": \"water\"
}
]
},
\"description\": \"This plastic bottle is filled with water\",
\"id\": \"bottle_plastic_water\",
\"image\": \"./Mods/Dimensionfall/Items/bottle_water_32.png\",
\"max_stack_size\": 10,
\"name\": \"Plastic bottle with water\",
\"sprite\": \"bottle_water_32.png\",
\"stack_size\": 2,
\"volume\": 15,
\"weight\": 0.25
},
{
\"Food\": {
\"attributes\": [
{
\"amount\": 25,
\"id\": \"food\"
}
]
},
\"description\": \"The contents will satisfy your hunger\",
\"id\": \"canned_food\",
\"image\": \"./Mods/Dimensionfall/Items/canned_food_32.png\",
\"max_stack_size\": 5,
\"name\": \"Canned food\\t\",
\"sprite\": \"canned_food_32.png\",
\"stack_size\": 1,
\"volume\": 30,
\"weight\": 0.25
},
{
\"Melee\": {
\"damage\": 25,
\"reach\": 1,
\"used_skill\": {
\"skill_id\": \"cutting\",
\"xp\": 10
}
},
\"description\": \"A sharp blade with a handle for excellent control\",
\"id\": \"machete\",
\"image\": \"./Mods/Dimensionfall/Items/machete_32.png\",
\"max_stack_size\": 1,
\"name\": \"Machete\",
\"sprite\": \"machete_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 4
},
{
\"description\": \"Anyone is able to craft this simple arrow\",
\"id\": \"wood_arrow_basic\",
\"image\": \"./Mods/Dimensionfall/Items/arrow_basic_32.png\",
\"max_stack_size\": 20,
\"name\": \"Basic wooden arrow\",
\"sprite\": \"arrow_basic_32.png\",
\"stack_size\": 5,
\"volume\": 1,
\"weight\": 0.1
},
{
\"description\": \"A stick with a block of steel on it. It is used to apply force to objects like nails\",
\"id\": \"hammer\",
\"image\": \"./Mods/Dimensionfall/Items/hammer_32.png\",
\"max_stack_size\": 1,
\"name\": \"Hammer\",
\"sprite\": \"hammer_32.png\",
\"stack_size\": 1,
\"volume\": 50,
\"weight\": 2
},
{
\"Craft\": [
{
\"craft_amount\": 1,
\"craft_time\": 1,
\"required_resources\": [
{
\"amount\": 1,
\"id\": \"steel_scrap\"
},
{
\"amount\": 1,
\"id\": \"bottle_plastic_empty\"
}
]
}
],
\"description\": \"A handle with a rod of steel in it. The tip can be flat or shaped like a star. Useful for construction projects\",
\"id\": \"screwdriver\",
\"image\": \"./Mods/Dimensionfall/Items/screwdriver_32.png\",
\"max_stack_size\": 1,
\"name\": \"Screwdriver\",
\"sprite\": \"screwdriver_32.png\",
\"stack_size\": 1,
\"volume\": 20,
\"weight\": 0.5
},
{
\"Medical\": {
\"amount\": 25,
\"attributes\": [
{
\"amount\": 0,
\"id\": \"head_health\"
},
{
\"amount\": 0,
\"id\": \"torso_health\"
},
{
\"amount\": 0,
\"id\": \"left_arm_health\"
},
{
\"amount\": 0,
\"id\": \"right_arm_health\"
},
{
\"amount\": 0,
\"id\": \"left_leg_health\"
},
{
\"amount\": 0,
\"id\": \"right_leg_health\"
}
],
\"order\": \"Lowest first\"
},
\"description\": \"A basic bandage that will help to heal a wound\",
\"id\": \"bandage_basic\",
\"image\": \"./Mods/Dimensionfall/Items/bandage_32.png\",
\"max_stack_size\": 20,
\"name\": \"Bandage\",
\"sprite\": \"bandage_32.png\",
\"stack_size\": 3,
\"volume\": 1,
\"weight\": 0.1
},
{
\"Medical\": {
\"amount\": 10,
\"attributes\": [
{
\"amount\": 0,
\"id\": \"head_health\"
},
{
\"amount\": 0,
\"id\": \"torso_health\"
},
{
\"amount\": 0,
\"id\": \"left_arm_health\"
},
{
\"amount\": 0,
\"id\": \"right_arm_health\"
},
{
\"amount\": 0,
\"id\": \"left_leg_health\"
},
{
\"amount\": 0,
\"id\": \"right_leg_health\"
}
],
\"order\": \"Lowest first\"
},
\"description\": \"A small bottle that contains antibiotics. It helps to recover from disease.\",
\"id\": \"bottle_antibiotics\",
\"image\": \"./Mods/Dimensionfall/Items/antibiotics_32.png\",
\"max_stack_size\": 5,
\"name\": \"Bottle of antibiotics\",
\"sprite\": \"antibiotics_32.png\",
\"stack_size\": 1,
\"volume\": 5,
\"weight\": 0.1
},
{
\"Wearable\": {
\"player_attributes\": [],
\"slot\": \"torso\"
},
\"description\": \"A piece of clothing to wear on the torso. It will keep you warm and offers a bit of protection.\",
\"id\": \"jacket\",
\"image\": \"./Mods/Dimensionfall/Items/jacket_32.png\",
\"max_stack_size\": 1,
\"name\": \"Jacket\",
\"sprite\": \"jacket_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 1
},
{
\"Wearable\": {
\"player_attributes\": [],
\"slot\": \"feet\"
},
\"description\": \"Comfortable footwear to keep your feet safe\",
\"id\": \"boots\",
\"image\": \"./Mods/Dimensionfall/Items/boots_32.png\",
\"max_stack_size\": 1,
\"name\": \"Boots\",
\"sprite\": \"boots_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 1
},
{
\"description\": \"A large container that holds gasoline\",
\"id\": \"jerrycan_gasoline\",
\"image\": \"./Mods/Dimensionfall/Items/jerrycan_gas_32.png\",
\"max_stack_size\": 1,
\"name\": \"Jerrycan of gasoline\",
\"sprite\": \"jerrycan_gas_32.png\",
\"stack_size\": 1,
\"volume\": 400,
\"weight\": 10
},
{
\"description\": \"It's a can that contains oil. It has a spout that allows you to pour it out.\",
\"id\": \"can_oil\",
\"image\": \"./Mods/Dimensionfall/Items/can_oil_32.png\",
\"max_stack_size\": 1,
\"name\": \"Can of oil\",
\"sprite\": \"can_oil_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 2
},
{
\"description\": \"A small radio that can be powered by batteries or an electical cord.\",
\"id\": \"radio_handheld\",
\"image\": \"./Mods/Dimensionfall/Items/battery_powered_radio_32.png\",
\"max_stack_size\": 1,
\"name\": \"Handheld radio\",
\"sprite\": \"battery_powered_radio_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 1
},
{
\"description\": \"A basic battery powered flashlight. It will shine a beam of light when it is turned on\",
\"id\": \"flashlight_basic\",
\"image\": \"./Mods/Dimensionfall/Items/flashlight_32.png\",
\"max_stack_size\": 1,
\"name\": \"Flashlight\",
\"sprite\": \"flashlight_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 0.5
},
{
\"description\": \"It's a can that contains beer. Don't drink a lot of it or you will get drunk\",
\"id\": \"can_beer\",
\"image\": \"./Mods/Dimensionfall/Items/can_beer_32.png\",
\"max_stack_size\": 5,
\"name\": \"Can of beer\",
\"sprite\": \"can_beer_32.png\",
\"stack_size\": 2,
\"volume\": 50,
\"weight\": 0.5
},
{
\"description\": \"It's a carton pack that contains sigarrettes. You need a fire source to light them and start smoking\",
\"id\": \"pack_sigarrettes\",
\"image\": \"./Mods/Dimensionfall/Items/sigarrette_pack_32.png\",
\"max_stack_size\": 5,
\"name\": \"Pack of sigarrettes\",
\"sprite\": \"sigarrette_pack_32.png\",
\"stack_size\": 1,
\"volume\": 10,
\"weight\": 0.1
},
{
\"Wearable\": {
\"player_attributes\": [],
\"slot\": \"head\"
},
\"description\": \"A piece of clothing that offers protection from environmental hazards\",
\"id\": \"gas_mask\",
\"image\": \"./Mods/Dimensionfall/Items/gasmask_32.png\",
\"max_stack_size\": 1,
\"name\": \"Gas mask\",
\"sprite\": \"gasmask_32.png\",
\"stack_size\": 1,
\"volume\": 80,
\"weight\": 1
},
{
\"Wearable\": {
\"player_attributes\": [],
\"slot\": \"torso\"
},
\"description\": \"A piece of clothing that offers protection from ballistic forces\",
\"id\": \"vest_ballistic\",
\"image\": \"./Mods/Dimensionfall/Items/vest_ballistic_32.png\",
\"max_stack_size\": 1,
\"name\": \"Ballistic vest\",
\"sprite\": \"vest_ballistic_32.png\",
\"stack_size\": 1,
\"volume\": 150,
\"weight\": 4
},
{
\"description\": \"A device that shows your orientation relative to the earth's poles\",
\"id\": \"compass\",
\"image\": \"./Mods/Dimensionfall/Items/compass_32.png\",
\"max_stack_size\": 1,
\"name\": \"Compass\",
\"sprite\": \"compass_32.png\",
\"stack_size\": 1,
\"volume\": 6,
\"weight\": 0.1
},
{
\"description\": \"A very common type of battery that fits most battery-powered devices\",
\"id\": \"battery_small\",
\"image\": \"./Mods/Dimensionfall/Items/battery_32.png\",
\"max_stack_size\": 20,
\"name\": \"Small battery\",
\"sprite\": \"battery_32.png\",
\"stack_size\": 1,
\"volume\": 0.01,
\"weight\": 0.1
},
{
\"description\": \"A large panel that draws power from the sun\",
\"id\": \"solar_panel\",
\"image\": \"./Mods/Dimensionfall/Items/solar_panel_32.png\",
\"max_stack_size\": 1,
\"name\": \"Solar panel\",
\"sprite\": \"solar_panel_32.png\",
\"stack_size\": 1,
\"volume\": 500,
\"weight\": 10
},
{
\"description\": \"A large piece of paper that visualizes the area around you\",
\"id\": \"map_paper\",
\"image\": \"./Mods/Dimensionfall/Items/map_paper_32.png\",
\"max_stack_size\": 1,
\"name\": \"Paper map\",
\"sprite\": \"map_paper_32.png\",
\"stack_size\": 1,
\"volume\": 5,
\"weight\": 0.1
},
{
\"description\": \"A piece of fabric and some strings. You can deploy it to get some shelter from the weather\",
\"id\": \"tarp\",
\"image\": \"./Mods/Dimensionfall/Items/tarp_32.png\",
\"max_stack_size\": 1,
\"name\": \"Tarp\",
\"sprite\": \"tarp_32.png\",
\"stack_size\": 1,
\"volume\": 150,
\"weight\": 3
},
{
\"description\": \"A piece of fabric and some strings. You can deploy it to get some shelter from the weather. It is currently folded to save space.\",
\"id\": \"tent\",
\"image\": \"./Mods/Dimensionfall/Items/tent_32.png\",
\"max_stack_size\": 1,
\"name\": \"Tent\",
\"sprite\": \"tent_32.png\",
\"stack_size\": 1,
\"volume\": 600,
\"weight\": 9
},
{
\"description\": \"A small book explaining the very basics of survival\",
\"id\": \"guide_survival_basic\",
\"image\": \"./Mods/Dimensionfall/Items/survival_guide_32.png\",
\"max_stack_size\": 5,
\"name\": \"Basic survival guide\",
\"sprite\": \"survival_guide_32.png\",
\"stack_size\": 1,
\"volume\": 10,
\"weight\": 0.1
},
{
\"description\": \"A book containing an entertaining story\",
\"id\": \"book_novel\",
\"image\": \"./Mods/Dimensionfall/Items/book_novel_32.png\",
\"max_stack_size\": 5,
\"name\": \"Novel\",
\"sprite\": \"book_novel_32.png\",
\"stack_size\": 1,
\"volume\": 10,
\"weight\": 0.4
},
{
\"Medical\": {
\"amount\": 10,
\"attributes\": [
{
\"amount\": 0,
\"id\": \"head_health\"
},
{
\"amount\": 0,
\"id\": \"torso_health\"
},
{
\"amount\": 0,
\"id\": \"left_arm_health\"
},
{
\"amount\": 0,
\"id\": \"right_arm_health\"
},
{
\"amount\": 0,
\"id\": \"left_leg_health\"
},
{
\"amount\": 0,
\"id\": \"right_leg_health\"
}
],
\"order\": \"Lowest first\"
},
\"description\": \"A small bottle that contains disinfectant. It helps to disinfect wounds\",
\"id\": \"bottle_disinfectant\",
\"image\": \"./Mods/Dimensionfall/Items/bottle_disinfectant_32.png\",
\"max_stack_size\": 5,
\"name\": \"Bottle of disinfectant\",
\"sprite\": \"bottle_disinfectant_32.png\",
\"stack_size\": 1,
\"volume\": 5,
\"weight\": 0.1
},
{
\"description\": \"A small radio that allows you to communicate with someone over a large distance\",
\"id\": \"radio_two_way\",
\"image\": \"./Mods/Dimensionfall/Items/radio_two_way_32.png\",
\"max_stack_size\": 1,
\"name\": \"Two way radio\",
\"sprite\": \"radio_two_way_32.png\",
\"stack_size\": 1,
\"volume\": 50,
\"weight\": 1
},
{
\"description\": \"A small device that provides a spark that can be used to light a fire. No power or fuel required.\",
\"id\": \"firestarter_basic\",
\"image\": \"./Mods/Dimensionfall/Items/firestarter_32.png\",
\"max_stack_size\": 1,
\"name\": \"Firestarter\",
\"sprite\": \"firestarter_32.png\",
\"stack_size\": 1,
\"volume\": 10,
\"weight\": 0.2
},
{
\"description\": \"\\n A true survival fishing kit in a very small, lightweight package!\\n Contains 118 foot line and winder\\n 2 lures, 2 hooks\\n 2 swivels, 2 weghts\\n Comes in a strong durable heavy duty resealable plastic bag\",
\"id\": \"kit_fishing_small\",
\"image\": \"./Mods/Dimensionfall/Items/kit_fishing_small_32.png\",
\"max_stack_size\": 1,
\"name\": \"Small fishing kit\",
\"sprite\": \"kit_fishing_small_32.png\",
\"stack_size\": 1,
\"volume\": 50,
\"weight\": 0.4
},
{
\"description\": \"A versatile kitchen tool, essential for slicing, dicing, and chopping food.\",
\"id\": \"kitchen_knife\",
\"image\": \"./Mods/Dimensionfall/Items/kitchen_knife_64_32.png\",
\"max_stack_size\": 1,
\"name\": \"Kitchen Knife\",
\"sprite\": \"kitchen_knife_64_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 0.4
},
{
\"description\": \"A compact and portable stove, perfect for cooking meals during survival situations.\",
\"id\": \"portable_stove\",
\"image\": \"./Mods/Dimensionfall/Items/portable_stove_64_32.png\",
\"max_stack_size\": 1,
\"name\": \"Portable Stove\",
\"sprite\": \"portable_stove_64_32.png\",
\"stack_size\": 1,
\"volume\": 200,
\"weight\": 3
},
{
\"description\": \"A durable cooking pot, essential for boiling water and preparing meals.\",
\"id\": \"cooking_pot\",
\"image\": \"./Mods/Dimensionfall/Items/cooking_pot_32.png\",
\"max_stack_size\": 1,
\"name\": \"Cooking Pot\",
\"sprite\": \"cooking_pot_32.png\",
\"stack_size\": 1,
\"volume\": 350,
\"weight\": 3
},
{
\"description\": \"A small tool crucial for opening canned food, an essential for survival.\",
\"id\": \"can_opener\",
\"image\": \"./Mods/Dimensionfall/Items/can_opener_64_32.png\",
\"max_stack_size\": 1,
\"name\": \"Can opener\",
\"sprite\": \"can_opener_64_32.png\",
\"stack_size\": 1,
\"volume\": 60,
\"weight\": 0.2
},
{
\"Craft\": [
{
\"craft_amount\": 1,
\"craft_time\": 10,
\"required_resources\": [
{
\"amount\": 1,
\"id\": \"plank_2x4\"
}
],
\"skill_progression\": {
\"id\": \"fabrication\",
\"xp\": 10
},
\"skill_requirement\": {
\"id\": \"fabrication\",
\"level\": 1
}
}
],
\"description\": \"A sturdy cutting board, ideal for preparing food safely and efficiently.\",
\"id\": \"cutting_board\",
\"image\": \"./Mods/Dimensionfall/Items/cutting_board_64_32.png\",
\"max_stack_size\": 1,
\"name\": \"Cutting Board\",
\"sprite\": \"cutting_board_64_32.png\",
\"stack_size\": 1,
\"volume\": 200,
\"weight\": 1
},
{
\"description\": \"A large bowl used for mixing ingredients, indispensable for any cooking or baking tasks.\",
\"id\": \"mixing_bowl\",
\"image\": \"./Mods/Dimensionfall/Items/mixing_bowl_32.png\",
\"max_stack_size\": 1,
\"name\": \"Mixing Bowl\",
\"sprite\": \"mixing_bowl_32.png\",
\"stack_size\": 1,
\"volume\": 250,
\"weight\": 0.5
},
{
\"description\": \"A metal kettle perfect for boiling water to make tea or instant meals.\",
\"id\": \"tea_kettle\",
\"image\": \"./Mods/Dimensionfall/Items/tea_kettle_32.png\",
\"max_stack_size\": 1,
\"name\": \"Tea Kettle\",
\"sprite\": \"tea_kettle_32.png\",
\"stack_size\": 1,
\"volume\": 200,
\"weight\": 1
},
{
\"description\": \"A small rack containing various spices to enhance the flavor of food.\",
\"id\": \"spice_rack\",
\"image\": \"./Mods/Dimensionfall/Items/spice_rack_32.png\",
\"max_stack_size\": 1,
\"name\": \"Spice Rack\",
\"sprite\": \"spice_rack_32.png\",
\"stack_size\": 1,
\"volume\": 150,
\"weight\": 1
},
{
\"description\": \"A measuring cup, essential for precisely measuring ingredients for recipes.\",
\"id\": \"measuring_cup\",
\"image\": \"./Mods/Dimensionfall/Items/measuring_cup_32.png\",
\"max_stack_size\": 1,
\"name\": \"Measuring Cup\",
\"sprite\": \"measuring_cup_32.png\",
\"stack_size\": 1,
\"volume\": 100,
\"weight\": 0.3
},
{
\"Craft\": [
{
\"craft_amount\": 1,
\"craft_time\": 10,
\"required_resources\": [
{
\"amount\": 1,
\"id\": \"plank_2x4\"
}
],
\"skill_progression\": {
\"id\": \"fabrication\",
\"xp\": 15
},
\"skill_requirement\": {
\"id\": \"fabrication\",
\"level\": 2
}
}
],
\"description\": \"A wooden rolling pin, essential for flattening dough for baking.\",
\"id\": \"rolling_pin\",
\"image\": \"./Mods/Dimensionfall/Items/rolling_pin_64_32.png\",
\"max_stack_size\": 1,
\"name\": \"Rolling Pin\",
\"sprite\": \"rolling_pin_64_32.png\",
\"stack_size\": 1,
\"volume\": 150,
\"weight\": 0.5
},
{
\"description\": \"A heavy-duty frying pan, perfect for cooking everything from eggs to stir-fry.\",
\"id\": \"frying_pan\",
\"image\": \"./Mods/Dimensionfall/Items/frying_pan_32.png\",
\"max_stack_size\": 1,
\"name\": \"Frying Pan\",
\"sprite\": \"frying_pan_32.png\",
\"stack_size\": 1,
\"volume\": 200,
\"weight\": 2
},
{
\"description\": \"A metal colander, ideal for draining pasta or washing vegetables.\",
\"id\": \"steel_colander\",
\"image\": \"./Mods/Dimensionfall/Items/steel_colander_32.png\",
\"max_stack_size\": 1,
\"name\": \"Colander\",
\"sprite\": \"steel_colander_32.png\",
\"stack_size\": 1,
\"volume\": 200,
\"weight\": 0.7
},
{
\"description\": \"A handy peeler, perfect for skinning vegetables and fruits with ease.\",
\"id\": \"peeler\",
\"image\": \"./Mods/Dimensionfall/Items/peeler_32.png\",
\"max_stack_size\": 1,
\"name\": \"Peeler\",
\"sprite\": \"peeler_32.png\",
\"stack_size\": 1,
\"volume\": 50,
\"weight\": 0.1
},
{
\"description\": \"A metal grater, essential for shredding cheese, vegetables, and more.\",
\"id\": \"grater\",
\"image\": \"./Mods/Dimensionfall/Items/grater_32.png\",
\"max_stack_size\": 1,
\"name\": \"Grater\",
\"sprite\": \"grater_32.png\",
\"stack_size\": 1,
\"volume\": 50,
\"weight\": 0.3
},
{
\"description\": \"A compact electric toaster, ideal for toasting bread quickly.\",
\"id\": \"toaster\",
\"image\": \"./Mods/Dimensionfall/Items/toaster_32.png\",
\"max_stack_size\": 1,
\"name\": \"Toaster\",
\"sprite\": \"toaster_32.png\",
\"stack_size\": 1,
\"volume\": 300,
\"weight\": 1.5
},
{
\"description\": \"An electric blender, perfect for making smoothies, soups, and other blended concoctions.\",
\"id\": \"blender\",
\"image\": \"./Mods/Dimensionfall/Items/blender_32.png\",
\"max_stack_size\": 1,
\"name\": \"Blender\",
\"sprite\": \"blender_32.png\",
\"stack_size\": 1,
\"volume\": 300,
\"weight\": 2
},
{
\"description\": \"A coffee maker, essential for brewing the perfect cup of coffee to start your day.\",
\"id\": \"coffee_maker\",
\"image\": \"./Mods/Dimensionfall/Items/coffeemaker_32.png\",
\"max_stack_size\": 1,
\"name\": \"Coffee Maker\",
\"sprite\": \"coffeemaker_32.png\",
\"stack_size\": 1,
\"volume\": 300,
\"weight\": 2.5
},
{
\"description\": \"A microwave oven, perfect for quickly heating or cooking food.\",
\"id\": \"microwave_oven\",
\"image\": \"./Mods/Dimensionfall/Items/microwave_oven_32.png\",
\"max_stack_size\": 1,
\"name\": \"Microwave Oven\",
\"sprite\": \"microwave_oven_32.png\",
\"stack_size\": 1,
\"volume\": 400,
\"weight\": 12
},
{
\"description\": \"A dish rack, useful for organizing and drying dishes after washing.\",
\"id\": \"dish_rack\",
\"image\": \"./Mods/Dimensionfall/Items/dish_rack_32.png\",
\"max_stack_size\": 1,
\"name\": \"Dish Rack\",
\"sprite\": \"dish_rack_32.png\",
\"stack_size\": 1,
\"volume\": 400,
\"weight\": 1
},
{
\"description\": \"A pressure cooker, ideal for fast cooking and preserving nutrients in food.\",
\"id\": \"pressure_cooker\",
\"image\": \"./Mods/Dimensionfall/Items/pressure_cooker_32.png\",
\"max_stack_size\": 1,
\"name\": \"Pressure Cooker\",
\"sprite\": \"pressure_cooker_32.png\",
\"stack_size\": 1,
\"volume\": 400,
\"weight\": 5
},
{
\"description\": \"A bread maker, perfect for effortlessly baking fresh bread at home.\",
\"id\": \"bread_maker\",
\"image\": \"./Mods/Dimensionfall/Items/bread_maker_32.png\",
\"max_stack_size\": 1,
\"name\": \"Bread Maker\",
\"sprite\": \"bread_maker_32.png\",
\"stack_size\": 1,
\"volume\": 300,
\"weight\": 5
},
{
\"description\": \"Small but crucial for holding together wooden structures and crafting. Often found in the remnants of furniture and buildings.\",
\"id\": \"nails\",
\"image\": \"./Mods/Dimensionfall/Items/nails_32.png\",
\"max_stack_size\": 100,
\"name\": \"Nails\",
\"sprite\": \"nails_32.png\",
\"stack_size\": 10,
\"volume\": 5,
\"weight\": 0.1
},
{
\"description\": \"Large pieces of wood obtained from cutting down trees. Useful for building and crafting larger items.\",
\"id\": \"log\",
\"image\": \"./Mods/Dimensionfall/Items/log_32.png\",
\"max_stack_size\": 3,
\"name\": \"Log\",
\"sprite\": \"log_32.png\",
\"stack_size\": 1,
\"volume\": 500,
\"weight\": 10
},
{
\"description\": \"Versatile fasteners used in both wooden and metal constructions. Can be scavenged from disassembled furniture and machinery.\",
\"id\": \"screw\",
\"image\": \"./Mods/Dimensionfall/Items/screw_32.png\",
\"max_stack_size\": 100,
\"name\": \"Screw\",
\"sprite\": \"screw_32.png\",
\"stack_size\": 10,
\"volume\": 5,
\"weight\": 0.1
},
{
\"description\": \"Smaller pieces of wood that can be used for kindling, basic crafting, and creating primitive tools.\",
\"id\": \"branch\",
\"image\": \"./Mods/Dimensionfall/Items/branches_32.png\",
\"max_stack_size\": 10,
\"name\": \"Branch\",
\"sprite\": \"branches_32.png\",
\"stack_size\": 1,
\"volume\": 50,
\"weight\": 2
},
{
\"description\": \"Can be used for camouflage, crafting bedding, or as a basic source of compost.\",
\"id\": \"leaf\",
\"image\": \"./Mods/Dimensionfall/Items/leaves_32.png\",
\"max_stack_size\": 50,
\"name\": \"Leaf\",
\"sprite\": \"leaves_32.png\",
\"stack_size\": 5,
\"volume\": 1,
\"weight\": 0.01
},
{
\"description\": \"Resinous branches that can be used for kindling or basic crafting.\",
\"id\": \"pine_branch\",
\"image\": \"./Mods/Dimensionfall/Items/pine_branch_32.png\",
\"max_stack_size\": 10,
\"name\": \"Pine Branch\",
\"sprite\": \"pine_branch_32.png\",
\"stack_size\": 1,
\"volume\": 50,
\"weight\": 2
},
{
\"description\": \"Natural material that can be molded when wet and hardens when dried, useful for creating pottery, bricks, and reinforcing structures.\",
\"id\": \"clay\",
\"image\": \"./Mods/Dimensionfall/Items/clay_32.png\",
\"max_stack_size\": 20,
\"name\": \"Clay\",
\"sprite\": \"clay_32.png\",
\"stack_size\": 5,
\"volume\": 20,
\"weight\": 1
},
{