forked from jaggedsoft/FullScreenMario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaps.js
3337 lines (3330 loc) · 221 KB
/
maps.js
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
FullScreenMario.FullScreenMario.settings.maps = {
"mapDefault": "1-1",
"locationDefault": "0",
"groupTypes": ["Character", "Solid", "Scenery", "Text"],
"requireEntrance": true,
"screenAttributes": [
"gravity",
"setting",
"time",
"underwater",
"floor",
"jumpmod",
"maxyvel",
"maxyvelinv",
"notime",
"nokeys",
"canscroll"
],
"screenVariables": {
"bottomDeathDifference": function (GameStarter) {
return GameStarter.unitsize * 12;
},
"bottomPlatformMax": function (GameStarter) {
var area = GameStarter.MapsHandler.getArea(),
diff = GameStarter.MapScreener.bottomDeathDifference;
if (!area) {
return -1;
}
return (area.floor + diff) * GameStarter.unitsize;
},
"gravity": function (GameStarter) {
var area = GameStarter.MapsHandler.getArea();
if (area && area.underwater) {
return GameStarter.gravity / 2.8;
}
return GameStarter.gravity;
}
},
"onSpawn": FullScreenMario.FullScreenMario.prototype.addPreThing,
"macros": {
"Example": FullScreenMario.FullScreenMario.prototype.macroExample,
"Fill": FullScreenMario.FullScreenMario.prototype.macroFillPreThings,
"Pattern": FullScreenMario.FullScreenMario.prototype.macroFillPrePattern,
"Floor": FullScreenMario.FullScreenMario.prototype.macroFloor,
"Pipe": FullScreenMario.FullScreenMario.prototype.macroPipe,
"PipeCorner": FullScreenMario.FullScreenMario.prototype.macroPipeCorner,
"Tree": FullScreenMario.FullScreenMario.prototype.macroTree,
"Shroom": FullScreenMario.FullScreenMario.prototype.macroShroom,
"Water": FullScreenMario.FullScreenMario.prototype.macroWater,
"CastleSmall": FullScreenMario.FullScreenMario.prototype.macroCastleSmall,
"CastleLarge": FullScreenMario.FullScreenMario.prototype.macroCastleLarge,
"Ceiling": FullScreenMario.FullScreenMario.prototype.macroCeiling,
"Bridge": FullScreenMario.FullScreenMario.prototype.macroBridge,
"Scale": FullScreenMario.FullScreenMario.prototype.macroScale,
"PlatformGenerator": FullScreenMario.FullScreenMario.prototype.macroPlatformGenerator,
"WarpWorld": FullScreenMario.FullScreenMario.prototype.macroWarpWorld,
"CheepsStart": FullScreenMario.FullScreenMario.prototype.macroCheepsStart,
"CheepsStop": FullScreenMario.FullScreenMario.prototype.macroCheepsStop,
"BulletBillsStart": FullScreenMario.FullScreenMario.prototype.macroBulletBillsStart,
"BulletBillsStop": FullScreenMario.FullScreenMario.prototype.macroBulletBillsStop,
"LakituStop": FullScreenMario.FullScreenMario.prototype.macroLakituStop,
"StartInsideCastle": FullScreenMario.FullScreenMario.prototype.macroStartInsideCastle,
"EndOutsideCastle": FullScreenMario.FullScreenMario.prototype.macroEndOutsideCastle,
"EndInsideCastle": FullScreenMario.FullScreenMario.prototype.macroEndInsideCastle,
"Section": FullScreenMario.FullScreenMario.prototype.macroSection,
"SectionPass": FullScreenMario.FullScreenMario.prototype.macroSectionPass,
"SectionFail": FullScreenMario.FullScreenMario.prototype.macroSectionFail,
"SectionDecider": FullScreenMario.FullScreenMario.prototype.macroSectionDecider
},
"entrances": {
"Normal": FullScreenMario.FullScreenMario.prototype.mapEntranceNormal,
"Plain": FullScreenMario.FullScreenMario.prototype.mapEntrancePlain,
"Castle": FullScreenMario.FullScreenMario.prototype.mapEntranceCastle,
"Walking": FullScreenMario.FullScreenMario.prototype.mapEntranceWalking,
"Vine": FullScreenMario.FullScreenMario.prototype.mapEntranceVine,
"PipeVertical": FullScreenMario.FullScreenMario.prototype.mapEntrancePipeVertical,
"PipeHorizontal": FullScreenMario.FullScreenMario.prototype.mapEntrancePipeHorizontal,
},
"patterns": (function (patterns) {
var pattern,
i;
for (i in patterns) {
if (patterns.hasOwnProperty(i)) {
pattern = patterns[i];
if (!pattern.length) {
continue;
}
// Pattern's last array should previously be ["blank", width]
pattern.width = pattern[pattern.length - 1][1];
pattern.pop();
}
}
return patterns;
})({
"BackRegular": [
["HillLarge", 0, 0],
//["Cloud1", 68, 68],
["Bush3", 92, 0],
["HillSmall", 128, 0],
//["Cloud1", 156, 76],
["Bush1", 188, 0],
//["Cloud3", 220, 68],
//["Cloud2", 292, 76],
["Bush2", 332, 0],
["Blank", 384]
],
"BackCloud": [
["Cloud2", 28, 64],
["Cloud1", 76, 32],
["Cloud2", 148, 72],
["Cloud1", 228, 0],
["Cloud1", 284, 32],
["Cloud1", 308, 40],
["Cloud1", 372, 0],
["Blank", 384]
],
"BackFence": [
["PlantSmall", 88, 0],
["PlantLarge", 104, 0],
["Fence", 112, 0, 32],
["Cloud1", 148, 68],
["PlantLarge", 168, 0],
["PlantSmall", 184, 0],
["PlantSmall", 192, 0],
["Cloud1", 220, 76],
["Cloud2", 244, 68],
["Fence", 304, 0, 16],
["PlantSmall", 320, 0],
["Fence", 328, 0],
["PlantLarge", 344, 0],
["Cloud1", 364, 76],
["Cloud2", 388, 68],
["Blank", 384]
],
"BackFenceMin": [
["PlantLarge", 104, 0],
["Fence", 112, 0, 32],
["Cloud1", 148, 68],
["PlantLarge", 168, 0],
["PlantSmall", 184, 0],
["PlantSmall", 192, 0],
["Cloud1", 220, 76],
["Cloud2", 244, 68],
["Fence", 304, 0, 16],
["PlantSmall", 320, 0],
["Fence", 328, 0],
["Cloud1", 364, 76],
["Cloud2", 388, 68],
["Blank", 384]
],
"BackFenceMin2": [
["Cloud2", 4, 68],
["PlantSmall", 88, 0],
["PlantLarge", 104, 0],
["Fence", 112, 0],
["Fence", 128, 0, 16],
["Cloud1", 148, 68],
// ["PlantLarge", 168, 0],
["PlantSmall", 184, 0],
["PlantSmall", 192, 0],
["Cloud1", 220, 76],
["Cloud2", 244, 68],
["Fence", 304, 0, 16],
["PlantSmall", 320, 0],
["Fence", 328, 0],
["PlantLarge", 344, 0],
["Cloud1", 364, 76],
["Cloud2", 388, 68],
["Blank", 384]
],
"BackFenceMin3": [
["Cloud2", 4, 68],
["PlantSmall", 88, 0],
["PlantLarge", 104, 0],
["Fence", 112, 0, 4],
["Cloud1", 148, 68],
["PlantSmall", 184, 0],
["PlantSmall", 192, 0],
["Cloud1", 220, 76],
["Cloud2", 244, 68],
["Cloud1", 364, 76],
["Cloud2", 388, 68],
["Blank", 384]
]
}),
"library": (function (maps) {
var library = {},
i;
for (i = 0; i < maps.length; i += 1) {
library[maps[i].name] = maps[i];
}
return library;
})([
{
"name": "1-1",
"locations": [
{ "entry": "Plain" },
],
"areas": [
{
"setting": "Overworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Pattern", "pattern": "BackRegular", "repeat": 5 },
{ "macro": "Floor", "width": 552 },
{ "thing": "Block", "x": 128, "y": 32 },
{ "thing": "Brick", "x": 160, "y": 32 },
{ "thing": "Block", "x": 168, "y": 32, "contents": "Mushroom" },
{ "thing": "Goomba", "x": 176, "y": 8 },
{ "thing": "Brick", "x": 176, "y": 32 },
{ "thing": "Block", "x": 176, "y": 64 },
{ "thing": "Block", "x": 184, "y": 32 },
{ "thing": "Brick", "x": 192, "y": 32 },
{ "macro": "Pipe", "x": 224, "height": 16 },
{ "macro": "Pipe", "x": 304, "height": 24 },
{ "thing": "Goomba", "x": 340, "y": 8 },
{ "macro": "Pipe", "x": 368, "height": 32 },
{ "thing": "Goomba", "x": 412, "y": 8 },
{ "thing": "Goomba", "x": 422, "y": 8 },
{ "macro": "Pipe", "x": 456, "height": 32, "transport": 2 },
{ "thing": "Block", "x": 512, "y": 40, "contents": "Mushroom1Up", "hidden": true },
{ "macro": "Floor", "x": 568, "width": 120 },
{ "thing": "Brick", "x": 616, "y": 32 },
{ "thing": "Block", "x": 624, "y": 32, "contents": "Mushroom" },
{ "thing": "Brick", "x": 632, "y": 32 },
{ "thing": "Brick", "x": 640, "y": 32 },
{ "thing": "Goomba", "x": 640, "y": 72 },
{ "thing": "Brick", "x": 648, "y": 64 },
{ "thing": "Brick", "x": 656, "y": 64 },
{ "thing": "Goomba", "x": 656, "y": 72 },
{ "macro": "Fill", "thing": "Brick", "x": 664, "y": 64, "xnum": 5, "xwidth": 8 },
{ "macro": "Floor", "x": 712, "width": 512 },
{ "macro": "Fill", "thing": "Brick", "x": 728, "y": 64, "xnum": 3, "xwidth": 8 },
{ "thing": "Brick", "x": 752, "y": 32, "contents": "Coin" },
{ "thing": "Block", "x": 752, "y": 64 },
{ "thing": "Goomba", "x": 776, "y": 8 },
{ "thing": "Goomba", "x": 788, "y": 8 },
{ "thing": "Brick", "x": 800, "y": 32 },
{ "thing": "Brick", "x": 808, "y": 32, "contents": "Star" },
{ "thing": "Block", "x": 848, "y": 32 },
{ "thing": "Koopa", "x": 856, "y": 12 },
{ "thing": "Block", "x": 872, "y": 32 },
{ "thing": "Block", "x": 872, "y": 64, "contents": "Mushroom" },
{ "thing": "Block", "x": 896, "y": 32 },
{ "thing": "Goomba", "x": 912, "y": 8 },
{ "thing": "Goomba", "x": 924, "y": 8 },
{ "thing": "Brick", "x": 944, "y": 32 },
{ "macro": "Fill", "thing": "Brick", "x": 968, "y": 64, "xnum": 3, "xwidth": 8 },
{ "macro": "Fill", "thing": "Goomba", "x": 992, "y": 8, "xnum": 4, "xwidth": 16 },
{ "thing": "Brick", "x": 1024, "y": 64 },
{ "thing": "Brick", "x": 1032, "y": 32 },
{ "thing": "Block", "x": 1032, "y": 64 },
{ "thing": "Brick", "x": 1040, "y": 32 },
{ "thing": "Block", "x": 1040, "y": 64 },
{ "thing": "Brick", "x": 1048, "y": 64 },
{ "thing": "Stone", "x": 1072, "y": 8 },
{ "thing": "Stone", "x": 1080, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1088, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1096, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1120, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1128, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1136, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1144, "y": 8 },
{ "thing": "Stone", "x": 1184, "y": 8 },
{ "thing": "Stone", "x": 1192, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1200, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1208, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1216, "y": 32, "height": 32 },
{ "macro": "Floor", "x": 1240, "width": 656 },
{ "thing": "Stone", "x": 1240, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1248, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1256, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1264, "y": 8 },
{ "macro": "Pipe", "x": 1304, "height": 16, "entrance": 1 },
{ "thing": "Brick", "x": 1344, "y": 32 },
{ "thing": "Brick", "x": 1352, "y": 32 },
{ "thing": "Block", "x": 1360, "y": 32 },
{ "thing": "Brick", "x": 1368, "y": 32 },
{ "thing": "Goomba", "x": 1392, "y": 8 },
{ "thing": "Goomba", "x": 1404, "y": 8 },
{ "macro": "Pipe", "x": 1432, "height": 16 },
{ "thing": "Stone", "x": 1448, "y": 8 },
{ "thing": "Stone", "x": 1456, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1464, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1472, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1480, "y": 40, "height": 40 },
{ "thing": "Stone", "x": 1488, "y": 48, "height": 48 },
{ "thing": "Stone", "x": 1496, "y": 56, "height": 56 },
{ "thing": "Stone", "x": 1504, "y": 64, "height": 64, "width": 16 },
{ "macro": "EndOutsideCastle", "x": 1584, "y": 0, "transport": { "map": "1-3" } }
]
},
]
}, {
"name": "1-3",
"locations": [
{ "entry": "Plain" }
],
"areas": [
{
"setting": "Overworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Pattern", "pattern": "BackCloud", "x": 0, "y": 4, "repeat": 5 },
{ "macro": "Floor", "x": 0, "y": 0, "width": 128 },
{ "macro": "CastleSmall" },
{ "macro": "Tree", "x": 144, "y": 8, "width": 32 },
{ "macro": "Tree", "x": 192, "y": 32, "width": 64, "solidTrunk": true },
{ "macro": "Tree", "x": 208, "y": 64, "width": 40 },
{ "macro": "Fill", "thing": "Coin", "x": 217, "y": 71, "xnum": 3, "xwidth": 8 },
{ "thing": "Koopa", "x": 240, "y": 76, "smart": true },
{ "macro": "Tree", "x": 256, "y": 8, "width": 24 },
{ "thing": "Coin", "x": 266, "y": 15 },
{ "macro": "Tree", "x": 280, "y": 40, "width": 40 },
{ "macro": "Fill", "thing": "Coin", "x": 297, "y": 87, "xnum": 2, "xwidth": 8 },
{ "macro": "Tree", "x": 320, "y": 72, "width": 56 },
{ "macro": "Fill", "thing": "Goomba", "x": 352, "y": 80, "xnum": 2, "xwidth": 16 },
{ "macro": "Tree", "x": 400, "width": 32 },
{ "macro": "Fill", "thing": "Coin", "x": 402, "y": 55, "xnum": 2, "xwidth": 8 },
{ "thing": "Platform", "x": 440, "y": 56, "width": 24, "floating": true, "begin": -4, "end": 56 },
{ "macro": "Tree", "x": 472, "width": 40 },
{ "thing": "Block", "x": 472, "y": 24, "contents": "Mushroom" },
{ "macro": "Tree", "x": 480, "y": 64, "width": 32 },
{ "macro": "Fill", "thing": "Coin", "x": 482, "y": 71, "xnum": 4, "xwidth": 8 },
{ "macro": "Tree", "x": 520, "width": 40 },
{ "macro": "Tree", "x": 560, "y": 32, "width": 24 },
{ "thing": "Koopa", "x": 592, "y": 76, "smart": true, "jumping": true, "floating": true, "begin": 16, "end": 88 },
{ "macro": "Tree", "x": 608, "y": 56, "width": 48 },
{ "thing": "Goomba", "x": 640, "y": 64 },
{ "macro": "Fill", "thing": "Coin", "x": 681, "y": 63, "xnum": 2, "xwidth": 8 },
{ "thing": "Platform", "x": 688, "y": 40, "width": 24, "sliding": true, "begin": 660, "end": 720 },
{ "macro": "Fill", "thing": "Coin", "x": 745, "y": 71, "xnum": 2, "xwidth": 8 },
{ "thing": "Platform", "x": 752, "y": 32, "width": 24, "sliding": true, "begin": 708, "end": 776 },
{ "macro": "Fill", "thing": "Coin", "x": 777, "y": 71, "xnum": 2, "xwidth": 8 },
{ "macro": "Tree", "x": 784, "y": 16, "width": 32 },
{ "macro": "Tree", "x": 832, "y": 48, "width": 64, "solidTrunk": true },
{ "thing": "Koopa", "x": 880, "y": 60, "smart": true },
{ "macro": "Tree", "x": 904, "width": 24 },
{ "macro": "Fill", "thing": "Coin", "x": 906, "y": 7, "xnum": 3, "xwidth": 8 },
{ "thing": "Koopa", "x": 912, "y": 68, "smart": true, "jumping": true, "floating": true, "begin": 4, "end": 76 },
{ "macro": "Tree", "x": 928, "y": 32, "width": 32 },
{ "macro": "Fill", "thing": "Coin", "x": 963, "y": 63, "xnum": 2, "xwidth": 8 },
{ "macro": "Tree", "x": 976, "y": 32, "width": 32, "solidTrunk": true },
{ "macro": "Floor", "x": 1032, "width": 368 },
{ "thing": "Platform", "x": 1048, "y": 56, "width": 24, "sliding": true, "begin": 1024, "end": 1068 },
{ "thing": "Koopa", "x": 1064, "y": 12, "smart": true },
{ "thing": "Stone", "x": 1104, "y": 32, "width": 16, "height": 32 },
{ "thing": "Stone", "x": 1120, "y": 48, "width": 16, "height": 48 },
{ "thing": "Stone", "x": 1136, "y": 64, "width": 16, "height": 64 },
{ "macro": "EndOutsideCastle", "x": 1224, "large": true, "walls": 12, "transport": { "map": "2-1" } }
]
}
]
}, {
"name": "2-1",
"locations": [
{ "entry": "Plain" },
{ "xloc": 1288 },
{ "entry": "PipeVertical" },
{ "area": 1, "entry": "Vine" },
{ "area": 2 }
],
"areas": [
{
"setting": "Overworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Floor", "width": 736 },
{ "macro": "CastleLarge", "x": -16 },
{ "macro": "Pattern", "pattern": "BackFence", "repeat": 2 },
{ "thing": "Brick", "x": 120, "y": 32 },
{ "thing": "Brick", "x": 128, "y": 32, "contents": "Mushroom" },
{ "thing": "Brick", "x": 136, "y": 32 },
{ "thing": "Stone", "x": 160, "y": 8 },
{ "thing": "Stone", "x": 168, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 176, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 184, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 192, "y": 40, "height": 40 },
{ "thing": "Goomba", "x": 192, "y": 48 },
{ "thing": "Block", "x": 224, "y": 32, "hidden": true },
{ "thing": "Block", "x": 224, "y": 64, "contents": "Mushroom1Up", "hidden": true },
{ "macro": "Fill", "thing": "Brick", "x": 232, "y": 64, "xnum": 3 },
{ "thing": "Koopa", "x": 256, "y": 12 },
{ "thing": "Koopa", "x": 264, "y": 12 },
{ "thing": "Stone", "x": 272, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 280, "y": 16, "height": 16 },
{ "thing": "Goomba", "x": 336, "y": 8 },
{ "thing": "Goomba", "x": 348, "y": 8 },
{ "macro": "Pipe", "x": 368, "height": 32, "Piranha": "true" },
{ "thing": "Block", "x": 424, "y": 32, "contents": "Mushroom" },
{ "macro": "Fill", "thing": "Block", "x": 424, "y": 64, "xnum": 5 },
{ "macro": "Fill", "thing": "Block", "x": 432, "y": 32, "xnum": 4 },
{ "thing": "Koopa", "x": 440, "y": 44 },
{ "thing": "Goomba", "x": 472, "y": 8 },
{ "thing": "Goomba", "x": 484, "y": 8 },
{ "thing": "Koopa", "x": 528, "y": 12 },
{ "macro": "Fill", "thing": "Goomba", "x": 544, "y": 8, "xnum": 3, "xwidth": 12 },
{ "thing": "Brick", "x": 544, "y": 32 },
{ "thing": "Brick", "x": 552, "y": 64, "contents": "Star" },
{ "thing": "Brick", "x": 560, "y": 64, "xnum": 3 },
{ "macro": "Pipe", "x": 592, "height": 32, "piranha": true },
{ "macro": "Fill", "thing": "Block", "x": 632, "y": 32, "xnum": 4 },
{ "macro": "Fill", "thing": "Brick", "x": 648, "y": 64, "xnum": 2 },
{ "thing": "Brick", "x": 664, "y": 64, "contents": ["Vine", { "transport": 3 }] },
{ "macro": "Fill", "thing": "Brick", "x": 672, "y": 64, "xnum": 2 },
{ "macro": "Fill", "thing": "Block", "x": 680, "y": 32, "xnum": 3 },
{ "macro": "Fill", "thing": "Goomba", "x": 704, "y": 8, "xnum": 3, "xwidth": 12 },
{ "macro": "Fill", "thing": "Brick", "x": 736, "y": 64, "xnum": 4 },
{ "macro": "Floor", "x": 768, "width": 80 },
{ "macro": "Pattern", "pattern": "BackFenceMin", "x": 768 },
{ "thing": "Goomba", "x": 820, "y": 40 },
{ "macro": "Pipe", "x": 824, "height": 32, "piranha": true, "transport": 4 },
{ "macro": "Floor", "x": 872, "width": 240 },
{ "thing": "Goomba", "x": 916, "y": 24 },
{ "macro": "Pipe", "x": 920, "height": 16, "piranha": true, "entrance": 2 },
{ "thing": "Goomba", "x": 962, "y": 8 },
{ "macro": "Pipe", "x": 976, "height": 32, "piranha": true },
{ "thing": "Brick", "x": 1000, "y": 64, "contents": "Mushroom" },
{ "macro": "Fill", "thing": "Brick", "x": 1008, "y": 64, "xnum": 3 },
{ "macro": "Pipe", "x": 1008, "height": 24 },
{ "macro": "Pipe", "x": 1040, "height": 40, "piranha": true },
{ "macro": "Floor", "x": 1136, "width": 80 },
{ "macro": "Pattern", "pattern": "BackFence", "x": 1152, "repeat": 2 },
{ "thing": "Koopa", "x": 1200, "y": 36, "jumping": true },
{ "macro": "Floor", "x": 1232, "width": 576 },
{ "thing": "Stone", "x": 1232, "y": 24, "height": 24 },
{ "thing": "Brick", "x": 1288, "y": 32, "contents": "Coin" },
{ "macro": "Fill", "thing": "Goomba", "x": 1296, "y": 8, "xnum": 2, "xwidth": 12 },
{ "macro": "Fill", "thing": "Brick", "x": 1312, "y": 64, "xnum": 5 },
{ "macro": "Fill", "thing": "Koopa", "x": 1352, "y": 12, "xnum": 2, "xwidth": 16 },
{ "thing": "Block", "x": 1360, "y": 32 },
{ "thing": "Block", "x": 1374, "y": 64, "contents": "Mushroom" },
{ "macro": "Pipe", "x": 1408, "height": 24, "piranha": true },
{ "thing": "Koopa", "x": 1480, "y": 12 },
{ "macro": "Fill", "thing": "Brick", "x": 1480, "y": 32, "xnum": 2 },
{ "thing": "Block", "x": 1488, "y": 64, "contents": "Coin", "hidden": true },
{ "thing": "Springboard", "x": 1504, "y": 14.5 },
{ "macro": "Fill", "thing": "Stone", "x": 1520, "y": 80, "xnum": 2, "height": 80 },
{ "macro": "EndOutsideCastle", "x": 1600, "transport": { "map": "2-2" } }
]
}, {
"setting": "Sky",
"exit": 1,
"creation": [
{ "thing": "Stone", "width": 32 },
{ "thing": "Stone", "x": 40, "width": 456 },
{ "macro": "Fill", "thing": "Coin", "x": 121, "y": 55, "xnum": 16, "xwidth": 8 },
{ "thing": "Platform", "x": 128, "y": 24, "width": 24, "transport": true },
{ "macro": "Fill", "thing": "Coin", "x": 257, "y": 71, "xnum": 3, "xwidth": 8 },
{ "macro": "Fill", "thing": "Coin", "x": 289, "y": 63, "xnum": 16, "xwidth": 8 },
{ "macro": "Fill", "thing": "Coin", "x": 425, "y": 71, "xnum": 3, "xwidth": 8 },
{ "macro": "Fill", "thing": "Coin", "x": 553, "y": 7, "xnum": 3, "xwidth": 8 }
]
}, {
"setting": "Underworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Ceiling", "x": 32, "width": 56 },
{ "macro": "Floor", "width": 136 },
{ "macro": "Fill", "thing": "Brick", "y": 8, "ynum": 11 },
{ "macro": "Fill", "thing": "Brick", "x": 32, "y": 8, "xnum": 7, "ynum": 3 },
{ "macro": "Fill", "thing": "Coin", "x": 33, "y": 31, "xnum": 7, "ynum": 2, "yheight": 16, "xwidth": 8 },
{ "macro": "Fill", "thing": "Coin", "x": 41, "y": 63, "xnum": 5, "xwidth": 8 },
{ "thing": "PipeHorizontal", "x": 104, "y": 16, "transport": 2 },
{ "thing": "PipeVertical", "x": 120, "y": 88, "height": 88 }
]
}
]
}, {
"name": "2-2",
"locations": [
{ "entry": "Walking" },
{ "area": 1 },
{ "area": 2, "entry": "PipeVertical" }
],
"areas": [
{
"setting": "Overworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Pattern", "pattern": "BackCloud", "y": 4, "repeat": 2 },
{ "macro": "Floor", "width": 192 },
{ "macro": "CastleSmall" },
{ "thing": "PipeHorizontal", "x": 80, "y": 16, "transport": 1 },
{ "macro": "Pipe", "x": 96, "height": 32 }
]
}, {
"setting": "Underwater",
"blockBoundaries": true,
"underwater": true,
"creation": [
{ "macro": "Floor", "width": 536 },
{ "thing": "Coral", "x": 96, "y": 24, "height": 24 },
{ "macro": "Fill", "thing": "Coin", "x": 121, "y": 7, "xnum": 2, "xwidth": 8 },
{ "thing": "Stone", "x": 152, "y": 32, "width": 24 },
{ "thing": "Blooper", "x": 184, "y": 16 },
{ "macro": "Fill", "thing": "Coin", "x": 224, "y": 64, "xnum": 3, "xwidth": 8 },
{ "thing": "Coral", "x": 272, "y": 40, "height": 40 },
{ "macro": "Fill", "thing": "Coin", "x": 296, "y": 7, "xnum": 3, "xwidth": 8 },
{ "thing": "Stone", "x": 344, "y": 32, "width": 16 },
{ "thing": "Coral", "x": 344, "y": 48, "height": 16 },
{ "thing": "Blooper", "x": 376, "y": 32 },
{ "thing": "Coral", "x": 408, "y": 32, "height": 32 },
{ "thing": "Blooper", "x": 448, "y": 24 },
{ "thing": "Stone", "x": 520, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 528, "y": 40, "height": 40 },
{ "macro": "Fill", "thing": "Coin", "x": 546, "y": 23, "xnum": 3, "xwidth": 8 },
{ "macro": "Floor", "x": 576, "width": 480 },
{ "thing": "Stone", "x": 576, "y": 40, "height": 40 },
{ "thing": "Stone", "x": 584, "y": 24, "height": 24 },
{ "thing": "CheepCheep", "x": 616, "y": 24 },
{ "thing": "Stone", "x": 632, "y": 24, "width": 16, "height": 24 },
{ "thing": "Stone", "x": 632, "y": 88, "width": 16, "height": 24 },
{ "thing": "CheepCheep", "x": 640, "y": 48 },
{ "thing": "CheepCheep", "x": 656, "y": 16 },
{ "thing": "Stone", "x": 664, "y": 64, "width": 24 },
{ "thing": "Blooper", "x": 672, "y": 40 },
{ "thing": "Coral", "x": 672, "y": 80, "height": 16 },
{ "thing": "Coral", "x": 720, "y": 24, "height": 24 },
{ "thing": "Blooper", "x": 760, "y": 80 },
{ "thing": "CheepCheep", "x": 760, "y": 56 },
{ "thing": "CheepCheep", "x": 784, "y": 80, "smart": true },
{ "macro": "Fill", "thing": "Coin", "x": 816, "y": 15, "xnum": 3, "xwidth": 8 },
{ "thing": "Stone", "x": 824, "y": 32, "width": 16 },
{ "thing": "Coral", "x": 824, "y": 64, "height": 32 },
{ "thing": "Blooper", "x": 848, "y": 16 },
{ "macro": "Fill", "thing": "Coin", "x": 912, "y": 55, "xnum": 3, "xwidth": 8 },
{ "thing": "Stone", "x": 928, "y": 40, "width": 16 },
{ "thing": "CheepCheep", "x": 944, "y": 72 },
{ "thing": "Coral", "x": 968, "y": 32, "height": 32 },
{ "thing": "CheepCheep", "x": 1032, "y": 24, "smart": true },
{ "thing": "Stone", "x": 1040, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1048, "y": 16, "height": 16 },
{ "thing": "CheepCheep", "x": 1056, "y": 16 },
{ "thing": "Stone", "x": 1056, "y": 88, "height": 24 },
{ "thing": "Stone", "x": 1064, "y": 72, "width": 64 },
{ "thing": "Coin", "x": 1073, "y": 15 },
{ "macro": "Fill", "thing": "Coin", "x": 1080, "y": 7, "xnum": 3, "xwidth": 8 },
{ "thing": "Coin", "x": 1105, "y": 15 },
{ "thing": "CheepCheep", "x": 1100, "y": 40 },
{ "macro": "Floor", "x": 1128, "width": 136 },
{ "thing": "Stone", "x": 1128, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1136, "y": 32, "height": 32 },
{ "thing": "CheepCheep", "x": 1160, "y": 32 },
{ "thing": "Coral", "x": 1184, "y": 16, "height": 16 },
{ "thing": "Coral", "x": 1200, "y": 24, "height": 24 },
{ "thing": "CheepCheep", "x": 1206, "y": 56, "smart": true },
{ "thing": "Stone", "x": 1256, "y": 64, "height": 64 },
{ "thing": "Stone", "x": 1264, "y": 64, "width": 16 },
{ "macro": "Fill", "thing": "Coin", "x": 1281, "y": 7, "xnum": 3, "ynum": 2, "xwidth": 8, "yheight": 24 },
{ "thing": "Stone", "x": 1304, "y": 64, "width": 16 },
{ "thing": "Stone", "x": 1320, "y": 64, "height": 64 },
{ "macro": "Floor", "x": 1320, "width": 320 },
{ "thing": "CheepCheep", "x": 1320, "y": 80 },
{ "thing": "CheepCheep", "x": 1344, "y": 16 },
{ "macro": "Fill", "thing": "Stone", "x": 1384, "y": 32, "ynum": 2, "yheight": 32, "width": 40 },
{ "thing": "Coral", "x": 1392, "y": 80, "height": 16 },
{ "thing": "CheepCheep", "x": 1408, "y": 40 },
{ "macro": "Fill", "thing": "Stone", "x": 1448, "y": 32, "ynum": 2, "yheight": 32, "width": 32 },
{ "thing": "CheepCheep", "x": 1472, "y": 72, "smart": true },
{ "thing": "CheepCheep", "x": 1496, "y": 48, "smart": true },
{ "thing": "Stone", "x": 1488, "y": 8, "width": 40 },
{ "thing": "Stone", "x": 1496, "y": 16, "width": 32 },
{ "thing": "Stone", "x": 1504, "y": 24, "width": 24 },
{ "thing": "Stone", "x": 1512, "y": 32, "width": 16 },
{ "thing": "Stone", "x": 1512, "y": 88, "width": 16, "height": 32 },
{ "thing": "PipeHorizontal", "x": 1520, "y": 48, "transport": 2, "small": true },
{ "thing": "Stone", "x": 1528, "y": 88, "width": 128, "height": 88 },
{ "macro": "Floor", "x": 1640, "width": 16 }
]
}, {
"setting": "Overworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Floor", "width": 464 },
{ "macro": "Pipe", "height": 16, "piranha": true, "entrance": 2 },
{ "macro": "Pattern", "pattern": "BackRegular", "x": 104, },
{ "thing": "Stone", "x": 16, "y": 8 },
{ "thing": "Stone", "x": 24, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 32, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 40, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 48, "y": 40, "height": 40 },
{ "thing": "Stone", "x": 56, "y": 48, "height": 48 },
{ "thing": "Stone", "x": 64, "y": 56, "height": 56 },
{ "thing": "Stone", "x": 72, "y": 64, "height": 64, "width": 16 },
{ "macro": "EndOutsideCastle", "x": 152, "transport": { "map": "2-3" } }
]
}
]
}, {
"name": "2-3",
"locations": [
{ "entry": "Plain" }
],
"areas": [
{
"setting": "Overworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Floor", "width": 56 },
{ "macro": "CastleSmall" },
{ "macro": "Pattern", "pattern": "BackCloud", "y": 4, "repeat": 4 },
{ "macro": "CheepsStart", "x": 64 },
{ "macro": "Tree", "x": 64, "width": 64 },
{ "thing": "Stone", "x": 80, "y": 8 },
{ "thing": "Stone", "x": 88, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 96, "y": 24, "height": 24, "width": 24 },
{ "macro": "Bridge", "x": 120, "y": 24, "width": 136, "end": true },
{ "macro": "Bridge", "x": 256, "y": 24, "width": 128, "end": true },
{ "macro": "Fill", "thing": "Coin", "x": 290, "y": 63, "xnum": 4, "xwidth": 8 },
{ "macro": "Bridge", "x": 384, "y": 24, "width": 128, "end": true },
{ "macro": "Fill", "thing": "Coin", "x": 441, "y": 63, "xnum": 3, "xwidth": 16 },
{ "macro": "Fill", "thing": "Coin", "x": 449, "y": 55, "xnum": 2, "xwidth": 16 },
{ "macro": "Bridge", "x": 544, "y": 24, "width": 96, "begin": true, "end": true },
{ "macro": "Bridge", "x": 672, "y": 24, "width": 96, "begin": true, "end": true },
{ "macro": "Fill", "thing": "Coin", "x": 777, "y": 63, "xnum": 3, "xwidth": 8 },
{ "macro": "Bridge", "x": 792, "y": 32, "width": 56, "begin": true, "end": true },
{ "thing": "Block", "x": 816, "y": 64, "contents": "Mushroom" },
{ "macro": "Fill", "thing": "Coin", "x": 865, "y": 63, "xnum": 3, "xwidth": 8 },
{ "macro": "Tree", "x": 896, "width": 64 },
{ "macro": "Bridge", "x": 976, "y": 24, "width": 24 },
{ "macro": "Bridge", "x": 1016, "y": 24, "width": 136, "begin": true, "end": true },
{ "macro": "Fill", "thing": "Coin", "x": 1064, "y": 63, "xnum": 6, "xwidth": 8 },
{ "macro": "Bridge", "x": 1168, "y": 8, "width": 80, "begin": true, "end": true },
{ "macro": "Fill", "thing": "Coin", "x": 1193, "y": 39, "xnum": 4, "xwidth": 8 },
{ "macro": "Bridge", "x": 1272, "y": 24, "width": 80, "begin": true, "end": true },
{ "macro": "Bridge", "x": 1368, "y": 24, "width": 16 },
{ "macro": "Fill", "thing": "Coin", "x": 1385, "y": 55, "xnum": 6, "xwidth": 8 },
{ "macro": "Bridge", "x": 1400, "y": 24, "width": 16 },
{ "macro": "Bridge", "x": 1432, "y": 24, "width": 16 },
{ "macro": "Bridge", "x": 1464, "y": 24, "width": 80, "begin": true },
{ "macro": "Tree", "x": 1536, "width": 104 },
{ "macro": "Pattern", "pattern": "BackCloud", "x": 1536, "y": 4, "skips": [5] },
{ "thing": "Stone", "x": 1544, "y": 24, "width": 16, "height": 24 },
{ "thing": "Stone", "x": 1560, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1568, "y": 8 },
{ "macro": "CheepsStop", "x": 1600 },
{ "macro": "Floor", "x": 1656, "width": 280 },
{ "thing": "Stone", "x": 1664, "y": 8 },
{ "thing": "Stone", "x": 1672, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1680, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1688, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1696, "y": 40, "height": 40 },
{ "thing": "Stone", "x": 1704, "y": 48, "height": 48 },
{ "thing": "Stone", "x": 1712, "y": 56, "height": 56 },
{ "thing": "Stone", "x": 1720, "y": 64, "width": 16, "height": 64 },
{ "macro": "EndOutsideCastle", "x": 1800, "large": true, "walls": 7, "transport": { "map": "2-4" } }
]
}
]
}, {
"name": "2-4",
"locations": [
{ "entry": "Castle" }
],
"areas": [
{
"setting": "Castle",
"blockBoundaries": true,
"creation": [
{ "macro": "StartInsideCastle", "width": 128 },
{ "thing": "Stone", "y": 88, "width": 128, "height": 24 },
{ "thing": "Podoboo", "x": 128, "y": -32 },
{ "macro": "Water", "x": 128, "width": 128 },
{ "thing": "Stone", "x": 144, "y": 32, "width": 16 },
{ "thing": "Stone", "x": 176, "y": 48 },
{ "thing": "CastleBlock", "x": 184, "y": 48 },
{ "thing": "Block", "x": 184, "y": 80, "contents": "Mushroom" },
{ "thing": "Stone", "x": 192, "y": 48 },
{ "thing": "Stone", "x": 216, "y": 32, "width": 16 },
{ "thing": "Podoboo", "x": 240, "y": -32 },
{ "macro": "Floor", "x": 256, "y": -8, "width": 416 },
{ "thing": "Stone", "x": 256, "y": 24, "width": 16, "height": 32 },
{ "thing": "Stone", "x": 272, "y": 88, "width": 392, "height": 24 },
{ "thing": "Stone", "x": 272, "y": 64, "width": 168 },
{ "thing": "Stone", "x": 272, "width": 72 },
{ "thing": "Stone", "x": 296, "y": 32, "width": 96 },
{ "thing": "CastleBlock", "x": 344 },
{ "thing": "Stone", "x": 352, "width": 88 },
{ "thing": "CastleBlock", "x": 392, "y": 32, "fireballs": 6 },
{ "thing": "Stone", "x": 400, "y": 32, "width": 88 },
{ "thing": "CastleBlock", "x": 440, "y": 64, "fireballs": 6 },
{ "thing": "CastleBlock", "x": 440 },
{ "thing": "Stone", "x": 448, "width": 88 },
{ "thing": "Stone", "x": 448, "y": 64, "width": 216 },
{ "thing": "CastleBlock", "x": 488, "y": 32, "fireballs": 6 },
{ "thing": "Stone", "x": 496, "y": 32, "width": 88 },
{ "thing": "CastleBlock", "x": 536 },
{ "thing": "Stone", "x": 544, "width": 96 },
{ "thing": "CastleBlock", "x": 584, "y": 32, "fireballs": 6 },
{ "thing": "Stone", "x": 640, "y": 24, "width": 32, "height": 32 },
{ "thing": "CastleBlock", "x": 656, "y": 56, "fireballs": 6 },
{ "macro": "PlatformGenerator", "x": 686, "width": 12, "direction": -1 },
{ "macro": "PlatformGenerator", "x": 710, "width": 12 },
{ "macro": "Floor", "x": 736, "y": 16 },
{ "thing": "CastleBlock", "x": 736, "y": 24, "fireballs": 6, "direction": 1 },
{ "macro": "Floor", "x": 744, "y": 24, "width": 48 },
{ "thing": "Stone", "x": 744, "y": 88, "width": 48, "height": 24 },
{ "macro": "Floor", "x": 792, "width": 80 },
{ "macro": "Fill", "thing": "Coin", "x": 817, "y": 7, "xnum": 3, "ynum": 2, "xwidth": 8, "yheight": 32 },
{ "thing": "CastleBlock", "x": 824, "y": 16 },
{ "thing": "Stone", "x": 864, "y": 24, "height": 24 },
{ "macro": "Water", "x": 872, "width": 16 },
{ "thing": "Stone", "x": 864, "y": 24, "height": 24 },
{ "macro": "Floor", "x": 888, "y": 24, "width": 16 },
{ "macro": "Water", "x": 904, "width": 32 },
{ "macro": "Floor", "x": 920, "width": 104 },
{ "thing": "Stone", "x": 920, "y": 24, "width": 40, "height": 24 },
{ "thing": "Stone", "x": 920, "y": 88, "width": 104, "height": 24 },
{ "macro": "Fill", "thing": "Stone", "x": 976, "y": 24, "xnum": 2, "xwidth": 32, "width": 16, "height": 24 },
{ "macro": "Fill", "thing": "Brick", "x": 1024, "y": 64, "xnum": 6 },
{ "macro": "EndInsideCastle", "x": 1024, "spawnType": "Shell", "transport": { "map": "3-1" }},
{ "thing": "Platform", "x": 1108, "y": 56, "width": 16, "sliding": true, "begin": 1080, "end": 1112, "nocollidechar": true }
]
}
]
}, {
"name": "3-1",
"locations": [
{ "entry": "Plain" },
{ "entry": "PipeVertical" },
{ "xloc": 1272 },
{ "area": 1 },
{ "area": 2, "entry": "Vine" }
],
"areas": [
{
"setting": "Overworld Night Alt",
"blockBoundaries": true,
"creation": [
{ "macro": "Floor", "width": 360 },
{ "macro": "CastleLarge", "x": -16 },
{ "macro": "Pattern", "pattern": "BackFence", "repeat": 5 },
{ "thing": "Block", "x": 128, "y": 32 },
{ "thing": "Block", "x": 152, "y": 40 },
{ "thing": "Block", "x": 176, "y": 40, "contents": "Mushroom" },
{ "thing": "Koopa", "x": 200, "y": 12, "jumping": true },
{ "macro": "Fill", "thing": "Brick", "x": 208, "y": 32, "xnum": 3 },
{ "thing": "Koopa", "x": 224, "y": 20, "jumping": true },
{ "macro": "Pipe", "x": 256, "height": 24, "piranha": true },
{ "thing": "Goomba", "x": 296, "y": 8 },
{ "macro": "Pipe", "x": 304, "height": 32, "piranha": true, "transport": 3 },
{ "macro": "Floor", "x": 384, "width": 232 },
{ "macro": "Fill", "thing": "Goomba", "x": 424, "y": 8, "xnum": 3, "xwidth": 12 },
{ "macro": "Pipe", "x": 456, "height": 24, "piranha": true },
{ "thing": "Brick", "x": 488, "y": 32 },
{ "thing": "Koopa", "x": 520, "y": 12 },
{ "macro": "Pipe", "x": 536, "height": 16, "piranha": true, "entrance": 1 },
{ "thing": "Stone", "x": 584, "y": 8 },
{ "thing": "Stone", "x": 592, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 600, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 608, "y": 32, "height": 32 },
{ "macro": "Water", "x": 616, "y": 10, "width": 64 },
{ "macro": "Bridge", "x": 616, "y": 32, "width": 64 },
{ "macro": "Fill", "thing": "Goomba", "x": 656, "y": 40, "xnum": 3, "xwidth": 12 },
{ "thing": "Block", "x": 656, "y": 64, "contents": "Mushroom1Up", "hidden": true },
{ "macro": "Floor", "x": 680 },
{ "thing": "Stone", "x": 680, "y": 32, "height": 32 },
{ "macro": "Water", "x": 688, "y": 10, "width": 16 },
{ "macro": "Floor", "x": 704, "width": 320 },
{ "thing": "Stone", "x": 704, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 712, "y": 16, "height": 16 },
{ "thing": "Brick", "x": 720, "y": 64, "contents": "Star" },
{ "macro": "Fill", "thing": "Brick", "x": 728, "y": 64, "xnum": 2 },
{ "macro": "Fill", "thing": "Goomba", "x": 752, "y": 8, "xnum": 2, "xwidth": 12 },
{ "thing": "Koopa", "x": 808, "y": 12 },
{ "macro": "Pipe", "x": 824, "height": 32, "piranha": true },
{ "macro": "Fill", "thing": "Brick", "x": 888, "y": 32, "xnum": 11 },
{ "macro": "Fill", "thing": "Brick", "x": 888, "y": 64, "xnum": 2 },
{ "thing": "HammerBro", "x": 904, "y": 44 },
{ "thing": "Block", "x": 904, "y": 64 },
{ "macro": "Fill", "thing": "Brick", "x": 912, "y": 64, "xnum": 3 },
{ "thing": "HammerBro", "x": 936, "y": 12 },
{ "thing": "Block", "x": 936, "y": 64, "contents": "Mushroom" },
{ "macro": "Fill", "thing": "Brick", "x": 944, "y": 64, "xnum": 3 },
// { "thing": "Springboard", "x": 1008, "y": 14.5 },
{ "macro": "Fill", "thing": "Brick", "x": 1032, "y": 40, "xnum": 3 },
{ "macro": "Fill", "thing": "Brick", "x": 1032, "y": 64, "xnum": 2 },
{ "thing": "Brick", "thing": "Brick", "x": 1048, "y": 64, "contents": ["Vine", { "entrance": 4 }] },
{ "macro": "Floor", "x": 1056, "width": 80 },
{ "thing": "Stone", "x": 1088, "y": 8 },
{ "thing": "Stone", "x": 1096, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1104, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1112, "y": 32, "height": 32 },
{ "thing": "Goomba", "x": 1112, "y": 40 },
{ "thing": "Stone", "x": 1120, "y": 40, "height": 40 },
{ "thing": "Goomba", "x": 1120, "y": 48 },
{ "thing": "Stone", "x": 1128, "y": 48, "height": 48 },
{ "macro": "Floor", "x": 1152, "width": 264 },
{ "thing": "Koopa", "x": 1192, "y": 12 },
{ "macro": "Fill", "thing": "Brick", "x": 1200, "y": 32, "xnum": 2, "ynum": 2, "xwidth": 16, "yheight": 32 },
{ "macro": "Fill", "thing": "Block", "x": 1208, "y": 32, "ynum": 2, "yheight": 32 },
{ "thing": "Koopa", "x": 1216, "y": 76 },
{ "macro": "Fill", "thing": "Goomba", "x": 1232, "y": 8, "xnum": 3, "xwidth": 12 },
{ "macro": "Fill", "thing": "Brick", "x": 1240, "y": 32, "xnum": 2, "ynum": 2, "xwidth": 16, "yheight": 32 },
{ "thing": "Block", "x": 1248, "y": 32, "contents": "Mushroom" },
{ "thing": "Block", "x": 1248, "y": 64 },
{ "thing": "Koopa", "x": 1320, "y": 12, "jumping": true },
{ "thing": "Brick", "x": 1328, "y": 32 },
{ "thing": "Brick", "x": 1336, "y": 32, "contents": "Coin" },
{ "thing": "Koopa", "x": 1344, "y": 18, "jumping": true },
{ "macro": "Fill", "thing": "Brick", "x": 1344, "y": 32, "xnum": 3 },
{ "thing": "Koopa", "x": 1360, "y": 44 },
{ "thing": "Koopa", "x": 1368, "y": 12, "jumping": true },
{ "thing": "Stone", "x": 1392, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1400, "y": 48, "height": 48 },
{ "macro": "Floor", "x": 1440, "width": 320 },
{ "thing": "Stone", "x": 1464, "y": 8 },
{ "thing": "Stone", "x": 1472, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1480, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1488, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1496, "y": 40, "height": 40 },
{ "thing": "Stone", "x": 1504, "y": 48, "height": 48 },
{ "thing": "Koopa", "x": 1504, "y": 60 },
{ "thing": "Stone", "x": 1512, "y": 56, "height": 56 },
{ "thing": "Stone", "x": 1520, "y": 64, "width": 16, "height": 64 },
{ "thing": "Koopa", "x": 1528, "y": 76 },
{ "macro": "EndOutsideCastle", "x": 1600, "transport": { "map": "3-2" } }
]
}, {
"setting": "Underworld",
"blockBoundaries": true,
"creation": [
{ "macro": "Floor", "width": 136 },
{ "macro": "Fill", "thing": "Brick", "y": 8, "ynum": 11 },
{ "macro": "Fill", "thing": "Brick", "x": 24, "y": 40, "xnum": 2, "ynum": 4, "xwidth": 72 },
{ "macro": "Fill", "thing": "Brick", "x": 32, "y": 32, "xnum": 2, "xwidth": 56 },
{ "macro": "Fill", "thing": "Brick", "x": 32, "y": 56, "xnum": 2, "ynum": 2, "xwidth": 56 },
{ "macro": "Fill", "thing": "Coin", "x": 33, "y": 39, "xnum": 2, "xwidth": 56 },
{ "macro": "Fill", "thing": "Brick", "x": 40, "y": 40, "xnum": 2, "xwidth": 40 },
{ "thing": "Brick", "x": 40, "y": 64, "contents": "Mushroom" },
{ "macro": "Fill", "thing": "Coin", "x": 41, "y": 47, "xnum": 2, "xwidth": 40 },
{ "macro": "Fill", "thing": "Brick", "x": 48, "y": 48, "xnum": 2, "xwidth": 24 },
{ "macro": "Fill", "thing": "Coin", "x": 49, "y": 55, "xnum": 2, "ynum": 2, "xwidth": 24, "yheight": 16 },
{ "macro": "Fill", "thing": "Brick", "x": 56, "y": 56, "xnum": 2, "ynum": 2 },
{ "macro": "Fill", "thing": "Coin", "x": 57, "y": 71, "xnum": 2, "ynum": 2, "xwidth": 8, "yheight": 8 },
{ "thing": "Brick", "x": 80, "y": 64 },
{ "thing": "PipeHorizontal", "x": 104, "y": 16, "entrance": 1 },
{ "thing": "PipeVertical", "x": 120, "y": 88, "height": 88 }
]
}, {
"setting": "Sky Night",
"blockBoundaries": false,
"exit": 2,
"creation": [
{ "thing": "Stone", "width": 32 },
{ "thing": "Stone", "x": 40, "width": 624 },
{ "thing": "Platform", "x": 128, "y": 24, "width": 24, "transport": true },
{ "macro": "Fill", "thing": "Coin", "x": 121, "y": 55, "xnum": 16, "xwidth": 8 },
{ "thing": "Stone", "x": 256, "y": 40 },
{ "macro": "Fill", "thing": "Coin", "x": 273, "y": 55, "xnum": 16, "xwidth": 8 },
{ "thing": "Stone", "x": 408, "y": 48, "height": 16 },
{ "macro": "Fill", "thing": "Coin", "x": 425, "y": 63, "xnum": 7, "xwidth": 8 },
{ "thing": "Stone", "x": 488, "y": 48, "height": 16 },
{ "thing": "Stone", "x": 536, "y": 56, "width": 16 },
{ "macro": "Fill", "thing": "Stone", "x": 568, "y": 56, "xnum": 5, "xwidth": 16 },
{ "macro": "Fill", "thing": "Coin", "x": 569, "y": 63, "xnum": 10, "xwidth": 8 },
{ "macro": "Fill", "thing": "Coin", "x": 681, "y": 15, "xnum": 3, "xwidth": 8 }
]
}
]
}, {
"name": "3-2",
"locations": [
{ "entry": "Plain" }
],
"areas": [
{
"setting": "Overworld Night Alt",
"blockBoundaries": true,
"creation": [
{ "macro": "Pattern", "pattern": "BackFence", "x": -384, "repeat": 6 },
{ "macro": "Floor", "width": 640 },
{ "macro": "CastleSmall" },
{ "thing": "Koopa", "x": 136, "y": 12 },
{ "macro": "Fill", "thing": "Goomba", "x": 192, "y": 8, "xnum": 3, "xwidth": 12 },
{ "macro": "Fill", "thing": "Koopa", "x": 264, "y": 12, "xnum": 3, "xwidth": 12 },
{ "macro": "Fill", "thing": "Koopa", "x": 344, "y": 12, "xnum": 2, "xwidth": 12 },
{ "thing": "Stone", "x": 392, "y": 8 },
{ "macro": "Fill", "thing": "Coin", "x": 441, "y": 31, "xnum": 3, "xwidth": 8 },
{ "thing": "Stone", "x": 480, "y": 24, "height": 24 },
{ "thing": "Block", "x": 480, "y": 56, "contents": "Mushroom" },
{ "thing": "Koopa", "x": 528, "y": 12 },
{ "macro": "Fill", "thing": "Goomba", "x": 568, "y": 8, "xnum": 3, "xwidth": 12 },
{ "thing": "Stone", "x": 600, "y": 16, "height": 16 },
{ "thing": "Brick", "x": 616, "y": 32, "contents": "Coin" },
{ "thing": "Brick", "x": 616, "y": 64, "contents": "Star" },
{ "thing": "Koopa", "x": 624, "y": 12 },
{ "thing": "Stone", "x": 632, "y": 16, "height": 16 },
{ "macro": "Floor", "x": 656, "width": 328 },
{ "thing": "Koopa", "x": 736, "y": 34, "jumping": true },
{ "thing": "Koopa", "x": 888, "y": 12 },
{ "macro": "Fill", "thing": "Goomba", "x": 952, "y": 8, "xnum": 3, "xwidth": 12 },
{ "macro": "Floor", "x": 1000, "width": 24 },
{ "thing": "Stone", "x": 1008, "y": 16, "height": 16 },
{ "thing": "Brick", "x": 1008, "y": 56 },
{ "macro": "Floor", "x": 1040, "width": 752 },
{ "thing": "Koopa", "x": 1072, "y": 12 },
{ "macro": "Fill", "thing": "Koopa", "x": 1120, "y": 12, "xnum": 3, "xwidth": 12 },
{ "macro": "Fill", "thing": "Koopa", "x": 1200, "y": 12, "xnum": 2, "xwidth": 12 },
{ "macro": "Fill", "thing": "Koopa", "x": 1296, "y": 12, "xnum": 3, "xwidth": 12 },
{ "macro": "Fill", "thing": "Coin", "x": 1345, "y": 55, "xnum": 4, "xwidth": 8 },
{ "macro": "Pipe", "x": 1352, "height": 24, "piranha": true },
{ "thing": "Koopa", "x": 1400, "y": 12 },
{ "macro": "Fill", "thing": "Goomba", "x": 1432, "y": 8, "xnum": 3, "xwidth": 12 },
{ "macro": "Fill", "thing": "Goomba", "x": 1504, "y": 8, "xnum": 3, "xwidth": 12 },
{ "thing": "Stone", "x": 1536, "y": 8 },
{ "thing": "Stone", "x": 1544, "y": 16, "height": 16 },
{ "thing": "Stone", "x": 1552, "y": 24, "height": 24 },
{ "thing": "Stone", "x": 1560, "y": 32, "height": 32 },
{ "thing": "Stone", "x": 1568, "y": 40, "height": 40 },
{ "thing": "Stone", "x": 1576, "y": 48, "height": 48 },
{ "thing": "Stone", "x": 1584, "y": 56, "height": 56 },
{ "thing": "Stone", "x": 1592, "y": 64, "width": 16, "height": 64 },
{ "macro": "EndOutsideCastle", "x": 1672, "transport": { "map": "3-3" } }
]
}
]
}, {
"name": "3-3",
"locations": [
{ "entry": "Plain" }
],
"areas": [
{
"setting": "Overworld Night",
"blockBoundaries": true,
"creation": [
{ "macro": "Pattern", "pattern": "BackCloud", "y": 4, "repeat": 7 },
{ "macro": "Floor", "width": 128 },
{ "macro": "CastleSmall" },
{ "macro": "Tree", "x": 144, "y": 24, "width": 40 },
{ "macro": "Tree", "x": 176, "y": 48, "width": 48 },
{ "thing": "Goomba", "x": 208, "y": 56 },
{ "thing": "Platform", "x": 240, "y": 72, "width": 24, "sliding": true, "begin": 228, "end": 260 },
{ "macro": "Tree", "x": 240, "width": 24 },
{ "macro": "Fill", "thing": "Coin", "x": 249, "y": 7, "xnum": 2, "xwidth": 8 },
{ "thing": "Platform", "x": 264, "y": 40, "width": 24, "sliding": true, "begin": 244, "end": 276 },
{ "macro": "Tree", "x": 288, "y": 8, "width": 56 },
{ "thing": "Coin", "x": 298, "y": 55 },
{ "macro": "Fill", "thing": "Coin", "x": 337, "y": 55, "xnum": 3, "xwidth": 8 },
{ "macro": "Tree", "x": 344, "y": 32, "width": 32 },
{ "macro": "Tree", "x": 368, "y": 16, "width": 80 },
{ "macro": "Tree", "x": 376, "y": 48, "width": 48 },
{ "thing": "Block", "x": 392, "y": 80, "contents": "Mushroom" },
{ "macro": "Fill", "thing": "Coin", "x": 417, "y": 31, "xnum": 3, "xwidth": 8 },
{ "thing": "Koopa", "x": 416, "y": 60, "smart": true },
{ "thing": "Koopa", "x": 432, "y": 28, "smart": true },
{ "macro": "Tree", "x": 440, "y": 80, "width": 32 },
{ "macro": "Fill", "thing": "Coin", "x": 449, "y": 87, "xnum": 2, "xwidth": 8 },
{ "thing": "Platform", "x": 482, "y": 56, "width": 24, "falling": true },
{ "macro": "Tree", "x": 520, "width": 128 },
{ "macro": "Tree", "x": 520, "y": 48, "width": 24 },
{ "macro": "Fill", "thing": "Coin", "x": 529, "y": 55, "xnum": 3, "xwidth": 32 },
{ "macro": "Tree", "x": 552, "y": 48, "width": 24 },
{ "thing": "Koopa", "x": 584, "y": 12, "smart": true },
{ "macro": "Tree", "x": 584, "y": 48, "width": 24 },
{ "macro": "Tree", "x": 616, "y": 72, "width": 24 },
{ "thing": "Coin", "x": 625, "y": 79 },
{ "macro": "Scale", "x": 660, "y": 86, "between": 56, "dropRight": 44 },
{ "macro": "Tree", "x": 672, "y": 16, "width": 32 },
{ "thing": "Platform", "x": 752, "y": 32, "width": 24, "falling": true },
{ "thing": "Platform", "x": 768, "y": 64, "width": 24, "falling": true },
{ "macro": "Tree", "x": 776, "y": 32, "width": 24 },
{ "thing": "Platform", "x": 824, "y": 16, "width": 24, "falling": true },
{ "macro": "Tree", "x": 832, "y": 64, "width": 32 },
{ "macro": "Fill", "thing": "Coin", "x": 841, "y": 71, "xnum": 2, "xwidth": 8 },
{ "macro": "Tree", "x": 856, "y": 16, "width": 40 },
{ "thing": "Coin", "x": 865, "y": 23 },
{ "macro": "Tree", "x": 864, "y": 48, "width": 24 },
{ "thing": "Coin", "x": 873, "y": 55 },
{ "thing": "Koopa", "x": 912, "y": 66, "smart": true, "jumping": true, "floating": true, "begin": 14, "end": 66 },
{ "macro": "Tree", "x": 928, "width": 24 },
{ "macro": "Tree", "x": 952, "y": 24, "width": 96, "solidTrunk": true },
{ "macro": "Fill", "thing": "Koopa", "x": 992, "y": 36, "xnum": 2, "xwidth": 14, "smart": true },
{ "thing": "Platform", "x": 1056, "y": 56, "width": 24 },
{ "macro": "Scale", "x": 1100, "y": 86, "between": 32, "dropRight": 48 },
{ "macro": "Floor", "x": 1152, "width": 256 },
{ "macro": "EndOutsideCastle", "x": 1208, "large": true, "walls": 15, "transport": { "map": "3-4" } }
]
}
]
}, {
"name": "3-4",
"locations": [
{ "entry": "Castle" }
],
"areas": [
{
"setting": "Castle",
"blockBoundaries": true,
"creation": [
{ "macro": "StartInsideCastle", "width": 128 },