fortunes_foundation/tutorial.lua

49 lines
1.5 KiB
Lua
Raw Permalink Normal View History

2024-02-12 00:48:11 +00:00
standard_watcher_cb=function(i) return function() return watcher:new(progression[i]) end end
2024-02-11 03:42:38 +00:00
tutorial={
2024-02-11 06:01:05 +00:00
-- function() return watcher:new(progression[6]) end,
2024-02-11 04:40:12 +00:00
function()
return watcher:new(progression[1], 10,{
2024-02-13 00:34:26 +00:00
tutorial_grab:new(1,4,"stack cards ascending..."),
tutorial_grab:new(5,1,"... or descending."),
2024-02-11 04:40:12 +00:00
tutorial_grab:new(4,3),
2024-02-13 00:34:26 +00:00
tutorial_grab:new(2,4,"fill the wells."),
2024-02-11 03:42:38 +00:00
})
2024-02-11 04:40:12 +00:00
end,
function()
return watcher:new(progression[2], 10,{
2024-02-13 00:34:26 +00:00
tutorial_grab:new(1,6,"use the extra slot."),
tutorial_grab:new(1,2,"it blocks the wells."),
tutorial_grab:new(1,5,"it blocks the wells."),
tutorial_grab:new(1,5,"it blocks the wells."),
tutorial_grab:new(2,1,"it blocks the wells."),
tutorial_grab:new(2,1,"it blocks the wells."),
tutorial_grab:new(6,1,"drag it down."),
2024-02-11 04:40:12 +00:00
})
end,
function()
return watcher:new(progression[3],3,{
2024-02-13 00:34:26 +00:00
tutorial_grab:new(7,6,"here are more cards."),
tutorial_undo:new("undo. (or hold to restart.)"),
2024-02-11 04:40:12 +00:00
tutorial_grab:new(6,7),
2024-02-13 00:34:26 +00:00
tutorial_grab:new(6,8,"they have their own well."),
tutorial_grab:new(2,6,"it can't be blocked."),
tutorial_grab:new(2,4,"stack ascending or descending."),
2024-02-15 02:17:19 +00:00
tutorial_grab:new(3,1,"collect the last card\nto read a scroll!"),
2024-02-11 04:40:12 +00:00
})
end,
2024-02-12 00:48:11 +00:00
standard_watcher_cb(4),
standard_watcher_cb(5),
standard_watcher_cb(6),
standard_watcher_cb(7),
2024-02-11 22:59:20 +00:00
completion_stage=3
2024-02-11 03:42:38 +00:00
}
2024-02-12 00:48:11 +00:00
non_tutorial={
standard_watcher_cb(3),
standard_watcher_cb(4),
standard_watcher_cb(5),
standard_watcher_cb(6),
standard_watcher_cb(7)
}