123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466 |
- -- title: aba
- -- author: pixelbath
- -- desc: lets gooo
- -- site: website link
- -- license: MIT License
- -- script: lua
- local ADD,DEL,SORT,UNPK,CONCAT=table.insert,table.remove,table.sort,table.unpack,table.concat
- local RAD,DEG,MIN,MAX,ABS,RAND,SQRT,SIN,COS,PI,HUGE,CEIL,FLOOR=math.rad,math.deg,math.min,math.max,math.abs,math.random,math.sqrt,math.sin,math.cos,math.pi,math.huge,math.ceil,math.floor
- local function lerp(a,b,s)
- return a+(b-a)*s
- end
- -- return clamped value between 0 and 1
- local function norm(v,max)
- return MAX(0,MIN(1.0,v/max))
- end
- local function approach(x,v,s)
- return (v<x and MAX(x-s,v)) or (v>x and MIN(x+s,v)) or x
- end
- local function outQuad(a,b,s)
- return -(b-a) * s * (s - 2) + a
- end
- local dbg_ln=0
- function dbg_init()
- dbg_ln=0
- end
- function dbg(obj)
- local objstr=tostring(obj)
- rect(0,dbg_ln*7,#objstr*4+1,7,0)
- print(objstr, 1, dbg_ln*7+1,5,1,1,1)
- dbg_ln=dbg_ln+1
- end
- local t = 0
- local player={
- seen_tut_battery=false,
- }
- local sprites={
- icn_batt=9,
- icn_heart=10,
- icn_food=11,
- tl_powon=37,
- tl_powoff=39,
- }
- local sys={
- batt=20,
- pwrOn=false,
- battLow=true,
- sx=56,sy=3,
- }
- local palettes={
- pico8 = "0000001D2B537E2553008751AB52365F574FC2C3C7FFF1E8FF004DFFA300FFEC2700E43629ADFF83769CFF77A8FFCCAA",
- db16 = "140c1c44243430346d4e4a4e854c30346524d04648757161597dced27d2c8595a16daa2cd2aa996dc2cadad45edeeed6",
- }
- local stripe={15,14,8,8,8,9,10,10,11,12,2,13}
- function drawEase(easeFunc)
- for x=0,100 do
- local y=easeFunc(0,100,x/100)
- pix(x,100-y,9)
- end
- end
- function changePalette(pal)
- for i=1,#pal//2 do
- poke(0x3FC0+i-1,tonumber(string.sub(pal,i*2-1,i*2),16))
- end
- end
- function remapPico(tile,x,y)
- local outTile=tile
- if tile==sprites.tl_powon or tile==sprites.tl_powoff then
- if sys.pwrOn then
- outTile=sprites.tl_powon
- else
- outTile=sprites.tl_powoff
- end
- end
- return outTile,0,0
- end
- function updateSystemBoot()
- dbg_init()
- cls(0)
- map(0, 0, 30, 17, 0, 0, -1, 1, remapPico)
- if t > 80 then
- sys.pwrOn=true
- end
- if t > 120 then
- rect(sys.sx, sys.sy, 128, 128, 6)
- end
-
- if t > 125 then
- rect(sys.sx, sys.sy, 128, 128, 7)
- end
-
- local h = 128
- local y0 = 0
- if t > 200 then
- y0 = lerp(0, 50, norm(t-180, 50))
- h = lerp(128, 20, norm(t-180, 50))
- end
- if t > 140 then
- local prg = norm(t-140, 100)
- local sprd = outQuad(150,0,prg)
- drawStripe(outQuad(-440,-10,prg), sprd, y0, h)
- end
- if t > 300 then
- h=outQuad(20, 0, norm(t-300, 50))
- end
- if t > 350 then
- TIC = updateSystemTitle
- end
- dbg(approach(t, 100, t/100))
- t=t+1
- end
- function updateSystemTitle()
- dbg_init()
- sys.pwrOn=true
- cls(0)
- map(0, 0, 30, 17, 0, 0, -1, 1, remapPico)
-
- rect(sys.sx, sys.sy, 128, 128, 11)
- -- check/draw battery indicator
- if sys.batt<15 then
- if t%30==0 then
- sys.battLow=not sys.battLow
- end
- if sys.battLow then
- spr(sprites.icn_batt, sys.sx + 110, sys.sy + 8, 0)
- end
- if sys.batt<1 then
- t=0
- TIC = updateSystemDead
- end
- end
- -- drain battery
- if t%25==0 then sys.batt=sys.batt-1 end
- dbg(sys.batt)
- t=t+1
- end
- function updateSystemDead()
- sys.batt=0
- map(0, 0, 30, 17, 0, 0, -1, 1, remapPico)
- if t>20 then sys.pwrOn=false end
- if t>40 then
- t=0
- TIC = updateSystemEnd
- end
- t=t+1
- end
- local teststring = "ESCAPISM"
- local teststring2 = "When uploading the intro to the TIC-80 website for a playable online version, you will need to build a new TIC file with"
- local tb_idx=0
- function drawWavyText(txt,x,y,clr,amp,s)
- for i=0,#txt do
- local sv=SIN(i+s*t)*amp
- local ltr = txt:sub(i,i)
- print(ltr,i*4+x,sv*3+y,clr,1,1,1)
- end
- end
- function drawProgressiveBoxedText(txt,x,y,w,h,del)
- w,h=w or 80,h or 30
- del=del or 3
- local word,line="",""
- local lines={}
- for i=0,tb_idx do
- -- if i>22 then goto continue end
- local chr=txt:sub(i,i)
- if chr~=" " then
- word=word..chr
- else
- local wordlen=0
- local j=i+1
- while j <= #txt and txt:sub(j, j) ~= " " do
- wordlen=wordlen+1
- j=j+1
- end
- -- if new word exceeds line length, store line
- -- and start next one with new word
- if #line + #word + 1 + wordlen > w//4 then
- table.insert(lines, line)
- line = word .. " "
- word = ""
- else
- line = line .. word .. " "
- word = ""
- end
- end
- end
- ::continue::
- table.insert(lines, line..word)
- for i=1,#lines do
- print(lines[i], x, y+i*7,8,1,1,1)
- end
- if t%del==0 then
- tb_idx = MIN(tb_idx + 1, #txt)
- end
- end
- function updateSystemEnd()
- cls(0)
- if t==1 then
- sync(0, 1, false)
- end
- if t>10 then
- t=0
- TIC = updateRealWorldStreet
- end
- t=t+1
- end
- function updateRealWorldStreet()
- dbg_init()
- map(0, 0, 30, 17, 0, 0, -1, 1)
- end
- function drawStripe(x, spread, clipst, clipheight)
- clip(sys.sx,sys.sy+clipst,128,clipheight-sys.sy)
- for k,v in pairs(stripe) do
- local xo=sys.sx+(k-1)+x+(spread*k)
- line(xo, sys.sy+127, xo+64, sys.sy, v)
- end
- clip()
- end
- function TIC()
- updateSystemBoot()
- end
- -- <TILES>
- -- 000:6666666666666666666666666666666666666666666666666666666666666666
- -- 001:d66666666d6666666d6666666666666d6666666d666666d6666666d666666d66
- -- 002:6666666666666666666666666666666666666666666666666666666666666666
- -- 003:6666666666666666666666666666666d666666dd66666ddd6666d6dd66666ddd
- -- 004:6665555566155555615555557155555571555555715555557155555571555555
- -- 005:5555555555555555555555555555555555555555555555555555555555555555
- -- 006:5555555555555541555554115555511155555111555551115555511155555111
- -- 007:5555555511111111111111113333333333333333333333333333333333333333
- -- 008:5555555514555555114555551115555511155555111555551115555511155555
- -- 009:0000000000080800888808808080808880808088880888800808000000000000
- -- 010:00000000000000000080e00004888e0002488800002440000002000000000000
- -- 011:0000000000440000024440000224400000224400000027700000070000000000
- -- 012:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 013:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 014:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 015:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 016:6666666666666666666666666666666666666666666666666666666666666666
- -- 017:66666d6666666d666666d6666666d66666656666666d6666665d666666d66666
- -- 018:66666666666666666666666d666666dd66666d6d666ddddd66dddddd6dd66ddd
- -- 019:66d6ddddddddddd6dddddd6dddddd6ddddddddd6dddddd66dddddd6dddddd6dd
- -- 020:7155555571555555715555557155555571555555715555557155555571555555
- -- 021:5555555555555555555555555555555555555555555555555555555555555555
- -- 022:5555511155555111555551115555511155555111555551115555511155555111
- -- 023:3333333333333333333333333333333333333333333333333333333333333333
- -- 024:1115555511155555111555551115555511155555111555551115555511155555
- -- 026:bbbbbbbbbbbbb3bbbbbbb3bbb3b3bbbbbb3bbbbbbbbbbbbbb3bbb3b3bbbbbb3b
- -- 027:4444944444444444444444f4444444444944444444444444444f444444444449
- -- 028:ffff9ffff4fffff4ffffffffff9444fff444454fff54449ffffffffffffffff9
- -- 029:bb333bbbb3a3a33b3b3b3bb13bb3b3311333131b3131311bb11113bbbb1414bb
- -- 030:bb553bbbb5bba33b5b3bbab133b3b3311333131b3131311bb31111bbbbb14bbb
- -- 031:bbbbbbbbbbbbbbbbbbb00bbbbb0760bbb006510b306511033051033bb30033bb
- -- 032:66666666666666666666666666666666666666666666666d6666666d666666dd
- -- 033:65d666666d6666665d666666d6666666d6666d6666666d6666666d6666666d66
- -- 034:dd666dddd6666ddd66666d6d666666666666666d6666666d666666dd666666dd
- -- 035:dddddddddddddddddddddddd6ddddddddddddd6ddddd66ddddd66ddddd66dddd
- -- 036:7155555571555555715555557155555571555555715555557155555571555555
- -- 037:5555555555555555555115555518715555188155555115555555555555555555
- -- 038:5555511155555111555551115555511155555111555551115555511155555111
- -- 039:5555555555555555555115555512415555122155555115555555555555555555
- -- 040:5555146655555146555555165555551455555514555555145555551455555514
- -- 042:bbbbbbbbbbbbbbbbbff4bbbbbffffffbbbbff4ffbbbbbbbbbbbbbbbbbbbbbbbb
- -- 043:bbbbbb9bbbbbfffbbb4fffbbb4fffffbfffff4ffbfffffffffffffbbbbf9bbbb
- -- 044:bbbbbbbbbbb3bb33bb3b3344b3b34444bb344444bb344f44b3444444b3444444
- -- 045:bbbbbbbb33bb3bbb4433b3bb44443b3b444443bb449443bb4444443b4444443b
- -- 046:b34444443444449444f44444444444444444444444944f444444444444444444
- -- 047:4444443b4444449344f44444444444444444444444944f444444444444444444
- -- 048:666666d6666666d666666d6666666d6666666d6666666d666666d6666666d666
- -- 049:66666d66666666d6666666d6666666d6666666d6666666d6666666d6666666d6
- -- 050:6666666d66666666666666666666666666666666666666666666666666666666
- -- 051:d6ddd6ddddddddddddddddd66dddd66666666666666666666666666666666666
- -- 052:7155555571555555715555d57155556671555555715555557155555571555555
- -- 053:555555555555555556556556556565d565d5d555555555555555555555555555
- -- 054:55555111555551115555511166555111d5555111555551115555511155555111
- -- 056:5555551455555514555555145555551455555514555555145555551455555514
- -- 058:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 059:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 060:b3444444b3444494bb344444bb344444b3b34444bb3b3344bbb3bb33bbbbbbbb
- -- 061:4444443b4444443b44f443bb444443bb44443b3b4433b3bb33bb3bbbbbbbbbbb
- -- 062:444444444444449444f44444444444444444444444944f4434444444b3444444
- -- 063:444444444444449444f44444444444444444444444944f44444444434444443b
- -- 064:6666d6666666d666666d6666666d6666666d6666666d666666d6666666d66666
- -- 065:666666d6666666d56666665d6666665d6666666d6666666d6666666d6666666d
- -- 066:6666666666666666666666666666666d666666d6666666d666666d666666d666
- -- 070:5555511155555111555551115555511155555411555555415555555555555555
- -- 071:3333333333333333333333331111111111111111111111115555555555555555
- -- 072:1115555511155555111555551115555511455555145555555555555555555555
- -- 074:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 075:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 076:bbbbbbbbbbb3bb33bb3b3344b3b34444bb344444bb344f44b344f444b3444444
- -- 077:bbbbbbbb3333333344f44444444444444444444444944f444444444444444444
- -- 078:bbbbbbbb3333333344f44444444444444444444444944f444444444444444444
- -- 079:bbbbbbbb33bb3bbb4433b3bb44443b3b444443bb449443bb4444443b4444443b
- -- 080:66d6666666d6666666d6666666d6666666d666666d6666666d6666666d666666
- -- 081:6666666d6666666d6666666d6666666d66666666666666666666666666666666
- -- 082:666d66d66ddd6d666d6dd666dddd6666d5d6666655d6666655666666d6666666
- -- 090:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 091:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 092:b3444444b3444494b3f44444b3444444b3444444b3944f44b3444444b3444444
- -- 093:4444944444444444444444f4444444444944444444444444444f444444444449
- -- 094:444444444444449444f44444444444444444444444944f444444444444444444
- -- 095:4444443b4444443b44f4443b4444443b4444443b44944f3b4444443b4444443b
- -- 096:6666666666666666666666666666666666666666666666666666666666666666
- -- 097:66666666666666666666666666666dd66666dd66666d666666d6666665dd6666
- -- 106:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 107:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 108:b3444444b3444494b3f44444b3444444b3444444b3944f44b3444444b3444444
- -- 109:444444444444449444f44444444444444444444444944f444444444444444444
- -- 110:4444944444444444444444f4444444444944444444444444444f444444444449
- -- 111:4444443b4444443b44f4443b4444443b4444443b44944f3b4444443b4444443b
- -- 112:666666666666666666666666666666656666666d666666d6666666d6666666d6
- -- 113:6dd666665dd66666dd666666dd666666d6666666666d6666666d666666666666
- -- 122:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 123:bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
- -- 124:b3444444b3444494bb344444bb344444b3b34444bb3b3344bbb3bb33bbbbbbbb
- -- 125:444444444444449444f44444444444444444444444944f4433333333bbbbbbbb
- -- 126:444444444444449444f44444444444444444444444944f4433333333bbbbbbbb
- -- 127:4444443b4444443b44f443bb444443bb44443b3b4433b3bb33bb3bbbbbbbbbbb
- -- 128:666666d6666666d6666666d6666666d6666666d6666666666666666666666666
- -- 129:6666666666d666666d6666666d6666666d6666666d6666666d66666666666666
- -- </TILES>
- -- <TILES1>
- -- 001:0000000000000000000222220023888800288888002888880028888800288888
- -- 002:0000000000000000222220008888320088888200888882008888820088888200
- -- 003:00000000000000000000000000000022000002dd000028830002883f0002883f
- -- 004:00000000000000000000000022200000ddd20000838d20003f38d2003f388200
- -- 005:00000000000000000000000000000022000002ff00002ee60002ee6f0002ee6f
- -- 006:00000000000000000000000022200000fff20000e6ef20006f6ef2006f6ee200
- -- 007:00000000000000000000000000000022000002ee00002bb20002bb2f0002bb2f
- -- 008:00000000000000000000000022200000eee2000022be2000ff2be2002f2bb200
- -- 009:00000000000000000000000000000022000002cc000026220002662f0002662f
- -- 010:00000000000000000000000022200000ccc20000226c2000f226c2002f266200
- -- 011:0000000000788888002222220027333300283333002833330028333300283333
- -- 012:0000000088888888222222223333333333333333333333333333333333333333
- -- 013:0000000088aaaa0022222a003333280033332800333328003333280033332800
- -- 016:222222002ffff2002f22f2002f22f2002ffff2002f22f2002222220000000000
- -- 017:0028888800288888002888880023888800223333000222220000000000000000
- -- 018:8888820088888200888882008888320033332200222220000000000000000000
- -- 019:000288830002883f0002283f0000228300000222000000220000000000000000
- -- 020:f38882003f3882003f3822008382200022220000222000000000000000000000
- -- 021:0002eee60002eee60002be6f00002be6000002bb000000220000000000000000
- -- 022:ff6ee2006f6ee200f6eeb2006eeb2000bbb20000222000000000000000000000
- -- 023:0002bb2f0002bb2f00025b2f000025b200000255000000220000000000000000
- -- 024:ff2bb2002f2bb2002f2b5200b2b5200055520000222000000000000000000000
- -- 025:0002662f0002662f0002462f0000242200000244000000220000000000000000
- -- 026:f22662002f266200ff2642002224200044420000222000000000000000000000
- -- 027:0028333300283333002833330028333300283333002833330028333300283333
- -- 028:3333333333333333333333333333333333333333333333333333333333333333
- -- 029:3333280033332800333328003333280033332800333328003333280033332800
- -- 032:222222002ffff2002f2222002ffff2002222f2002ffff2002222220000000000
- -- 033:222222002ffff2002222f20022ff22002f2222002ffff2002222220000000000
- -- 034:222222002f22f2002f22f20022ff22002f22f2002f22f2002222220000000000
- -- 043:00283333002833330028333300283333002a88880028a7aa0022222200000000
- -- 044:33333333333333333333333333333333888888887aaa7aaa2222222200000000
- -- 045:33332800333328003333280033332700888882007aa7a8002222220000000000
- -- 048:0000000000000000100000000000000010000000010200004020100001010100
- -- 049:0000000000000000002000200112010120202222332111131222121113331333
- -- 050:0000000000000000020000200012021120202222332111131222121113331333
- -- 051:0000000002220002000020000110010120202022332111131222121413331337
- -- 064:1111111133133313111111111331133311111111331337131111111113331333
- -- 065:1111111133137313111111111333133311111111331333111111111117331333
- -- 066:1111111433133317111111141331133711111114331333171111111413331337
- -- 067:1122221133777713148887211388873314888721338887131474474112122123
- -- 080:2111111113133313211111112331133321111111131337132111111122332333
- -- 081:1111111133133313111111111331133311111111331337131111111112212112
- -- 082:4212121001212100401210220421122240113333041377734177777717777777
- -- 083:1111111122222aa22222aa22222aa22222aa22222222222222222222a222a222
- -- 096:3333333273777727777772777777277777727777772777777237777723333333
- -- 097:3333333377777737777777777777777777777777777777777777777733333333
- -- 098:2222222222222222222222222222222222222222222222222222222222222222
- -- 099:11111111222222222222222222222222222222222222222222222222a222a222
- -- </TILES1>
- -- <MAP>
- -- 000:000000004050607070707070707070707070707070707080518200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 001:001000004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 002:011100004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 003:021200004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 004:031300004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 005:041400004151617171717171717171717171717171717181518300002030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 006:051500004151617171717171717171717171717171717181518300002131000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 007:000000004252627171717171717171717171717171717181518300002232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 008:000000004353637171717171717171717171717171717181518300002333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 009:000000004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 010:000000004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 011:240000004151617171717171717171717171717171717181518300000616000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 012:250000004151617171717171717171717171717171717181518300000717000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 013:000000004151617171717171717171717171717171717181518300000818000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 014:000000004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 015:000000004151617171717171717171717171717171717181518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 016:000000004151647474747474747474747474747474747484518300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- </MAP>
- -- <MAP1>
- -- 003:000023231323133300132313231323132323233323132323231333002323000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 004:000005040404042400051404140414041404140414041404140424000504000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 005:000005140404142400051404140414041404140414041404140424000514000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 006:000005040434042400051404340414041434140414043404040424000504000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 007:000005041404042400050404140414041404141414040404140424000504000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 008:000005040404142400051404140414041404140414040404140424000504000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 009:000305140404042403051404140414041404140414041404140424030514000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 010:002505150515051525051514150415141504151415141504151424250515000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 011:061606160616061606160616061606160616061606160616061606160616000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006
- -- 012:363536363536363536363536363536363536363536363536363636363636360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 013:262626262626262626262626262626262626262626262626262626262626000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 014:262626262626262626262626262626262626262626262626262626262626000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 015:262626262626262626262626262626262626262626262626262626262626000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- 016:262626262626262626262626262626262626262626262626262626262626000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- </MAP1>
- -- <WAVES>
- -- 000:00000000ffffffff00000000ffffffff
- -- 001:0123456789abcdeffedcba9876543210
- -- 002:0123456789abcdef0123456789abcdef
- -- </WAVES>
- -- <SFX>
- -- 000:000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000304000000000
- -- </SFX>
- -- <TRACKS>
- -- 000:100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
- -- </TRACKS>
- -- <PALETTE>
- -- 000:0000001d2b537e2553008751ab52365f574fc2c3c7fff1e8ff004dffa300ffec2700e43629adff83769cff77a8ffccaa
- -- </PALETTE>
- -- <PALETTE1>
- -- 000:140c1c44243430346d4e4a4e854c30346524d04648757161597dced27d2c8595a16daa2cd2aa996dc2cadad45edeeed6
- -- </PALETTE1>
|