fortunes_foundation/tutorial.lua
2024-02-10 20:40:12 -08:00

37 lines
898 B
Lua

tutorial={
function()
return watcher:new(progression[1], 10,{
tutorial_grab:new(1,4),
tutorial_grab:new(5,1),
tutorial_grab:new(4,3),
tutorial_grab:new(2,4),
})
end,
function()
return watcher:new(progression[2], 10,{
tutorial_grab:new(1,6),
tutorial_grab:new(1,2),
tutorial_grab:new(1,5),
tutorial_grab:new(1,5),
tutorial_grab:new(2,1),
tutorial_grab:new(2,1),
tutorial_grab:new(6,1),
})
end,
function()
return watcher:new(progression[3],3,{
tutorial_grab:new(7,6),
tutorial_undo:new(),
tutorial_grab:new(6,7),
tutorial_grab:new(6,8),
tutorial_grab:new(2,6),
tutorial_grab:new(2,4),
tutorial_grab:new(3,1),
})
end,
function() return watcher:new(progression[4]) end,
function() return watcher:new(progression[5]) end,
function() return watcher:new(progression[6]) end,
function() return watcher:new(progression[7]) end
}