var fDesc=new Array(); fDesc[0] = "The 80s are back! Before the first video game consoles and computers appeared, children all over the world spent hours or even days playing arcade games, spending all of their pocket change and then some. Therefore, for those who are nostalgic for those times, we created this game. Your character is a pixel man. You need to pass him through the maze to the finish line to go to the next level. But in the maze on the floor there are traps of different colors, and if you touch one it's back to the beginning of the level. In order to bypass the traps, you need to collect cubes of the same colors as the traps. The cube paints your character in its color and you can safely pass through the trap of the same color. But on some levels, the color can automatically change over time, so be careful. There are tips for even easier passage of the game at each level. Enjoy the game!

The 80s are back! Before the first video game consoles and computers appeared, children all over the world spent hours or even days playing arcade games, spending all of their pocket change and then some. Therefore, for those who are nostalgic for those times, we created this game. Your character is a pixel man. You need to pass him through the maze to the finish line to go to the next level. But in the maze on the floor there are traps of different colors, and if you touch one it's back to the beginning of the level. In order to bypass the traps, you need to collect cubes of the same colors as the traps. The cube paints your character in its color and you can safely pass through the trap of the same color. But on some levels, the color can automatically change over time, so be careful. There are tips for even easier passage of the game at each level. Enjoy the game"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }