-
Notifications
You must be signed in to change notification settings - Fork 15
/
testmap.ldtk
1419 lines (1419 loc) · 58.3 KB
/
testmap.ldtk
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
{
"__header__": {
"fileType": "LDtk Project JSON",
"app": "LDtk",
"doc": "https://ldtk.io/json",
"schema": "https://ldtk.io/files/JSON_SCHEMA.json",
"appAuthor": "Sebastien 'deepnight' Benard",
"appVersion": "1.1.3",
"url": "https://ldtk.io"
},
"jsonVersion": "1.1.3",
"appBuildId": 458364,
"nextUid": 39,
"identifierStyle": "Capitalize",
"worldLayout": "LinearHorizontal",
"worldGridWidth": 128,
"worldGridHeight": 128,
"defaultLevelWidth": 256,
"defaultLevelHeight": 256,
"defaultPivotX": 0,
"defaultPivotY": 0,
"defaultGridSize": 8,
"bgColor": "#7F8093",
"defaultLevelBgColor": "#7F8093",
"minifyJson": false,
"externalLevels": false,
"exportTiled": false,
"simplifiedExport": false,
"imageExportMode": "None",
"pngFilePattern": null,
"backupOnSave": false,
"backupLimit": 10,
"levelNamePattern": "Level_%idx",
"tutorialDesc": null,
"flags": ["PrependIndexToLevelFileNames"],
"defs": { "layers": [
{
"__type": "Tiles",
"identifier": "Ground",
"type": "Tiles",
"uid": 2,
"gridSize": 8,
"guideGridWid": 0,
"guideGridHei": 0,
"displayOpacity": 1,
"inactiveOpacity": 1,
"hideInList": false,
"hideFieldsWhenInactive": true,
"pxOffsetX": 8,
"pxOffsetY": 8,
"parallaxFactorX": 0,
"parallaxFactorY": 0,
"parallaxScaling": true,
"requiredTags": [],
"excludedTags": [],
"intGridValues": [],
"autoTilesetDefUid": 1,
"autoRuleGroups": [],
"autoSourceLayerDefUid": null,
"tilesetDefUid": 1,
"tilePivotX": 0,
"tilePivotY": 0
},
{
"__type": "AutoLayer",
"identifier": "AutoLayer",
"type": "AutoLayer",
"uid": 5,
"gridSize": 8,
"guideGridWid": 0,
"guideGridHei": 0,
"displayOpacity": 1,
"inactiveOpacity": 1,
"hideInList": false,
"hideFieldsWhenInactive": true,
"pxOffsetX": 0,
"pxOffsetY": 0,
"parallaxFactorX": 0,
"parallaxFactorY": 0,
"parallaxScaling": true,
"requiredTags": [],
"excludedTags": [],
"intGridValues": [],
"autoTilesetDefUid": 1,
"autoRuleGroups": [
{
"uid": 6,
"name": "Walls Rule Group",
"active": true,
"isOptional": false,
"rules": [
{
"uid": 10,
"active": true,
"size": 1,
"tileIds": [3],
"chance": 1,
"breakOnMatch": true,
"pattern": [1],
"flipX": false,
"flipY": false,
"xModulo": 1,
"yModulo": 1,
"xOffset": 0,
"yOffset": 0,
"checker": "None",
"tileMode": "Single",
"pivotX": 0,
"pivotY": 0,
"outOfBoundsValue": null,
"perlinActive": false,
"perlinSeed": 1306223,
"perlinScale": 0.2,
"perlinOctaves": 2
}
]
},
{
"uid": 7,
"name": "Floor Rule Group",
"active": true,
"isOptional": false,
"rules": [
{
"uid": 9,
"active": true,
"size": 1,
"tileIds": [8],
"chance": 1,
"breakOnMatch": true,
"pattern": [2],
"flipX": false,
"flipY": false,
"xModulo": 1,
"yModulo": 1,
"xOffset": 0,
"yOffset": 0,
"checker": "None",
"tileMode": "Single",
"pivotX": 0,
"pivotY": 0,
"outOfBoundsValue": null,
"perlinActive": false,
"perlinSeed": 7702816,
"perlinScale": 0.2,
"perlinOctaves": 2
}
]
}
],
"autoSourceLayerDefUid": 4,
"tilesetDefUid": 1,
"tilePivotX": 0,
"tilePivotY": 0
},
{
"__type": "IntGrid",
"identifier": "IntGrid",
"type": "IntGrid",
"uid": 4,
"gridSize": 8,
"guideGridWid": 0,
"guideGridHei": 0,
"displayOpacity": 1,
"inactiveOpacity": 1,
"hideInList": false,
"hideFieldsWhenInactive": true,
"pxOffsetX": 0,
"pxOffsetY": 0,
"parallaxFactorX": 0,
"parallaxFactorY": 0,
"parallaxScaling": true,
"requiredTags": [],
"excludedTags": [],
"intGridValues": [ { "value": 1, "identifier": "Wall", "color": "#000000" }, { "value": 2, "identifier": "Floor", "color": "#0000FF" } ],
"autoTilesetDefUid": null,
"autoRuleGroups": [],
"autoSourceLayerDefUid": null,
"tilesetDefUid": null,
"tilePivotX": 0,
"tilePivotY": 0
},
{
"__type": "IntGrid",
"identifier": "IntGridTiles",
"type": "IntGrid",
"uid": 13,
"gridSize": 8,
"guideGridWid": 0,
"guideGridHei": 0,
"displayOpacity": 1,
"inactiveOpacity": 1,
"hideInList": false,
"hideFieldsWhenInactive": true,
"pxOffsetX": 8,
"pxOffsetY": 8,
"parallaxFactorX": 0,
"parallaxFactorY": 0,
"parallaxScaling": true,
"requiredTags": [],
"excludedTags": [],
"intGridValues": [{ "value": 1, "identifier": "Walls", "color": "#000000" }],
"autoTilesetDefUid": 1,
"autoRuleGroups": [{
"uid": 14,
"name": "Walls Group",
"active": true,
"isOptional": false,
"rules": [
{
"uid": 15,
"active": true,
"size": 1,
"tileIds": [2],
"chance": 1,
"breakOnMatch": true,
"pattern": [1],
"flipX": false,
"flipY": false,
"xModulo": 1,
"yModulo": 1,
"xOffset": 0,
"yOffset": 0,
"checker": "None",
"tileMode": "Single",
"pivotX": 0,
"pivotY": 0,
"outOfBoundsValue": null,
"perlinActive": false,
"perlinSeed": 7833809,
"perlinScale": 0.2,
"perlinOctaves": 2
}
]
}],
"autoSourceLayerDefUid": null,
"tilesetDefUid": 1,
"tilePivotX": 0,
"tilePivotY": 0
},
{
"__type": "Entities",
"identifier": "Entities",
"type": "Entities",
"uid": 16,
"gridSize": 8,
"guideGridWid": 0,
"guideGridHei": 0,
"displayOpacity": 1,
"inactiveOpacity": 0.6,
"hideInList": false,
"hideFieldsWhenInactive": true,
"pxOffsetX": 0,
"pxOffsetY": 0,
"parallaxFactorX": 0,
"parallaxFactorY": 0,
"parallaxScaling": true,
"requiredTags": [],
"excludedTags": [],
"intGridValues": [],
"autoTilesetDefUid": null,
"autoRuleGroups": [],
"autoSourceLayerDefUid": null,
"tilesetDefUid": null,
"tilePivotX": 0,
"tilePivotY": 0
},
{
"__type": "IntGrid",
"identifier": "Collisions",
"type": "IntGrid",
"uid": 34,
"gridSize": 8,
"guideGridWid": 0,
"guideGridHei": 0,
"displayOpacity": 1,
"inactiveOpacity": 1,
"hideInList": false,
"hideFieldsWhenInactive": false,
"pxOffsetX": 0,
"pxOffsetY": 0,
"parallaxFactorX": 0,
"parallaxFactorY": 0,
"parallaxScaling": true,
"requiredTags": [],
"excludedTags": [],
"intGridValues": [{ "value": 1, "identifier": null, "color": "#000000" }],
"autoTilesetDefUid": 1,
"autoRuleGroups": [{
"uid": 35,
"name": "New group",
"active": true,
"isOptional": false,
"rules": [
{
"uid": 36,
"active": true,
"size": 1,
"tileIds": [8],
"chance": 1,
"breakOnMatch": true,
"pattern": [1],
"flipX": false,
"flipY": false,
"xModulo": 1,
"yModulo": 1,
"xOffset": 0,
"yOffset": 0,
"checker": "None",
"tileMode": "Single",
"pivotX": 0,
"pivotY": 0,
"outOfBoundsValue": null,
"perlinActive": false,
"perlinSeed": 403169,
"perlinScale": 0.2,
"perlinOctaves": 2
}
]
}],
"autoSourceLayerDefUid": null,
"tilesetDefUid": 1,
"tilePivotX": 0,
"tilePivotY": 0
}
], "entities": [
{
"identifier": "Player",
"uid": 17,
"tags": [],
"width": 16,
"height": 16,
"resizableX": false,
"resizableY": false,
"keepAspectRatio": false,
"tileOpacity": 1,
"fillOpacity": 1,
"lineOpacity": 1,
"hollow": false,
"color": "#94D9B3",
"renderMode": "Rectangle",
"showName": true,
"tilesetId": null,
"tileId": null,
"tileRenderMode": "Stretch",
"tileRect": null,
"nineSliceBorders": [],
"maxCount": 1,
"limitScope": "PerLevel",
"limitBehavior": "DiscardOldOnes",
"pivotX": 0,
"pivotY": 0,
"fieldDefs": [
{
"identifier": "NodeType",
"__type": "String",
"uid": 20,
"type": "F_String",
"isArray": false,
"canBeNull": true,
"arrayMinLength": null,
"arrayMaxLength": null,
"editorDisplayMode": "Hidden",
"editorDisplayPos": "Above",
"editorAlwaysShow": false,
"editorCutLongValues": true,
"editorTextSuffix": null,
"editorTextPrefix": null,
"useForSmartColor": false,
"min": null,
"max": null,
"regex": null,
"acceptFileTypes": null,
"defaultOverride": {
"id": "V_String",
"params": ["KinematicBody2D"]
},
"textLanguageMode": null,
"symmetricalRef": false,
"autoChainRef": true,
"allowOutOfLevelRef": true,
"allowedRefs": "OnlySame",
"allowedRefTags": [],
"tilesetUid": null
},
{
"identifier": "Health",
"__type": "Int",
"uid": 21,
"type": "F_Int",
"isArray": false,
"canBeNull": false,
"arrayMinLength": null,
"arrayMaxLength": null,
"editorDisplayMode": "Hidden",
"editorDisplayPos": "Above",
"editorAlwaysShow": false,
"editorCutLongValues": true,
"editorTextSuffix": null,
"editorTextPrefix": null,
"useForSmartColor": false,
"min": 0,
"max": 10,
"regex": null,
"acceptFileTypes": null,
"defaultOverride": { "id": "V_Int", "params": [10] },
"textLanguageMode": null,
"symmetricalRef": false,
"autoChainRef": true,
"allowOutOfLevelRef": true,
"allowedRefs": "OnlySame",
"allowedRefTags": [],
"tilesetUid": null
}
]
},
{
"identifier": "Enemy",
"uid": 18,
"tags": [],
"width": 16,
"height": 16,
"resizableX": false,
"resizableY": false,
"keepAspectRatio": false,
"tileOpacity": 1,
"fillOpacity": 1,
"lineOpacity": 1,
"hollow": false,
"color": "#F87575",
"renderMode": "Rectangle",
"showName": true,
"tilesetId": null,
"tileId": null,
"tileRenderMode": "Stretch",
"tileRect": null,
"nineSliceBorders": [],
"maxCount": 0,
"limitScope": "PerLevel",
"limitBehavior": "DiscardOldOnes",
"pivotX": 0,
"pivotY": 0,
"fieldDefs": [
{
"identifier": "NodeType",
"__type": "String",
"uid": 19,
"type": "F_String",
"isArray": false,
"canBeNull": true,
"arrayMinLength": null,
"arrayMaxLength": null,
"editorDisplayMode": "Hidden",
"editorDisplayPos": "Above",
"editorAlwaysShow": false,
"editorCutLongValues": true,
"editorTextSuffix": null,
"editorTextPrefix": null,
"useForSmartColor": false,
"min": null,
"max": null,
"regex": null,
"acceptFileTypes": null,
"defaultOverride": {
"id": "V_String",
"params": ["KinematicBody2D"]
},
"textLanguageMode": null,
"symmetricalRef": false,
"autoChainRef": true,
"allowOutOfLevelRef": true,
"allowedRefs": "OnlySame",
"allowedRefTags": [],
"tilesetUid": null
},
{
"identifier": "Health",
"__type": "Int",
"uid": 22,
"type": "F_Int",
"isArray": false,
"canBeNull": false,
"arrayMinLength": null,
"arrayMaxLength": null,
"editorDisplayMode": "Hidden",
"editorDisplayPos": "Above",
"editorAlwaysShow": false,
"editorCutLongValues": true,
"editorTextSuffix": null,
"editorTextPrefix": null,
"useForSmartColor": false,
"min": 0,
"max": 3,
"regex": null,
"acceptFileTypes": null,
"defaultOverride": { "id": "V_Int", "params": [3] },
"textLanguageMode": null,
"symmetricalRef": false,
"autoChainRef": true,
"allowOutOfLevelRef": true,
"allowedRefs": "OnlySame",
"allowedRefTags": [],
"tilesetUid": null
}
]
},
{
"identifier": "Area",
"uid": 24,
"tags": [],
"width": 240,
"height": 32,
"resizableX": false,
"resizableY": false,
"keepAspectRatio": false,
"tileOpacity": 1,
"fillOpacity": 1,
"lineOpacity": 1,
"hollow": false,
"color": "#4335A9",
"renderMode": "Rectangle",
"showName": true,
"tilesetId": null,
"tileId": null,
"tileRenderMode": "Stretch",
"tileRect": null,
"nineSliceBorders": [],
"maxCount": 0,
"limitScope": "PerLevel",
"limitBehavior": "DiscardOldOnes",
"pivotX": 0,
"pivotY": 0,
"fieldDefs": [
{
"identifier": "NodeType",
"__type": "String",
"uid": 25,
"type": "F_String",
"isArray": false,
"canBeNull": true,
"arrayMinLength": null,
"arrayMaxLength": null,
"editorDisplayMode": "Hidden",
"editorDisplayPos": "Above",
"editorAlwaysShow": false,
"editorCutLongValues": true,
"editorTextSuffix": null,
"editorTextPrefix": null,
"useForSmartColor": false,
"min": null,
"max": null,
"regex": null,
"acceptFileTypes": null,
"defaultOverride": {
"id": "V_String",
"params": ["Area2D"]
},
"textLanguageMode": null,
"symmetricalRef": false,
"autoChainRef": true,
"allowOutOfLevelRef": true,
"allowedRefs": "OnlySame",
"allowedRefTags": [],
"tilesetUid": null
}
]
},
{
"identifier": "Entity",
"uid": 38,
"tags": [],
"width": 16,
"height": 16,
"resizableX": false,
"resizableY": false,
"keepAspectRatio": false,
"tileOpacity": 1,
"fillOpacity": 1,
"lineOpacity": 1,
"hollow": false,
"color": "#FFB700",
"renderMode": "Rectangle",
"showName": true,
"tilesetId": null,
"tileId": null,
"tileRenderMode": "FitInside",
"tileRect": null,
"nineSliceBorders": [],
"maxCount": 0,
"limitScope": "PerLevel",
"limitBehavior": "MoveLastOne",
"pivotX": 0,
"pivotY": 0,
"fieldDefs": []
}
], "tilesets": [
{
"__cWid": 12,
"__cHei": 32,
"identifier": "Cavernas_by_Adam_Saltsman",
"uid": 1,
"relPath": "Cavernas_by_Adam_Saltsman.png",
"embedAtlas": null,
"pxWid": 96,
"pxHei": 256,
"tileGridSize": 8,
"spacing": 0,
"padding": 0,
"tags": [],
"tagsSourceEnumUid": null,
"enumTags": [],
"customData": [],
"savedSelections": [],
"cachedPixelData": {
"opaqueTiles": "111111111111111111111110111111110000111111110000111111110000111111110000111111110000111111111000111111111100111111111100111111111100111111111111000111111111111001111100111000000000111000000000111000000000111000000000111100000000111111000000111111000000111111000000111111000000111111000000111111000000111111000000000000000000000000000000000000000000000000000000000000000000000000000000",
"averageColors": "f123f224f224f224f224f224f224f224f333f324f323f434f573f453f343f666f666f334f544f544f334f334f3340000f343f223f233f334f445f555f644f2344336323563464346f343f233f233f334f223f778f223f5337335523553366346f224f666f667f974f654f654f533f5332564256435642454f334f236f445f644f544f634f434f3344235000000000000f235f236f334f644f433f223f764f6660000000000000000f447f233f224f223fa54f224f335f446f754000000000000f236f34af236f623fe41f555f999f888f644f54400000000f888f78bf888f679fea8fdccfaaaf556f434f12300000000f66af67bf67bf349fe97f453f343f334f654f54400000000f226f224f338f236f423f224f224f224f623f623f267f267711271237112f333f343f224f224f123f852f852f326f325f112f112f11200000000f224f224f224f777f77700000000f744f459f112000000000000000000000000000000000000f743f338f111000000000000000000000000000000000000f223f223f223000000000000000000000000000000000000f223f223f123000000000000000000000000000000000000f223f223f123f22400000000000000000000000000000000f243f233f343f235f123f235000000000000000000000000f233f343f343f224f235f235000000000000000000000000f233f644f333f123f224f224000000000000000000000000f233f754f444f123f224f224000000000000000000000000f233f754f434f123f224f224000000000000000000000000f233f754f444f123f224f224000000000000000000000000f123f864f434f123f235f224000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
}
}
], "enums": [], "externalEnums": [], "levelFields": [] },
"levels": [
{
"identifier": "Level_0",
"iid": "a9e5bdb1-dbe0-11ec-9df7-17d9e5d0761a",
"uid": 0,
"worldX": -1,
"worldY": -1,
"worldDepth": 0,
"pxWid": 256,
"pxHei": 256,
"__bgColor": "#7F8093",
"bgColor": null,
"useAutoIdentifier": true,
"bgRelPath": null,
"bgPos": null,
"bgPivotX": 0.5,
"bgPivotY": 0.5,
"__smartColor": "#B9B9C4",
"__bgPos": null,
"externalRelPath": null,
"fieldInstances": [],
"layerInstances": [
{
"__identifier": "Ground",
"__type": "Tiles",
"__cWid": 32,
"__cHei": 32,
"__gridSize": 8,
"__opacity": 1,
"__pxTotalOffsetX": 8,
"__pxTotalOffsetY": 8,
"__tilesetDefUid": 1,
"__tilesetRelPath": "Cavernas_by_Adam_Saltsman.png",
"iid": "a9e632e1-dbe0-11ec-9df7-8bad8dc61e32",
"levelId": 0,
"layerDefUid": 2,
"pxOffsetX": 0,
"pxOffsetY": 0,
"visible": true,
"optionalRules": [],
"intGridCsv": [],
"autoLayerTiles": [],
"seed": 8349455,
"overrideTilesetUid": null,
"gridTiles": [
{ "px": [40,32], "src": [80,48], "f": 0, "t": 82, "d": [133] },
{ "px": [48,32], "src": [80,48], "f": 0, "t": 82, "d": [134] },
{ "px": [40,40], "src": [80,48], "f": 0, "t": 82, "d": [165] },
{ "px": [48,40], "src": [72,40], "f": 0, "t": 69, "d": [166] },
{ "px": [0,48], "src": [0,8], "f": 0, "t": 12, "d": [192] },
{ "px": [8,48], "src": [8,8], "f": 0, "t": 13, "d": [193] },
{ "px": [16,48], "src": [0,8], "f": 0, "t": 12, "d": [194] },
{ "px": [24,48], "src": [8,8], "f": 0, "t": 13, "d": [195] },
{ "px": [56,48], "src": [0,8], "f": 0, "t": 12, "d": [199] },
{ "px": [64,48], "src": [8,8], "f": 0, "t": 13, "d": [200] },
{ "px": [72,48], "src": [8,16], "f": 0, "t": 25, "d": [201] },
{ "px": [80,48], "src": [8,8], "f": 0, "t": 13, "d": [202] },
{ "px": [88,48], "src": [8,8], "f": 0, "t": 13, "d": [203] },
{ "px": [112,48], "src": [48,0], "f": 0, "t": 6, "d": [206] },
{ "px": [120,48], "src": [48,0], "f": 0, "t": 6, "d": [207] },
{ "px": [128,48], "src": [48,0], "f": 0, "t": 6, "d": [208] },
{ "px": [136,48], "src": [8,8], "f": 0, "t": 13, "d": [209] },
{ "px": [160,48], "src": [0,8], "f": 0, "t": 12, "d": [212] },
{ "px": [168,48], "src": [8,8], "f": 0, "t": 13, "d": [213] },
{ "px": [176,48], "src": [0,8], "f": 0, "t": 12, "d": [214] },
{ "px": [184,48], "src": [8,8], "f": 0, "t": 13, "d": [215] },
{ "px": [192,48], "src": [8,8], "f": 0, "t": 13, "d": [216] },
{ "px": [216,48], "src": [0,8], "f": 0, "t": 12, "d": [219] },
{ "px": [224,48], "src": [8,8], "f": 0, "t": 13, "d": [220] },
{ "px": [232,48], "src": [16,8], "f": 0, "t": 14, "d": [221] },
{ "px": [240,48], "src": [16,16], "f": 0, "t": 26, "d": [222] },
{ "px": [0,56], "src": [0,16], "f": 0, "t": 24, "d": [224] },
{ "px": [8,56], "src": [8,16], "f": 0, "t": 25, "d": [225] },
{ "px": [16,56], "src": [8,16], "f": 0, "t": 25, "d": [226] },
{ "px": [24,56], "src": [8,16], "f": 0, "t": 25, "d": [227] },
{ "px": [56,56], "src": [0,16], "f": 0, "t": 24, "d": [231] },
{ "px": [64,56], "src": [8,16], "f": 0, "t": 25, "d": [232] },
{ "px": [72,56], "src": [8,16], "f": 0, "t": 25, "d": [233] },
{ "px": [80,56], "src": [8,16], "f": 0, "t": 25, "d": [234] },
{ "px": [88,56], "src": [8,16], "f": 0, "t": 25, "d": [235] },
{ "px": [112,56], "src": [0,16], "f": 0, "t": 24, "d": [238] },
{ "px": [120,56], "src": [48,0], "f": 0, "t": 6, "d": [239] },
{ "px": [128,56], "src": [8,16], "f": 0, "t": 25, "d": [240] },
{ "px": [136,56], "src": [8,16], "f": 0, "t": 25, "d": [241] },
{ "px": [160,56], "src": [0,16], "f": 0, "t": 24, "d": [244] },
{ "px": [168,56], "src": [8,16], "f": 0, "t": 25, "d": [245] },
{ "px": [176,56], "src": [32,0], "f": 0, "t": 4, "d": [246] },
{ "px": [184,56], "src": [8,16], "f": 0, "t": 25, "d": [247] },
{ "px": [192,56], "src": [48,0], "f": 0, "t": 6, "d": [248] },
{ "px": [216,56], "src": [0,16], "f": 0, "t": 24, "d": [251] },
{ "px": [224,56], "src": [8,16], "f": 0, "t": 25, "d": [252] },
{ "px": [232,56], "src": [16,16], "f": 0, "t": 26, "d": [253] },
{ "px": [240,56], "src": [16,16], "f": 0, "t": 26, "d": [254] },
{ "px": [0,64], "src": [8,16], "f": 0, "t": 25, "d": [256] },
{ "px": [8,64], "src": [8,16], "f": 0, "t": 25, "d": [257] },
{ "px": [56,64], "src": [0,16], "f": 0, "t": 24, "d": [263] },
{ "px": [64,64], "src": [8,16], "f": 0, "t": 25, "d": [264] },
{ "px": [80,64], "src": [0,16], "f": 0, "t": 24, "d": [266] },
{ "px": [88,64], "src": [8,16], "f": 0, "t": 25, "d": [267] },
{ "px": [112,64], "src": [0,16], "f": 0, "t": 24, "d": [270] },
{ "px": [120,64], "src": [48,0], "f": 0, "t": 6, "d": [271] },
{ "px": [136,64], "src": [8,24], "f": 0, "t": 37, "d": [273] },
{ "px": [160,64], "src": [32,0], "f": 0, "t": 4, "d": [276] },
{ "px": [168,64], "src": [32,0], "f": 0, "t": 4, "d": [277] },
{ "px": [184,64], "src": [32,0], "f": 0, "t": 4, "d": [279] },
{ "px": [192,64], "src": [32,0], "f": 0, "t": 4, "d": [280] },
{ "px": [224,64], "src": [32,0], "f": 0, "t": 4, "d": [284] },
{ "px": [232,64], "src": [32,0], "f": 0, "t": 4, "d": [285] },
{ "px": [0,72], "src": [0,16], "f": 0, "t": 24, "d": [288] },
{ "px": [8,72], "src": [8,16], "f": 0, "t": 25, "d": [289] },
{ "px": [24,72], "src": [0,8], "f": 0, "t": 12, "d": [291] },
{ "px": [32,72], "src": [8,8], "f": 0, "t": 13, "d": [292] },
{ "px": [56,72], "src": [0,16], "f": 0, "t": 24, "d": [295] },
{ "px": [64,72], "src": [8,16], "f": 0, "t": 25, "d": [296] },
{ "px": [80,72], "src": [0,16], "f": 0, "t": 24, "d": [298] },
{ "px": [88,72], "src": [8,16], "f": 0, "t": 25, "d": [299] },
{ "px": [112,72], "src": [0,16], "f": 0, "t": 24, "d": [302] },
{ "px": [120,72], "src": [8,16], "f": 0, "t": 25, "d": [303] },
{ "px": [136,72], "src": [8,8], "f": 0, "t": 13, "d": [305] },
{ "px": [160,72], "src": [0,16], "f": 0, "t": 24, "d": [308] },
{ "px": [168,72], "src": [8,16], "f": 0, "t": 25, "d": [309] },
{ "px": [184,72], "src": [48,0], "f": 0, "t": 6, "d": [311] },
{ "px": [192,72], "src": [8,16], "f": 0, "t": 25, "d": [312] },
{ "px": [224,72], "src": [32,0], "f": 0, "t": 4, "d": [316] },
{ "px": [232,72], "src": [8,8], "f": 0, "t": 13, "d": [317] },
{ "px": [0,80], "src": [8,16], "f": 0, "t": 25, "d": [320] },
{ "px": [8,80], "src": [8,16], "f": 0, "t": 25, "d": [321] },
{ "px": [16,80], "src": [0,8], "f": 0, "t": 12, "d": [322] },
{ "px": [24,80], "src": [8,16], "f": 0, "t": 25, "d": [323] },
{ "px": [32,80], "src": [8,16], "f": 0, "t": 25, "d": [324] },
{ "px": [56,80], "src": [0,8], "f": 0, "t": 12, "d": [327] },
{ "px": [64,80], "src": [8,8], "f": 0, "t": 13, "d": [328] },
{ "px": [72,80], "src": [8,16], "f": 0, "t": 25, "d": [329] },
{ "px": [80,80], "src": [8,16], "f": 0, "t": 25, "d": [330] },
{ "px": [88,80], "src": [8,8], "f": 0, "t": 13, "d": [331] },
{ "px": [112,80], "src": [16,16], "f": 0, "t": 26, "d": [334] },
{ "px": [120,80], "src": [48,0], "f": 0, "t": 6, "d": [335] },
{ "px": [128,80], "src": [8,8], "f": 0, "t": 13, "d": [336] },
{ "px": [136,80], "src": [8,16], "f": 0, "t": 25, "d": [337] },
{ "px": [160,80], "src": [0,8], "f": 0, "t": 12, "d": [340] },
{ "px": [168,80], "src": [32,0], "f": 0, "t": 4, "d": [341] },
{ "px": [176,80], "src": [0,8], "f": 0, "t": 12, "d": [342] },
{ "px": [184,80], "src": [32,0], "f": 0, "t": 4, "d": [343] },
{ "px": [192,80], "src": [8,8], "f": 0, "t": 13, "d": [344] },
{ "px": [224,80], "src": [48,0], "f": 0, "t": 6, "d": [348] },
{ "px": [232,80], "src": [8,16], "f": 0, "t": 25, "d": [349] },
{ "px": [0,88], "src": [0,16], "f": 0, "t": 24, "d": [352] },
{ "px": [8,88], "src": [8,16], "f": 0, "t": 25, "d": [353] },
{ "px": [16,88], "src": [0,16], "f": 0, "t": 24, "d": [354] },
{ "px": [24,88], "src": [8,16], "f": 0, "t": 25, "d": [355] },
{ "px": [56,88], "src": [0,16], "f": 0, "t": 24, "d": [359] },
{ "px": [64,88], "src": [8,16], "f": 0, "t": 25, "d": [360] },
{ "px": [72,88], "src": [8,16], "f": 0, "t": 25, "d": [361] },
{ "px": [80,88], "src": [8,16], "f": 0, "t": 25, "d": [362] },
{ "px": [88,88], "src": [8,16], "f": 0, "t": 25, "d": [363] },
{ "px": [112,88], "src": [0,16], "f": 0, "t": 24, "d": [366] },
{ "px": [120,88], "src": [0,16], "f": 0, "t": 24, "d": [367] },
{ "px": [128,88], "src": [8,16], "f": 0, "t": 25, "d": [368] },
{ "px": [136,88], "src": [8,24], "f": 0, "t": 37, "d": [369] },
{ "px": [160,88], "src": [0,16], "f": 0, "t": 24, "d": [372] },
{ "px": [168,88], "src": [8,16], "f": 0, "t": 25, "d": [373] },
{ "px": [176,88], "src": [0,16], "f": 0, "t": 24, "d": [374] },
{ "px": [184,88], "src": [8,16], "f": 0, "t": 25, "d": [375] },
{ "px": [192,88], "src": [8,16], "f": 0, "t": 25, "d": [376] },
{ "px": [224,88], "src": [8,24], "f": 0, "t": 37, "d": [380] },
{ "px": [232,88], "src": [8,24], "f": 0, "t": 37, "d": [381] }
],
"entityInstances": []
},
{
"__identifier": "AutoLayer",
"__type": "AutoLayer",
"__cWid": 32,
"__cHei": 32,
"__gridSize": 8,
"__opacity": 1,
"__pxTotalOffsetX": 0,
"__pxTotalOffsetY": 0,
"__tilesetDefUid": 1,
"__tilesetRelPath": "Cavernas_by_Adam_Saltsman.png",
"iid": "a9e659f0-dbe0-11ec-9df7-415e3c7b1b83",
"levelId": 0,
"layerDefUid": 5,
"pxOffsetX": 0,
"pxOffsetY": 0,
"visible": true,
"optionalRules": [],
"intGridCsv": [],
"autoLayerTiles": [
{ "px": [0,152], "src": [64,0], "f": 0, "t": 8, "d": [9,608] },
{ "px": [8,152], "src": [64,0], "f": 0, "t": 8, "d": [9,609] },
{ "px": [16,152], "src": [64,0], "f": 0, "t": 8, "d": [9,610] },
{ "px": [24,152], "src": [64,0], "f": 0, "t": 8, "d": [9,611] },
{ "px": [32,152], "src": [64,0], "f": 0, "t": 8, "d": [9,612] },
{ "px": [40,152], "src": [64,0], "f": 0, "t": 8, "d": [9,613] },
{ "px": [48,152], "src": [64,0], "f": 0, "t": 8, "d": [9,614] },
{ "px": [56,152], "src": [64,0], "f": 0, "t": 8, "d": [9,615] },
{ "px": [64,152], "src": [64,0], "f": 0, "t": 8, "d": [9,616] },
{ "px": [72,152], "src": [64,0], "f": 0, "t": 8, "d": [9,617] },
{ "px": [80,152], "src": [64,0], "f": 0, "t": 8, "d": [9,618] },
{ "px": [88,152], "src": [64,0], "f": 0, "t": 8, "d": [9,619] },
{ "px": [96,152], "src": [64,0], "f": 0, "t": 8, "d": [9,620] },
{ "px": [104,152], "src": [64,0], "f": 0, "t": 8, "d": [9,621] },
{ "px": [112,152], "src": [64,0], "f": 0, "t": 8, "d": [9,622] },
{ "px": [120,152], "src": [64,0], "f": 0, "t": 8, "d": [9,623] },
{ "px": [128,152], "src": [64,0], "f": 0, "t": 8, "d": [9,624] },
{ "px": [136,152], "src": [64,0], "f": 0, "t": 8, "d": [9,625] },
{ "px": [144,152], "src": [64,0], "f": 0, "t": 8, "d": [9,626] },
{ "px": [152,152], "src": [64,0], "f": 0, "t": 8, "d": [9,627] },
{ "px": [160,152], "src": [64,0], "f": 0, "t": 8, "d": [9,628] },
{ "px": [168,152], "src": [64,0], "f": 0, "t": 8, "d": [9,629] },
{ "px": [176,152], "src": [64,0], "f": 0, "t": 8, "d": [9,630] },
{ "px": [184,152], "src": [64,0], "f": 0, "t": 8, "d": [9,631] },
{ "px": [192,152], "src": [64,0], "f": 0, "t": 8, "d": [9,632] },
{ "px": [200,152], "src": [64,0], "f": 0, "t": 8, "d": [9,633] },
{ "px": [208,152], "src": [64,0], "f": 0, "t": 8, "d": [9,634] },
{ "px": [216,152], "src": [64,0], "f": 0, "t": 8, "d": [9,635] },
{ "px": [224,152], "src": [64,0], "f": 0, "t": 8, "d": [9,636] },
{ "px": [232,152], "src": [64,0], "f": 0, "t": 8, "d": [9,637] },
{ "px": [240,152], "src": [64,0], "f": 0, "t": 8, "d": [9,638] },
{ "px": [248,152], "src": [64,0], "f": 0, "t": 8, "d": [9,639] },
{ "px": [0,104], "src": [24,0], "f": 0, "t": 3, "d": [10,416] },
{ "px": [8,104], "src": [24,0], "f": 0, "t": 3, "d": [10,417] },
{ "px": [16,104], "src": [24,0], "f": 0, "t": 3, "d": [10,418] },
{ "px": [24,104], "src": [24,0], "f": 0, "t": 3, "d": [10,419] },
{ "px": [56,104], "src": [24,0], "f": 0, "t": 3, "d": [10,423] },
{ "px": [64,104], "src": [24,0], "f": 0, "t": 3, "d": [10,424] },
{ "px": [72,104], "src": [24,0], "f": 0, "t": 3, "d": [10,425] },
{ "px": [80,104], "src": [24,0], "f": 0, "t": 3, "d": [10,426] },
{ "px": [88,104], "src": [24,0], "f": 0, "t": 3, "d": [10,427] },
{ "px": [112,104], "src": [24,0], "f": 0, "t": 3, "d": [10,430] },
{ "px": [120,104], "src": [24,0], "f": 0, "t": 3, "d": [10,431] },
{ "px": [128,104], "src": [24,0], "f": 0, "t": 3, "d": [10,432] },
{ "px": [136,104], "src": [24,0], "f": 0, "t": 3, "d": [10,433] },
{ "px": [160,104], "src": [24,0], "f": 0, "t": 3, "d": [10,436] },
{ "px": [168,104], "src": [24,0], "f": 0, "t": 3, "d": [10,437] },
{ "px": [176,104], "src": [24,0], "f": 0, "t": 3, "d": [10,438] },
{ "px": [184,104], "src": [24,0], "f": 0, "t": 3, "d": [10,439] },
{ "px": [192,104], "src": [24,0], "f": 0, "t": 3, "d": [10,440] },
{ "px": [216,104], "src": [24,0], "f": 0, "t": 3, "d": [10,443] },
{ "px": [224,104], "src": [24,0], "f": 0, "t": 3, "d": [10,444] },
{ "px": [232,104], "src": [24,0], "f": 0, "t": 3, "d": [10,445] },
{ "px": [240,104], "src": [24,0], "f": 0, "t": 3, "d": [10,446] },
{ "px": [0,112], "src": [24,0], "f": 0, "t": 3, "d": [10,448] },
{ "px": [8,112], "src": [24,0], "f": 0, "t": 3, "d": [10,449] },
{ "px": [16,112], "src": [24,0], "f": 0, "t": 3, "d": [10,450] },
{ "px": [24,112], "src": [24,0], "f": 0, "t": 3, "d": [10,451] },
{ "px": [56,112], "src": [24,0], "f": 0, "t": 3, "d": [10,455] },
{ "px": [64,112], "src": [24,0], "f": 0, "t": 3, "d": [10,456] },
{ "px": [72,112], "src": [24,0], "f": 0, "t": 3, "d": [10,457] },
{ "px": [80,112], "src": [24,0], "f": 0, "t": 3, "d": [10,458] },
{ "px": [88,112], "src": [24,0], "f": 0, "t": 3, "d": [10,459] },
{ "px": [112,112], "src": [24,0], "f": 0, "t": 3, "d": [10,462] },
{ "px": [120,112], "src": [24,0], "f": 0, "t": 3, "d": [10,463] },
{ "px": [128,112], "src": [24,0], "f": 0, "t": 3, "d": [10,464] },
{ "px": [136,112], "src": [24,0], "f": 0, "t": 3, "d": [10,465] },
{ "px": [160,112], "src": [24,0], "f": 0, "t": 3, "d": [10,468] },
{ "px": [168,112], "src": [24,0], "f": 0, "t": 3, "d": [10,469] },
{ "px": [176,112], "src": [24,0], "f": 0, "t": 3, "d": [10,470] },
{ "px": [184,112], "src": [24,0], "f": 0, "t": 3, "d": [10,471] },
{ "px": [192,112], "src": [24,0], "f": 0, "t": 3, "d": [10,472] },
{ "px": [216,112], "src": [24,0], "f": 0, "t": 3, "d": [10,475] },
{ "px": [224,112], "src": [24,0], "f": 0, "t": 3, "d": [10,476] },
{ "px": [232,112], "src": [24,0], "f": 0, "t": 3, "d": [10,477] },
{ "px": [240,112], "src": [24,0], "f": 0, "t": 3, "d": [10,478] },
{ "px": [0,120], "src": [24,0], "f": 0, "t": 3, "d": [10,480] },
{ "px": [8,120], "src": [24,0], "f": 0, "t": 3, "d": [10,481] },
{ "px": [56,120], "src": [24,0], "f": 0, "t": 3, "d": [10,487] },
{ "px": [64,120], "src": [24,0], "f": 0, "t": 3, "d": [10,488] },
{ "px": [80,120], "src": [24,0], "f": 0, "t": 3, "d": [10,490] },
{ "px": [88,120], "src": [24,0], "f": 0, "t": 3, "d": [10,491] },
{ "px": [112,120], "src": [24,0], "f": 0, "t": 3, "d": [10,494] },
{ "px": [120,120], "src": [24,0], "f": 0, "t": 3, "d": [10,495] },
{ "px": [136,120], "src": [24,0], "f": 0, "t": 3, "d": [10,497] },
{ "px": [160,120], "src": [24,0], "f": 0, "t": 3, "d": [10,500] },
{ "px": [168,120], "src": [24,0], "f": 0, "t": 3, "d": [10,501] },
{ "px": [184,120], "src": [24,0], "f": 0, "t": 3, "d": [10,503] },
{ "px": [192,120], "src": [24,0], "f": 0, "t": 3, "d": [10,504] },
{ "px": [224,120], "src": [24,0], "f": 0, "t": 3, "d": [10,508] },
{ "px": [232,120], "src": [24,0], "f": 0, "t": 3, "d": [10,509] },
{ "px": [0,128], "src": [24,0], "f": 0, "t": 3, "d": [10,512] },
{ "px": [8,128], "src": [24,0], "f": 0, "t": 3, "d": [10,513] },
{ "px": [24,128], "src": [24,0], "f": 0, "t": 3, "d": [10,515] },
{ "px": [32,128], "src": [24,0], "f": 0, "t": 3, "d": [10,516] },
{ "px": [56,128], "src": [24,0], "f": 0, "t": 3, "d": [10,519] },
{ "px": [64,128], "src": [24,0], "f": 0, "t": 3, "d": [10,520] },
{ "px": [80,128], "src": [24,0], "f": 0, "t": 3, "d": [10,522] },
{ "px": [88,128], "src": [24,0], "f": 0, "t": 3, "d": [10,523] },
{ "px": [112,128], "src": [24,0], "f": 0, "t": 3, "d": [10,526] },
{ "px": [120,128], "src": [24,0], "f": 0, "t": 3, "d": [10,527] },
{ "px": [136,128], "src": [24,0], "f": 0, "t": 3, "d": [10,529] },
{ "px": [160,128], "src": [24,0], "f": 0, "t": 3, "d": [10,532] },
{ "px": [168,128], "src": [24,0], "f": 0, "t": 3, "d": [10,533] },
{ "px": [184,128], "src": [24,0], "f": 0, "t": 3, "d": [10,535] },
{ "px": [192,128], "src": [24,0], "f": 0, "t": 3, "d": [10,536] },
{ "px": [224,128], "src": [24,0], "f": 0, "t": 3, "d": [10,540] },
{ "px": [232,128], "src": [24,0], "f": 0, "t": 3, "d": [10,541] },
{ "px": [0,136], "src": [24,0], "f": 0, "t": 3, "d": [10,544] },
{ "px": [8,136], "src": [24,0], "f": 0, "t": 3, "d": [10,545] },
{ "px": [16,136], "src": [24,0], "f": 0, "t": 3, "d": [10,546] },
{ "px": [24,136], "src": [24,0], "f": 0, "t": 3, "d": [10,547] },
{ "px": [32,136], "src": [24,0], "f": 0, "t": 3, "d": [10,548] },
{ "px": [56,136], "src": [24,0], "f": 0, "t": 3, "d": [10,551] },
{ "px": [64,136], "src": [24,0], "f": 0, "t": 3, "d": [10,552] },
{ "px": [72,136], "src": [24,0], "f": 0, "t": 3, "d": [10,553] },
{ "px": [80,136], "src": [24,0], "f": 0, "t": 3, "d": [10,554] },
{ "px": [88,136], "src": [24,0], "f": 0, "t": 3, "d": [10,555] },
{ "px": [112,136], "src": [24,0], "f": 0, "t": 3, "d": [10,558] },
{ "px": [120,136], "src": [24,0], "f": 0, "t": 3, "d": [10,559] },
{ "px": [128,136], "src": [24,0], "f": 0, "t": 3, "d": [10,560] },
{ "px": [136,136], "src": [24,0], "f": 0, "t": 3, "d": [10,561] },
{ "px": [160,136], "src": [24,0], "f": 0, "t": 3, "d": [10,564] },
{ "px": [168,136], "src": [24,0], "f": 0, "t": 3, "d": [10,565] },
{ "px": [176,136], "src": [24,0], "f": 0, "t": 3, "d": [10,566] },
{ "px": [184,136], "src": [24,0], "f": 0, "t": 3, "d": [10,567] },
{ "px": [192,136], "src": [24,0], "f": 0, "t": 3, "d": [10,568] },
{ "px": [224,136], "src": [24,0], "f": 0, "t": 3, "d": [10,572] },
{ "px": [232,136], "src": [24,0], "f": 0, "t": 3, "d": [10,573] },
{ "px": [0,144], "src": [24,0], "f": 0, "t": 3, "d": [10,576] },
{ "px": [8,144], "src": [24,0], "f": 0, "t": 3, "d": [10,577] },
{ "px": [16,144], "src": [24,0], "f": 0, "t": 3, "d": [10,578] },
{ "px": [24,144], "src": [24,0], "f": 0, "t": 3, "d": [10,579] },
{ "px": [56,144], "src": [24,0], "f": 0, "t": 3, "d": [10,583] },
{ "px": [64,144], "src": [24,0], "f": 0, "t": 3, "d": [10,584] },
{ "px": [72,144], "src": [24,0], "f": 0, "t": 3, "d": [10,585] },
{ "px": [80,144], "src": [24,0], "f": 0, "t": 3, "d": [10,586] },
{ "px": [88,144], "src": [24,0], "f": 0, "t": 3, "d": [10,587] },
{ "px": [112,144], "src": [24,0], "f": 0, "t": 3, "d": [10,590] },
{ "px": [120,144], "src": [24,0], "f": 0, "t": 3, "d": [10,591] },
{ "px": [128,144], "src": [24,0], "f": 0, "t": 3, "d": [10,592] },
{ "px": [136,144], "src": [24,0], "f": 0, "t": 3, "d": [10,593] },
{ "px": [160,144], "src": [24,0], "f": 0, "t": 3, "d": [10,596] },
{ "px": [168,144], "src": [24,0], "f": 0, "t": 3, "d": [10,597] },
{ "px": [176,144], "src": [24,0], "f": 0, "t": 3, "d": [10,598] },
{ "px": [184,144], "src": [24,0], "f": 0, "t": 3, "d": [10,599] },
{ "px": [192,144], "src": [24,0], "f": 0, "t": 3, "d": [10,600] },
{ "px": [224,144], "src": [24,0], "f": 0, "t": 3, "d": [10,604] },
{ "px": [232,144], "src": [24,0], "f": 0, "t": 3, "d": [10,605] }
],
"seed": 2755975,
"overrideTilesetUid": null,
"gridTiles": [],
"entityInstances": []
},
{
"__identifier": "IntGrid",
"__type": "IntGrid",
"__cWid": 32,
"__cHei": 32,
"__gridSize": 8,
"__opacity": 1,
"__pxTotalOffsetX": 0,
"__pxTotalOffsetY": 0,
"__tilesetDefUid": null,
"__tilesetRelPath": null,
"iid": "a9e68100-dbe0-11ec-9df7-e50b6698ac73",
"levelId": 0,
"layerDefUid": 4,
"pxOffsetX": 0,
"pxOffsetY": 0,
"visible": true,
"optionalRules": [],
"intGridCsv": [
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,
0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,0,0,0,
1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,0,0,0,0,0,1,1,0,
1,1,0,0,1,1,0,1,0,0,1,1,0,1,1,0,0,0,1,1,0,0,1,1,0,1,1,0,0,1,1,0,1,1,0,
0,1,1,0,1,0,0,1,1,0,1,1,0,0,0,1,1,0,0,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,
1,1,0,0,1,1,1,1,1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,
0,1,1,1,1,1,0,0,0,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,