I'm not going to hype my 8-bit contest game with screenshots, no, it is far too secret. I'm going to hype it with this plotscripting code!
Code:
script, special turtle settings, sl, begin
set move speed(sl, 1)
set ai(sl, @turtle ai)
set exbit(sl, bit:noanim, false)
set capture handler(sl, @turtle capture)
set monster collision handler(sl, none)
end
script, special turtle shell settings, sl, begin
set move speed(sl, 5)
set ai(sl, @turtle shell ai)
set exbit(sl, bit:noanim)
set capture handler(sl, none)
set monster collision handler(sl, @turtle shell collision)
end
script, special naked turtle settings, sl, begin
set move speed(sl, 3)
set ai(sl, @naked turtle ai)
set exbit(sl, bit:noanim, false)
set capture handler(sl, none)
set monster collision handler(sl, none)
end