forked from RPG-Paper-Maker/RPG-Paper-Maker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrees.json
More file actions
9893 lines (9893 loc) · 686 KB
/
trees.json
File metadata and controls
9893 lines (9893 loc) · 686 KB
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
{
"br": {
"files": [
{
"files": [
{
"files": [
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/plains-woods-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/plains-woods-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/shop.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/shop.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/town-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/town-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/plains-woods.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/plains-woods.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/town.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/town.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/inside.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/inside.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/sewers.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/sewers.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/town-desert.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/town-desert.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/plains-woods-haunted.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/plains-woods-haunted.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/dungeon-mines.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/dungeon-mines.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Tilesets/beach-desert.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets/beach-desert.png"
}
],
"target": "Engine/Content/BR/Content/Images/Textures2D/Tilesets"
},
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Autotiles/water.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Autotiles/water.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Autotiles/general.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Autotiles/general.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Autotiles/lava.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Autotiles/lava.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Autotiles/snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Autotiles/snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Autotiles/haunted.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Autotiles/haunted.png"
}
],
"target": "Engine/Content/BR/Content/Images/Textures2D/Autotiles"
},
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/night-front.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/night-front.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/day-top.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/day-top.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/evening-sun-right.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/evening-sun-right.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/night-bottom.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/night-bottom.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/evening-sun-back.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/evening-sun-back.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/night-top.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/night-top.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/day-right.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/day-right.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/night-left.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/night-left.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/day-back.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/day-back.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/night-back.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/night-back.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/day-front.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/day-front.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/evening-sun-left.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/evening-sun-left.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/evening-sun-top.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/evening-sun-top.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/night-right.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/night-right.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/evening-sun-front.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/evening-sun-front.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/evening-sun-bottom.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/evening-sun-bottom.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/day-bottom.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/day-bottom.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/SkyBoxes/day-left.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes/day-left.png"
}
],
"target": "Engine/Content/BR/Content/Images/Textures2D/SkyBoxes"
},
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Particles/snowflake.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Particles/snowflake.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Particles/raindrop.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Particles/raindrop.png"
}
],
"target": "Engine/Content/BR/Content/Images/Textures2D/Particles"
},
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/bush-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/bush-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/sandstone-big.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/sandstone-big.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/inside2.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/inside2.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/inside3.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/inside3.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/bush.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/bush.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/brick.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/brick.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/bridge-string.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/bridge-string.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/sandstone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/sandstone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/hedge-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/hedge-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/stone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/stone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/hedge.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/hedge.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/inside1.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/inside1.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/sewers.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/sewers.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/inside-door-opened.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/inside-door-opened.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/wood.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/wood.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/cave1.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/cave1.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/woods-wall.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/woods-wall.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Walls/bush-haunted.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls/bush-haunted.png"
}
],
"target": "Engine/Content/BR/Content/Images/Textures2D/Walls"
},
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/grass.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/grass.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/snow-no-borders.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/snow-no-borders.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/roof-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/roof-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/sidewalk.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/sidewalk.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/cave.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/cave.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/roof-white.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/roof-white.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/haunted-noborders.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/haunted-noborders.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/roof-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/roof-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/sandstone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/sandstone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/desert.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/desert.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/sand.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/sand.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/sewers.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/sewers.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/haunted.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/haunted.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/grass-noborders.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/grass-noborders.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/grass-small-cave-entry.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/grass-small-cave-entry.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Mountains/roof-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains/roof-red.png"
}
],
"target": "Engine/Content/BR/Content/Images/Textures2D/Mountains"
},
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/mushroomy.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/mushroomy.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/rat.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/rat.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/harpy.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/harpy.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/lucas.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/lucas.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/kate.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/kate.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/shana.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/shana.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/charles.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/charles.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/angel.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/angel.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/fantom.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/fantom.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/lamia.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/lamia.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/squid.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/squid.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/zombie.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/zombie.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/slime-black.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/slime-black.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/lily.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/lily.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/goblin.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/goblin.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/slime-gold.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/slime-gold.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/demon.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/demon.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/ogre.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/ogre.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/bat.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/bat.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/template.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/template.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/skeleton.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/skeleton.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/knight.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/knight.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/bibi.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/bibi.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/spider.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/spider.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/wooly.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/wooly.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/caitlyn.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/caitlyn.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/mimic.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/mimic.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/slime-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/slime-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Battlers/fortune.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers/fortune.png"
}
],
"target": "Engine/Content/BR/Content/Images/Textures2D/Battlers"
},
{
"files": [
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/cabinets3.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/cabinets3.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/car-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/car-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/barrel-closed.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/barrel-closed.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/car-white.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/car-white.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/barrel.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/barrel.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-black-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-black-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-big-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-big-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/building-stone-big.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/building-stone-big.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-brick-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-brick-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-brick-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-brick-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/cube-cobblestone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/cube-cobblestone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/dresser.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/dresser.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-small-opened-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-small-opened-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/building-stone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/building-stone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-opened2.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-opened2.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chimney-stone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chimney-stone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-wood-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-wood-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-wood-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-wood-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-big-white.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-big-white.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/table.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/table.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/cabinets2.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/cabinets2.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/sofa-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/sofa-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/log-small.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/log-small.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/sofa-black.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/sofa-black.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bookshelf-small.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bookshelf-small.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-small-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-small-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/car-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/car-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-opened1.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-opened1.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chair-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chair-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/barrel-vegetables.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/barrel-vegetables.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bath.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bath.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/log-big.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/log-big.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/table-small.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/table-small.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bus.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bus.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-brick-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-brick-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/woodfence.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/woodfence.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-wood-red-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-wood-red-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-small-opened.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-small-opened.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/car-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/car-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-stone-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-stone-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-big-black.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-big-black.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-small-opened-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-small-opened-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/car-black.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/car-black.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/tv-small.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/tv-small.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/fridge.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/fridge.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-black.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-black.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/sofa-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/sofa-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-big-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-big-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-wood-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-wood-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-small-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-small-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-white.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-white.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/table-big.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/table-big.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-red-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-red-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chair-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chair-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/picnic-table-wood.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/picnic-table-wood.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/building-brick-big.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/building-brick-big.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bookshelf.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bookshelf.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/sofa-green.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/sofa-green.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/tent.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/tent.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-black.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-black.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-wood-blue-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-wood-blue-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/sofa-white.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/sofa-white.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-brick-green-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-brick-green-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/building-brick.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/building-brick.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bed-white.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bed-white.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-small.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-small.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-stone-green-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-stone-green-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chest-small-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chest-small-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-stone-red.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-stone-red.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chimney-brick.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chimney-brick.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-blue-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-blue-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/house-stone-red-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/house-stone-red-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-green-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-green-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/chair-white.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/chair-white.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-white-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-white-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/woodfence-snow.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/woodfence-snow.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/shop-stand-big-blue.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/shop-stand-big-blue.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/picnic-table-stone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/picnic-table-stone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/bench-stone.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/bench-stone.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/building-wood.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/building-wood.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/tv.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/tv.png"
},
{
"repo": "Basic-Ressources",
"source": "Content/Images/Textures2D/Objects3D/sink.png",
"target": "Engine/Content/BR/Content/Images/Textures2D/Objects3D/sink.png"
},
{