Marble Solitaire game with Frogs instead. This game has another version with Lady Bugs, Check it Out!
Project has a fixed size of 512×512 pixels at 30 fps and the graphics are PNG images.
Each board can be 7×7 square slots (leaves/frogs). The boards data is an array like below, you can modify it to add or remove your own board designs.
(0=noLeaf, 1=emptyLeaf, 2=Frog)
var Boards:Array = new Array(
[ //1 - common solitaire board
[0,0,2,2,2,0,0],
[0,0,2,2,2,0,0],
[2,2,2,2,2,2,2],
[2,2,2,1,2,2,2],
[2,2,2,2,2,2,2],
[0,0,2,2,2,0,0],
[0,0,2,2,2,0,0]
],
[ //2
[0,0,1,1,1,0,0],
[0,0,1,2,1,0,0],
[1,1,2,2,2,1,1],
[1,1,1,2,1,1,1],
[1,1,1,2,1,1,1],
[0,0,1,1,1,0,0],
[0,0,1,1,1,0,0]
],
.
.
.
[ //15
[0,0,1,2,1,0,0],
[0,2,2,2,2,2,0],
[1,2,2,2,2,2,1],
[2,2,2,2,2,2,2],
[1,2,2,2,2,2,1],
[0,2,2,2,2,2,0],
[0,0,1,2,1,0,0]
]
);




