Click here for free DL of the app version that can save data.
No:26746 111
Prev Next
Maze game (4 difficulties, 20 levels.) Levels 1 to..ALL
Developer User13175|Date and time 23/12/2 9:54:20
Build time 310.638 sec|Game capacity 6.435KB|Script


Sure! Here's a basic implementation of a maze game with 20 levels, using pictograms. It includes four difficulties: Easy, Medium, Hard, and Impossible. Note that this implementation only renders the game structure and doesn't include any logic for player movements or win/lose conditions. You can build upon this starting point to add those features.




Maze Game

// Level data (20 levels in total) const levels = [ // Levels 1-5 (Easy) [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬜⬜⬜⬜⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬜⬜⬜⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬜⬛⬜⬜⬛⬜⬛", "⬛⬛⬛⬛⬜⬛⬛⬛⬛", "⬛⬜⬜⬜⬜⬛⬜⬜⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬛⬛⬛⬛⬜⬛", "⬛⬛⬜⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬜⬛⬛⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬜⬜⬜⬛⬜⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛⬜⬜⬜⬜⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬜⬜⬜⬛⬛⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬜⬜⬜⬛⬛⬜⬛", "⬛⬛⬛⬛⬜⬛⬛⬛⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛⬛⬜⬛⬛⬜⬛", "⬛⬜⬜⬛⬛⬛⬛⬜⬛", "⬛⬛⬛⬛⬜⬜⬜⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬜⬜⬛⬛⬛", "⬛⬛⬜⬜⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬛⬜⬛⬛⬛⬛", "⬛⬛⬛⬛⬜⬛⬛⬛⬛", "⬛⬛⬛⬛⬜⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], // Levels 6-10 (Medium) [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬜⬜⬛⬛⬛⬇⬛", "⬛⬜⬜⬛⬛⬛⬛⬜⬛", "⬛⬛⬛⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬜⬜⬛⬦⬩⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬛⬛⬛⬛⬜⬛", "⬛⬛⬜⬛⬛⬛⬛⬛⬛", "⬛⬛⬜⬜⬛⬛⬛⬜⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛⬛⬛⬜⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬜⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬜⬜⬛⬛⬜⬛", "⬛⬛⬛⬛⬛⬛⬜⬛⬛", "⬛⬛⬜⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬜⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬜⬛", "⬛⬛⬜⬜⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬜⬛⬛⬛⬛⬜⬛", "⬛⬜⬛⬜⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬜⬛⬜⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬜⬜⬜⬛⬇⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬜⬛⬛⬛⬛", "⬛⬛⬛⬛⬝⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬇⬤⬡⬡⬡⬤⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬤⬛⬛⬛", "⬛⬛⬜⬜⬛⬡⬡⬡⬛", "⬛⬛⬜⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬜⬜⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬤⬡⬡⬡⬤⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬜⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬜⬤⬛⬛", "⬛⬜⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬝⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬤⬛⬛", "⬛⬛⬤⬡⬡⬡⬤⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬛⬜⬜⬛⬛⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛⬛⬛⬛⬜⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬝⬛⬛⬛⬛⬜⬛⬛", "⬛⬜⬛⬛⬜⬛⬦⬩⬛", "⬛⬛⬜⬜⬛⬜⬛⬛⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", ], // Levels 11-15 (Hard) [ "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛⬛⬛⬛⬛⬜⬛", "⬛⬛⬛⬛⬛⬛⬛⬛⬛", "⬛⬜⬛


*This prompt didn't get me into the game this time. Plz try to generate it a few times.
Prev Next   Back  0  0 Menu 

[PR]現在のフィギュア売れ筋ランキング

Click here for free DL of the app version that can save data.

(C)2023 HisashiApp