-
Notifications
You must be signed in to change notification settings - Fork 24
/
Sokodigger2.txt
1287 lines (1180 loc) · 17.8 KB
/
Sokodigger2.txt
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
First steps - Beginner
Collection: First steps - Beginner
Author: Jordi Domènech
Email: [email protected]
Website:
http://www.abelmartin.com/rj/sokoban.html
http://sokoban-jd.blogspot.com/
Copyright: (c) Jordi Domènech, and the authors of each level
Date: March 2017
Author's note:
"First steps - Beginner" is a selection of small puzzles of Magic
Sokoban and other collections for those who start to play Sokoban.
Despite their simple appearance, they are not easy: you almost never
find the solution on the first try, and you always have to think to
solve them.
A tip to learn Sokoban: the most important thing is not to find the
solution, but "to understand it". When you solve a puzzle, do not leave
it: try to solve it another two more times.
Enjoy!
----------------------------------------------------------------------
These levels are copyright (c) by Jordi Domènech and the authors of each
level and may be freely distributed for non-commercial use provided they
remain unchanged, credited with the author's name, and provided the
author is notified.
License: Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported
http://creativecommons.org/licenses/by-nc-nd/3.0/
-----------------------------------------------------------------------
####
##@ #
## * #
# $ #
# . #
######
Author: Jordi Domenech
Title: Level 1 Start
Set: Magic Sokoban 4 #1
######
# #
# #$ #
# .$.#
# @ #
######
Author: Jordi Domenech
Title: Level 2 Duh!
Set: Magic Sokoban 7 #1
Comment: for David W. Skinner
######
# #
#. $ #
#.#$##
# #
# @ #
######
Author: Jordi Domenech
Title: Level 3
Set: Magic Sokoban 6 #1
######
# #
##... #
# $$$ #
#@ ###
#####
Author: David W. Skinner + Jordi Domenech
Title: Level 4
Set: Microban I variations #5
Comment: based on Microban #25
#####
## . #
# * #
# $* #
# * #
###@ #
####
Author: Alberto Garcia + Jordi Domenech
Title: Level 5
Set: Alberto Garcia remixed #2
#######
# . #
# #. #
##$## ##
# $ #
# @ #
#######
Author: Jordi Domenech
Title: Level 6
Set: Magic Sokoban 2 #1
####
# #
# $#####
# #
#.$.$. #
# # @ #
########
Author: Jordi Domenech
Title: Level 7
Set: Magic Sokoban 3 #2
########
# #
# #... #
# # ##
##$$$ #
# @ #
######
Author: Ian Parberry + Jordi Domenech
Title: Level 8
Set: Magic Sokoban 6 #5
Comment: based on Set 2 #52
#####
# #
# # #
##*..#
# $ ##
# $ #
# @ #
######
Author: David W. Skinner + Jordi Domenech
Title: Level 9
Set: Microban II variations #2
Comment: based on Microban II #17
#####
# . ##
# . #
# . #
## # ##
# $$$#
# @ #
######
Author: Jordi Domenech
Title: Level 10
Set: Magic Sokoban 7 #2
######
#. #
#. #
## . #
# ###
# $$ #
# $ #
# @ #
######
Author: Jordi Domenech
Title: Level 11
Set: Magic Sokoban #5
#####
##.. #
# $. #
# $. #
# $$ #
# @###
####
Author: Alberto Garcia + Jordi Domenech
Title: Level 12
Set: Magic Sokoban 4 #2
Comment: based on Puzzle #49
#####
# .##
###.$. #
# $$# #
# @ #
########
Author: Jordi Domenech
Title: Level 13
Set: Magic Sokoban #15
#####
# ##
#$$@ #
## ## ##
# #. #
# #
####. ##
####
Author: Jordi Domenech
Title: Level 14
Set: Magic Sokoban 4 #3
#####
# #
####$ #
# $ ##
# # # #
# @ . .#
########
Author: Shaggath + Jordi Domenech
Title: Level 15 Big German boot
Set: Magic Sokoban #21
Comment: based on V2010 #2
######
# #
# #$$##
# #
##$### #
# # . #
# . #
### + #
######
Author: Jordi Domenech
Title: Level 16
Set: Magic Sokoban #8
########
# #
#$## # #
#. # $ #
##..# ###
# $ #
# @ # #
#########
Author: Jordi Domenech
Title: Level 17
Set: Magic Sokoban 2 #24
##########
# # ...#
# $$$#@ #
# ## ##
### #
#### #
####
Author: Jordi Domenech
Title: Level 18
Set: Magic Sokoban 5 #10
####
###### #
# ##@ #
# #$.#
## $.#
## #$.#
#### #
####
Author: David W. Skinner + Jordi Domenech
Title: Level 19
Set: Microban III variations #27
Comment: based on Microban III #64 LOMA 1e
#####
###### . #
# ##$. #
#@$$$ . #
## # . #
# ######
####
Author: Jordi Domenech
Title: Level 20
Set: Magic Sokoban #1
####
##### #
# # #
# $ @ #
## ###.##
#$$ #. #
# . #
##### #
####
Author: Monry + Jordi Domenech
Title: Level 21 Tribute to Monry
Set: Magic Sokoban 3 #4
Comment: based on FirstStep 104
#########
# # #
# . #
## #*####
# * $ #
# * @ #
#########
Author: Jordi Domenech
Title: Level 22
Set: Miniatures - Part One #5
#########
# @ #
# $ $ $ #
##.#.#.##
# $ $ $ #
# . . . #
#########
Author: Jordi Domenech
Title: Level 23
Set: Magic Sokoban 2 #11
###########
# * #
# . . . #
## ##### ##
# $ $ $ #
# @ #
#########
Author: Jordi Domenech
Title: Level 24 Go up!
Set: Magic Sokoban 7 #3
#####
# ####
#.$ # #
#.$ $.#
#.$# $.#
# # @ #
########
Author: Sven Egevad + Jordi Domenech
Title: Level 25 Just push
Set: Magic Sokoban 3 #9
Comment: based on SE 797
Website: www.egevad.nu/sven/
####
# #
##. ###
# .$$ #
# .@# #
# .$$ #
## #
######
Author: Jordi Domenech
Title: Level 26
Set: Magic Sokoban 4 #17
#####
# @ ###
##$$$$ #
# # # #
# ....#
# # #
########
Author: Jordi Domenech
Title: Level 27
Set: Magic Sokoban 6 #14
#######
#. . #
#. * #
## # ##
# $$$ #
# @ #
#######
Author: Jordi Domenech
Title: Level 28 Magic box
Set: Miniatures - Part One #6
####
# ###
#$. #
# .# #
##$. #
# $ ###
# @ #
#####
Author: David W. Skinner + Jordi Domenech
Title: Level 29
Set: Microban II variations #3
Comment: based on Microban II #20
#######
# #
# .$$ #
##. ###
# .$$ #
# . # #
# @ #
#######
Author: David W. Skinner + Jordi Domenech
Title: Level 30
Set: Microban III variations #1
Comment: based on Microban III #3
######
# #
#$$$ #
#....#
# $$.#
# @ #
######
Author: Jordi Domenech
Title: Level 31
Set: Magic Sokoban #2
#####
### .#
# # #
#@$$$.#
# # #
# ## #
# .#
#######
Author: Jordi Domenech
Title: Level 32
Set: Magic Sokoban #16
####
### #
#. #
# * #
### ###
# @ #
# $ #
# ####
####
Author: unknown + Jordi Domenech
Title: Level 33 Breaking
Set: Magic Sokoban 4 #6
Comment: based on Souko Easy #5
#######
# #
# *** #
# *+* ##
# *** #
# $ #
#### #
#####
Author: Jordi Domenech
Title: Level 34
Set: Miniatures - Part One #29
#####
# ####
# #
# $ $$@#
##$## #
# #####
##.. #
# .. #
# #
######
Author: David W. Skinner + Jordi Domenech
Title: Level 35
Set: Microban I variations #13
Comment: based on Microban #70
#########
# #
# ##### #
##$#...# #
# $ $$ #
# #.@ #
##########
Author: Jordi Domenech
Title: Level 36
Set: Magic Sokoban 2 #14
##########
# #
# ###### #
# # # ##
# # # #
# .****$ #
#### @ # #
########
Author: Jordi Domenech
Title: Level 37
Set: Magic Sokoban 3 #15
######
# #
# .$.#
# $*$###
##.$. #
# @ #
#######
Author: Jordi Domenech
Title: Level 38
Set: Magic Sokoban 3 #14
#########
# ... #
# # # #
# $$@$ #
# ### #
#### ####
Author: Roger Delaporte + Jordi Domenech
Title: Level 39 Two halves
Set: Magic Sokoban 3 #21
Comment: based on rd031
Website: roger.delaporte.free.fr/
#######
# # #
# $ * #
##* . #
# * ##
# @ #
#######
Author: Thomas Reinke + Jordi Domenech
Title: Level 40
Set: Magic Sokoban 3 #22
Comment: based on Scoria #10
#######
# # #
# #
# #
#### ##
# @ #
# $**.#
# # #
#######
Author: Marcis Berzins + Jordi Domenech
Title: Level 41 Fix one
Set: Magic Sokoban 5 #11
Comment: based on C-Soko #20
Website: mb13.eu.pn/csoko/
#######
# #
# $ $ #
# ### #
# ..#$##
##.. $ #
# # #
# @ #
#######
Author: Jordi Domenech
Title: Level 42
Set: Magic Sokoban 4 #14
####
##### ###
# $ $ $$ #
# # #..# #
# @ .. #
##########
Author: Kevin B. Reilly + Jordi Domenech
Title: Level 43
Set: Magic Sokoban 4 #15
Comment: kbr1633 arranged
#######
#... #
# $@$ ##
## ## #
# $ #
# # #
#######
Author: Marcis Berzins
Title: Level 44
Set: Magic Sokoban 5 #12
Comment: C-Soko #24 Three Boxes 8
Website: mb13.eu.pn/csoko/
########
# # #
#. .. #
#$$### ##
# $ #
# # @ #
#########
Author: Jordi Domenech
Title: Level 45
Set: Miniatures - Part One #8
#######
# #
# ### #
#. $ #
##.#$###
# . $ #
# @# #
### ## #
# #
######
Author: Jordi Domenech
Title: Level 46 Move it
Set: Magic Sokoban 7 #6
####
# ##
## $ #
# .*.##
# #$ #
# @ #
#######
Author: Jordi Domenech
Title: Level 47
Set: Magic Sokoban #11
#####
# #
### #$##
# $ $ #
#... @ #
########
Author: Jordi Domenech
Title: Level 48 Zapatito
Set: Magic Sokoban #47
########
# #
# $$ #
##@## #
#$ #$##
#.... #
# #
#######
Author: Jordi Domenech
Title: Level 49 Pufi line
Set: Magic Sokoban #17
######
##### . #
# $ **. #
# $ #
# @#######
####
Author: Marcus Hof + Jordi Domenech
Title: Level 50
Set: Magic Sokoban 3 #26
Comment: based on Revenge Collection 12 #33
######
#. .#
# $$ #
#.$@##
# $$ #
#. .#
######
Author: Jordi Domenech
Title: Level 51
Set: Magic Sokoban #25
#######
# ##
# *$*$ #
# # # #
# . .@ #
########
Author: Jordi Domenech
Title: Level 52
Set: Magic Sokoban 2 #17
########
# . . #
# .#.# #
# $$$$ #
## ##
###@ #
####
Author: Howard Abed + Jordi Domenech
Title: Level 53
Set: Magic Sokoban 2 #29
Comment: Third Set #26 arranged
#######
# #
#$### #
# .. #
# #.. #
##$## ##
# $ $ #
# @ #
#######
Author: Jordi Domenech
Title: Level 54 Tiny square
Set: Magic Sokoban 2 #33
####
###### #
# #
# #### #
##$$ # ##
# $... * #
# @ ## #
##########
Author: Jordi Domenech
Title: Level 55
Set: Magic Sokoban 3 #19
#######
## # ###
# $$@$ #
# # ... #
# # # #
##########
Author: Marcis Berzins
Title: Level 56
Set: Magic Sokoban 5 #13
Comment: C-Soko #30 Three Boxes 14 arranged
Website: mb13.eu.pn/csoko/
#####
###### #
# # . #
# $ # $.##
## $$.#
# ##@.#
# #####
####
Author: Marcis Berzins
Title: Level 57
Set: Magic Sokoban 5 #16
Comment: C-Soko #38 Four Boxes 6 arranged
Website: mb13.eu.pn/csoko/
########
## # #
# . #
# .### ##
# .. # #
##$##$# #
# $ #
# #$# #
#####@ #
#####
Author: Jordi Domenech
Title: Level 58
Set: Magic Sokoban 6 #16
#######
# #
# $$#
# ## ##
# #$ #
##.# #
# .##$##
# . #
# . @ #
########
Author: Jordi Domenech
Title: Level 59
Set: Miniatures - Part One #13
#####
### ##
# $ #
# ##$#.#
# # @ .#
# #$##.#
# $ #.##
## #
#### #
#####
Author: Alberto Garcia + Jordi Domenech
Title: Level 60
Set: Alberto Garcia remixed #10
#######
# $. #
# $. #
### ###
# $. #
#@$. #
#######
Author: David W. Skinner + Jordi Domenech
Title: Level 61
Set: Microban II variations #16
Comment: based on Microban II #51
####
# #
# .###
#$. #
#### .$ #
# $$.###
# @ #
#######
Author: David W. Skinner + Jordi Domenech
Title: Level 62 Line up
Set: Microban II variations #18
Comment: based on Microban II #62
######
# ##
# $ #
##$$$ #
# # #
# ## ##
# $...#
# . .#
# @####
####
Author: David W. Skinner + Jordi Domenech
Title: Level 63
Set: Microban I variations #16
Comment: based on Microban #83
#########
### @ # #
# * * * . #
# $ # #
####*## ###
# #
# # #
#########
Author: David W. Skinner + Jordi Domenech
Title: Level 64
Set: Microban I variations #31
Comment: based on Microban #129
####
######### #
# ## $ #
# $ ## #
### #...# ##
# #.$.#$##
# #.$ # #
# $ #
# @#######
####
Author: David W. Skinner + Jordi Domenech
Title: Level 65
Set: Microban I variations #32
Comment: based on Microban #134
####
# #####
# #
# .#.# #
##$$$$ #
# . .###
# @ #
######
Author: David W. Skinner + Jordi Domenech
Title: Level 66
Set: Microban III variations #3
Comment: based on Microban III #15
####
# ##
##$ #
# $$ ##
# #. #
# @.. #
#######
Author: Jordi Domenech
Title: Level 67 Take it down
Set: Magic Sokoban 2 #19
####
####@ #
# $$$##
# ## #
# ## # #
# ... #
# ####
#####
Author: Evgeny Grigoriev + Jordi Domenech
Title: Level 68
Set: Magic Sokoban 2 #26
Comment: based on grigr2001 #55
Website: grigr.narod.ru/sokoban.htm
#####
# #
## . #
# * #
# # ##
# $ #
## * #
# * #
# @ #
#####
Author: David W. Skinner + Jordi Domenech
Title: Level 69
Set: Microban II variations #13
Comment: based on Microban II #40
#######
# #
# # # #
# $.# #
##$ . #
#@* ##
## #
####
Author: Serg Belyaev + Jordi Domenech
Title: Level 70
Set: Magic Sokoban 6 #30
Comment: svb171 arranged
Website: svb-sokoban.narod.ru/
#####
### #
# $ #
##$..$##
# $.. #
# @ ###
#####
Author: Jordi Domenech
Title: Level 71 Pufi square
Set: Magic Sokoban #26
#####
# #
# $ #
#@$$##
##$..#
# ..#
# #
#####
Author: Frantisek Pokorny + Jordi Domenech
Title: Level 72 Pufi square 2
Set: Magic Sokoban #33
Comment: based on LOMA #10-07
#######
# . #
###$# #
# . . #
###$#$ ##
# . . .#
# $#$#$ #
# @ # #
#########
Author: Jordi Domenech
Title: Level 73 Strange tree
Set: Magic Sokoban #22
######
# #
# ##$####
# # $ #
# # @ $ #
## #$## ##
# .. #
# ..# #
#########
Author: Jordi Domenech
Title: Level 74
Set: Magic Sokoban #27
#####
# #####
# # .. #
# # .. #
##$#$## ##
# $ $ #
# @ # #
#########
Author: Jordi Domenech
Title: Level 75
Set: Magic Sokoban #29
########
# # #
#.. . #
#.. ## #
### ##$##
# $$$ $ #
# @ #
#########
Author: Jordi Domenech
Title: Level 76
Set: Magic Sokoban 2 #37
#########
# ## #
## $$$ #
#. .#$@$ #
#...# #
# ######
# #
#####
Author: Jordi Domenech
Title: Level 77
Set: Magic Sokoban #37
#######
# #
# $$#$#
## # # ###
# ..... #
# #$$ #
#####@ ###
####
Author: Jordi Domenech
Title: Level 78
Set: Magic Sokoban 2 #38
#####
# #
#*# #
# #
###*#.####
# #
# #*$# #
##### @ #
######
Author: Sven Egevad + Jordi Domenech
Title: Level 79