123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016 |
- {
- "skeleton": {
- "hash": "3P3VgYJ8Bxk",
- "spine": "4.0.07",
- "x": -5852.65,
- "y": -348.5,
- "width": 7202.61,
- "height": 1298.88,
- "images": "./images/",
- "audio": ""
- },
- "bones": [
- { "name": "root" },
- { "name": "tank-root", "parent": "root", "y": 146.79 },
- { "name": "tank-treads", "parent": "tank-root", "y": 48.35 },
- { "name": "tank-body", "parent": "tank-treads", "y": 10 },
- { "name": "guntower", "parent": "tank-body", "x": -21.72, "y": 245.48 },
- { "name": "antenna-root", "parent": "guntower", "x": 164.61, "y": 202.53 },
- { "name": "antenna1", "parent": "antenna-root", "length": 40, "rotation": 90, "y": 40, "color": "ffee00ff" },
- { "name": "antenna2", "parent": "antenna1", "length": 42, "x": 42, "color": "ffee00ff" },
- { "name": "antenna3", "parent": "antenna2", "length": 42, "x": 42, "color": "ffee00ff" },
- { "name": "antenna4", "parent": "antenna3", "length": 42, "x": 42, "color": "ffee00ff" },
- { "name": "antenna5", "parent": "antenna4", "length": 42, "x": 42, "color": "ffee00ff" },
- { "name": "antenna6", "parent": "antenna5", "length": 42, "x": 42, "color": "ffee00ff" },
- { "name": "cannon-connector", "parent": "guntower", "x": -235.05, "y": 96.07 },
- { "name": "cannon-target", "parent": "tank-root", "x": -2276.67, "y": 400.17, "color": "0096ffff" },
- { "name": "cannon", "parent": "cannon-connector", "length": 946.68, "rotation": 180, "color": "ff4000ff" },
- {
- "name": "machinegun-mount",
- "parent": "guntower",
- "length": 90.98,
- "rotation": 90,
- "x": -123.73,
- "y": 218.33,
- "color": "15ff00ff"
- },
- { "name": "machinegun-target", "parent": "tank-root", "x": -2272.76, "y": 607.77, "color": "0096ffff" },
- {
- "name": "machinegun",
- "parent": "machinegun-mount",
- "length": 208.95,
- "rotation": 90,
- "x": 91.52,
- "y": -1.03,
- "color": "15ff00ff"
- },
- { "name": "machinegun-tip", "parent": "machinegun", "x": 210.43, "y": -12.21 },
- { "name": "rock", "parent": "root", "x": -1925.2, "y": 33.17 },
- {
- "name": "smoke-root",
- "parent": "tank-root",
- "x": -1200.38,
- "y": 405.76,
- "scaleX": -6.5,
- "scaleY": 6.5,
- "color": "ff4000ff"
- },
- { "name": "smoke-glow", "parent": "smoke-root", "x": 62.92, "y": -0.71, "color": "ff4000ff" },
- {
- "name": "smoke1",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke10",
- "parent": "smoke-root",
- "rotation": -103.52,
- "x": 25.45,
- "y": 2.48,
- "scaleX": 3.9011,
- "scaleY": 2.8523,
- "color": "ff4000ff"
- },
- {
- "name": "smoke11",
- "parent": "smoke-root",
- "rotation": -103.52,
- "x": 25.45,
- "y": 2.48,
- "scaleX": 3.9011,
- "scaleY": 2.8523,
- "color": "ff4000ff"
- },
- {
- "name": "smoke12",
- "parent": "smoke-root",
- "rotation": -103.52,
- "x": 25.45,
- "y": 2.48,
- "scaleX": 3.9011,
- "scaleY": 2.8523,
- "color": "ff4000ff"
- },
- {
- "name": "smoke13",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke14",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke15",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke16",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke17",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke18",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke2",
- "parent": "smoke-root",
- "rotation": -84.14,
- "x": 45.06,
- "y": 29.7,
- "scaleX": 3.3345,
- "scaleY": 3.3345,
- "color": "ff4000ff"
- },
- {
- "name": "smoke20",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke21",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke22",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke23",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke24",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke25",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke26",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke27",
- "parent": "smoke-root",
- "rotation": -179.99,
- "x": 14.75,
- "y": -1.55,
- "scaleX": 1.6484,
- "scaleY": 1.6484,
- "color": "ff4000ff"
- },
- {
- "name": "smoke3",
- "parent": "smoke-root",
- "rotation": -87.91,
- "x": 55.15,
- "y": -17.5,
- "scaleX": 3.0415,
- "scaleY": 4.157,
- "color": "ff4000ff"
- },
- {
- "name": "smoke4",
- "parent": "smoke-root",
- "rotation": -87.91,
- "x": 69.25,
- "y": 8.01,
- "scaleX": 2.1808,
- "scaleY": 2.9807,
- "color": "ff4000ff"
- },
- {
- "name": "smoke5",
- "parent": "smoke-root",
- "rotation": -87.91,
- "x": 80.63,
- "y": 59.88,
- "scaleX": 4.5119,
- "scaleY": 2.9725,
- "color": "ff4000ff"
- },
- {
- "name": "smoke6",
- "parent": "smoke-root",
- "rotation": -87.91,
- "x": 96.19,
- "y": 25.65,
- "scaleX": 3.7912,
- "scaleY": 3.0552,
- "color": "ff4000ff"
- },
- {
- "name": "smoke7",
- "parent": "smoke-root",
- "rotation": 153.68,
- "x": 85.65,
- "y": -50.47,
- "scaleX": 4.8523,
- "scaleY": 3.6528,
- "color": "ff4000ff"
- },
- {
- "name": "smoke8",
- "parent": "smoke-root",
- "rotation": 67.58,
- "x": 47.85,
- "y": -42.55,
- "scaleX": 4.0006,
- "scaleY": 3.4796,
- "color": "ff4000ff"
- },
- {
- "name": "smoke9",
- "parent": "smoke-root",
- "rotation": 150.05,
- "x": 104.02,
- "y": -8.73,
- "scaleX": 4.2074,
- "scaleY": 3.0762,
- "color": "ff4000ff"
- },
- { "name": "tank-glow", "parent": "tank-root", "x": -247.72, "y": 404.37, "scaleX": 1.0582, "scaleY": 0.6785 },
- {
- "name": "tread",
- "parent": "tank-root",
- "length": 82,
- "rotation": 180,
- "x": -22.9,
- "y": 213.86,
- "scaleX": 0.9933,
- "color": "e64344ff"
- },
- { "name": "wheel-mid-center", "parent": "tank-root", "y": -66.21 },
- { "name": "tread-collider1", "parent": "wheel-mid-center", "x": -329.58, "y": -85.44, "color": "ff00fbff" },
- { "name": "tread-collider2", "parent": "wheel-mid-center", "x": -165.95, "y": -85.44, "color": "ff00fbff" },
- { "name": "tread-collider3", "parent": "wheel-mid-center", "y": -85.44, "color": "ff00fbff" },
- { "name": "tread-collider4", "parent": "wheel-mid-center", "x": 163.56, "y": -85.44, "color": "ff00fbff" },
- { "name": "tread-collider5", "parent": "wheel-mid-center", "x": 329.12, "y": -85.44, "color": "ff00fbff" },
- { "name": "tread-gravity1", "parent": "tank-root", "rotation": 180, "x": -175.35, "y": 149.31, "color": "ff00fbff" },
- { "name": "tread-gravity2", "parent": "tank-root", "rotation": 180, "x": 177.89, "y": 144.78, "color": "ff00fbff" },
- {
- "name": "tread10",
- "parent": "tread",
- "length": 82,
- "rotation": 48.85,
- "x": 662.9,
- "y": -120.35,
- "color": "e64344ff"
- },
- {
- "name": "tread11",
- "parent": "tread",
- "length": 82,
- "rotation": 97.99,
- "x": 651.5,
- "y": -39.69,
- "color": "e64344ff"
- },
- {
- "name": "tread12",
- "parent": "tread",
- "length": 82,
- "rotation": 113.79,
- "x": 618.43,
- "y": 34.83,
- "color": "e64344ff"
- },
- {
- "name": "tread13",
- "parent": "tread",
- "length": 82,
- "rotation": 122.96,
- "x": 573.82,
- "y": 103.18,
- "color": "e64344ff"
- },
- {
- "name": "tread14",
- "parent": "tread",
- "length": 82,
- "rotation": 142.01,
- "x": 509.19,
- "y": 153.3,
- "color": "e64344ff"
- },
- {
- "name": "tread15",
- "parent": "tread",
- "length": 82,
- "rotation": 157.84,
- "x": 433.25,
- "y": 184.02,
- "color": "e64344ff"
- },
- {
- "name": "tread16",
- "parent": "tread",
- "length": 82,
- "rotation": 157.37,
- "x": 357.56,
- "y": 215.37,
- "color": "e64344ff"
- },
- {
- "name": "tread17",
- "parent": "tread",
- "length": 82,
- "rotation": 157.29,
- "x": 281.92,
- "y": 246.8,
- "color": "e64344ff"
- },
- {
- "name": "tread18",
- "parent": "tread",
- "length": 82,
- "rotation": 157.19,
- "x": 206.33,
- "y": 278.38,
- "color": "e64344ff"
- },
- {
- "name": "tread19",
- "parent": "tread",
- "length": 82,
- "rotation": 157.14,
- "x": 130.77,
- "y": 310.02,
- "color": "e64344ff"
- },
- { "name": "tread2", "parent": "tread", "length": 82, "x": 82, "color": "e64344ff" },
- {
- "name": "tread20",
- "parent": "tread",
- "length": 82,
- "rotation": 157.34,
- "x": 55.1,
- "y": 341.41,
- "color": "e64344ff"
- },
- {
- "name": "tread21",
- "parent": "tread",
- "length": 82,
- "rotation": 158.11,
- "x": -20.99,
- "y": 371.77,
- "color": "e64344ff"
- },
- {
- "name": "tread22",
- "parent": "tread",
- "length": 82,
- "rotation": 157.99,
- "x": -97.02,
- "y": 402.28,
- "color": "e64344ff"
- },
- {
- "name": "tread23",
- "parent": "tread",
- "length": 82,
- "rotation": 157.59,
- "x": -172.83,
- "y": 433.33,
- "color": "e64344ff"
- },
- {
- "name": "tread24",
- "parent": "tread",
- "length": 82,
- "rotation": 156.86,
- "x": -248.23,
- "y": 465.34,
- "color": "e64344ff"
- },
- {
- "name": "tread25",
- "parent": "tread",
- "length": 82,
- "rotation": 177.94,
- "x": -330.17,
- "y": 468.27,
- "color": "e64344ff"
- },
- {
- "name": "tread26",
- "parent": "tread",
- "length": 82,
- "rotation": -169.55,
- "x": -410.81,
- "y": 453.5,
- "color": "e64344ff"
- },
- {
- "name": "tread27",
- "parent": "tread",
- "length": 82,
- "rotation": -163.86,
- "x": -489.58,
- "y": 430.86,
- "color": "e64344ff"
- },
- {
- "name": "tread28",
- "parent": "tread",
- "length": 82,
- "rotation": -139.13,
- "x": -551.59,
- "y": 377.57,
- "color": "e64344ff"
- },
- {
- "name": "tread29",
- "parent": "tread",
- "length": 82,
- "rotation": -89.04,
- "x": -550.21,
- "y": 296.14,
- "color": "e64344ff"
- },
- {
- "name": "tread3",
- "parent": "tread",
- "length": 82,
- "rotation": -8.91,
- "x": 163.01,
- "y": -12.61,
- "color": "e64344ff"
- },
- {
- "name": "tread30",
- "parent": "tread",
- "length": 82,
- "rotation": -38.99,
- "x": -486.48,
- "y": 244.89,
- "color": "e64344ff"
- },
- {
- "name": "tread31",
- "parent": "tread",
- "length": 82,
- "rotation": -20.04,
- "x": -409.45,
- "y": 216.98,
- "color": "e64344ff"
- },
- {
- "name": "tread32",
- "parent": "tread",
- "length": 82,
- "rotation": -46.24,
- "x": -352.74,
- "y": 158.15,
- "color": "e64344ff"
- },
- {
- "name": "tread33",
- "parent": "tread",
- "length": 82,
- "rotation": -27.95,
- "x": -280.3,
- "y": 119.98,
- "color": "e64344ff"
- },
- {
- "name": "tread34",
- "parent": "tread",
- "length": 82,
- "rotation": 10.46,
- "x": -199.66,
- "y": 134.77,
- "color": "e64344ff"
- },
- {
- "name": "tread35",
- "parent": "tread",
- "length": 82,
- "rotation": -17.9,
- "x": -121.63,
- "y": 109.73,
- "color": "e64344ff"
- },
- {
- "name": "tread36",
- "parent": "tread",
- "length": 82,
- "rotation": -36.82,
- "x": -55.99,
- "y": 60.92,
- "color": "fbff00ff"
- },
- {
- "name": "tread4",
- "parent": "tread",
- "length": 82,
- "rotation": -29.27,
- "x": 234.55,
- "y": -52.43,
- "color": "e64344ff"
- },
- {
- "name": "tread5",
- "parent": "tread",
- "length": 82,
- "rotation": -45.26,
- "x": 292.26,
- "y": -110.28,
- "color": "e64344ff"
- },
- {
- "name": "tread6",
- "parent": "tread",
- "length": 82,
- "rotation": -15.29,
- "x": 371.36,
- "y": -131.76,
- "color": "e64344ff"
- },
- {
- "name": "tread7",
- "parent": "tread",
- "length": 82,
- "rotation": -5.49,
- "x": 452.98,
- "y": -139.55,
- "color": "e64344ff"
- },
- {
- "name": "tread8",
- "parent": "tread",
- "length": 82,
- "rotation": -24.99,
- "x": 527.31,
- "y": -173.95,
- "color": "e64344ff"
- },
- {
- "name": "tread9",
- "parent": "tread",
- "length": 82,
- "rotation": -5.44,
- "x": 608.94,
- "y": -181.68,
- "color": "e64344ff"
- },
- { "name": "wheel-big-root1", "parent": "tank-treads", "x": -549.6, "y": 14.4, "color": "abe323ff" },
- { "name": "wheel-big-root2", "parent": "tank-treads", "x": 547.34, "y": 14.4 },
- { "name": "wheel-big1", "parent": "wheel-big-root1", "x": -0.02, "color": "abe323ff" },
- { "name": "wheel-big2", "parent": "wheel-big-root2" },
- { "name": "wheel-mid-root1", "parent": "wheel-mid-center", "x": -410.57, "color": "abe323ff" },
- { "name": "wheel-mid-root2", "parent": "wheel-mid-center", "x": -246.95 },
- { "name": "wheel-mid-root3", "parent": "wheel-mid-center", "x": -82.73 },
- { "name": "wheel-mid-root4", "parent": "wheel-mid-center", "x": 80.89 },
- { "name": "wheel-mid-root5", "parent": "wheel-mid-center", "x": 244.51 },
- { "name": "wheel-mid-root6", "parent": "wheel-mid-center", "x": 408.74 },
- { "name": "wheel-mid1", "parent": "wheel-mid-root1", "color": "abe323ff" },
- { "name": "wheel-mid2", "parent": "wheel-mid-root2" },
- { "name": "wheel-mid3", "parent": "wheel-mid-root3" },
- { "name": "wheel-mid4", "parent": "wheel-mid-root4" },
- { "name": "wheel-mid5", "parent": "wheel-mid-root5" },
- { "name": "wheel-mid6", "parent": "wheel-mid-root6" },
- { "name": "wheel-small-root1", "parent": "tank-treads", "x": -337.39, "y": 109.43 },
- { "name": "wheel-small-root2", "parent": "tank-treads", "x": 0.09, "y": 109.43 },
- { "name": "wheel-small-root3", "parent": "tank-treads", "x": 334.69, "y": 109.43 },
- { "name": "wheel-small1", "parent": "wheel-small-root1", "color": "abe323ff" },
- { "name": "wheel-small2", "parent": "wheel-small-root2" },
- { "name": "wheel-small3", "parent": "wheel-small-root3" }
- ],
- "slots": [
- { "name": "rock", "bone": "rock", "attachment": "rock" },
- { "name": "ground", "bone": "root", "attachment": "ground" },
- { "name": "ground2", "bone": "root", "attachment": "ground" },
- { "name": "ground3", "bone": "root", "attachment": "ground" },
- { "name": "ground4", "bone": "root", "attachment": "ground" },
- { "name": "ground5", "bone": "root", "attachment": "ground" },
- { "name": "ground6", "bone": "root", "attachment": "ground" },
- { "name": "ground7", "bone": "root", "attachment": "ground" },
- { "name": "tank-body-shadow", "bone": "tank-body", "color": "ffffffb9", "attachment": "tank-bottom-shadow" },
- { "name": "bottom", "bone": "tank-body", "attachment": "tank-bottom" },
- { "name": "tread-inside1", "bone": "tread", "attachment": "tread-inside" },
- { "name": "tread-inside53", "bone": "tread27", "attachment": "tread-inside" },
- { "name": "tread-inside27", "bone": "tread14", "attachment": "tread-inside" },
- { "name": "tread-inside3", "bone": "tread2", "attachment": "tread-inside" },
- { "name": "tread-inside55", "bone": "tread28", "attachment": "tread-inside" },
- { "name": "tread-inside29", "bone": "tread15", "attachment": "tread-inside" },
- { "name": "tread-inside5", "bone": "tread3", "attachment": "tread-inside" },
- { "name": "tread-inside57", "bone": "tread29", "attachment": "tread-inside" },
- { "name": "tread-inside31", "bone": "tread16", "attachment": "tread-inside" },
- { "name": "tread-inside7", "bone": "tread4", "attachment": "tread-inside" },
- { "name": "tread-inside59", "bone": "tread30", "attachment": "tread-inside" },
- { "name": "tread-inside33", "bone": "tread17", "attachment": "tread-inside" },
- { "name": "tread-inside9", "bone": "tread5", "attachment": "tread-inside" },
- { "name": "tread-inside61", "bone": "tread31", "attachment": "tread-inside" },
- { "name": "tread-inside35", "bone": "tread18", "attachment": "tread-inside" },
- { "name": "tread-inside11", "bone": "tread6", "attachment": "tread-inside" },
- { "name": "tread-inside63", "bone": "tread32", "attachment": "tread-inside" },
- { "name": "tread-inside37", "bone": "tread19", "attachment": "tread-inside" },
- { "name": "tread-inside13", "bone": "tread7", "attachment": "tread-inside" },
- { "name": "tread-inside65", "bone": "tread33", "attachment": "tread-inside" },
- { "name": "tread-inside39", "bone": "tread20", "attachment": "tread-inside" },
- { "name": "tread-inside15", "bone": "tread8", "attachment": "tread-inside" },
- { "name": "tread-inside67", "bone": "tread34", "attachment": "tread-inside" },
- { "name": "tread-inside69", "bone": "tread35", "attachment": "tread-inside" },
- { "name": "tread-inside71", "bone": "tread36", "attachment": "tread-inside" },
- { "name": "tread-inside41", "bone": "tread21", "attachment": "tread-inside" },
- { "name": "tread-inside17", "bone": "tread9", "attachment": "tread-inside" },
- { "name": "tread-inside43", "bone": "tread22", "attachment": "tread-inside" },
- { "name": "tread-inside19", "bone": "tread10", "attachment": "tread-inside" },
- { "name": "tread-inside45", "bone": "tread23", "attachment": "tread-inside" },
- { "name": "tread-inside21", "bone": "tread11", "attachment": "tread-inside" },
- { "name": "tread-inside47", "bone": "tread24", "attachment": "tread-inside" },
- { "name": "tread-inside23", "bone": "tread12", "attachment": "tread-inside" },
- { "name": "tread-inside49", "bone": "tread25", "attachment": "tread-inside" },
- { "name": "tread-inside25", "bone": "tread13", "attachment": "tread-inside" },
- { "name": "tread-inside51", "bone": "tread26", "attachment": "tread-inside" },
- { "name": "tread-inside2", "bone": "tread", "attachment": "tread-inside" },
- { "name": "tread-inside54", "bone": "tread27", "attachment": "tread-inside" },
- { "name": "tread-inside28", "bone": "tread14", "attachment": "tread-inside" },
- { "name": "tread-inside4", "bone": "tread2", "attachment": "tread-inside" },
- { "name": "tread-inside56", "bone": "tread28", "attachment": "tread-inside" },
- { "name": "tread-inside30", "bone": "tread15", "attachment": "tread-inside" },
- { "name": "tread-inside6", "bone": "tread3", "attachment": "tread-inside" },
- { "name": "tread-inside58", "bone": "tread29", "attachment": "tread-inside" },
- { "name": "tread-inside32", "bone": "tread16", "attachment": "tread-inside" },
- { "name": "tread-inside8", "bone": "tread4", "attachment": "tread-inside" },
- { "name": "tread-inside60", "bone": "tread30", "attachment": "tread-inside" },
- { "name": "tread-inside34", "bone": "tread17", "attachment": "tread-inside" },
- { "name": "tread-inside10", "bone": "tread5", "attachment": "tread-inside" },
- { "name": "tread-inside62", "bone": "tread31", "attachment": "tread-inside" },
- { "name": "tread-inside36", "bone": "tread18", "attachment": "tread-inside" },
- { "name": "tread-inside12", "bone": "tread6", "attachment": "tread-inside" },
- { "name": "tread-inside64", "bone": "tread32", "attachment": "tread-inside" },
- { "name": "tread-inside38", "bone": "tread19", "attachment": "tread-inside" },
- { "name": "tread-inside14", "bone": "tread7", "attachment": "tread-inside" },
- { "name": "tread-inside66", "bone": "tread33", "attachment": "tread-inside" },
- { "name": "tread-inside40", "bone": "tread20", "attachment": "tread-inside" },
- { "name": "tread-inside16", "bone": "tread8", "attachment": "tread-inside" },
- { "name": "tread-inside68", "bone": "tread34", "attachment": "tread-inside" },
- { "name": "tread-inside70", "bone": "tread35", "attachment": "tread-inside" },
- { "name": "tread-inside72", "bone": "tread36", "attachment": "tread-inside" },
- { "name": "tread-inside42", "bone": "tread21", "attachment": "tread-inside" },
- { "name": "tread-inside18", "bone": "tread9", "attachment": "tread-inside" },
- { "name": "tread-inside44", "bone": "tread22", "attachment": "tread-inside" },
- { "name": "tread-inside20", "bone": "tread10", "attachment": "tread-inside" },
- { "name": "tread-inside46", "bone": "tread23", "attachment": "tread-inside" },
- { "name": "tread-inside22", "bone": "tread11", "attachment": "tread-inside" },
- { "name": "tread-inside48", "bone": "tread24", "attachment": "tread-inside" },
- { "name": "tread-inside24", "bone": "tread12", "attachment": "tread-inside" },
- { "name": "tread-inside50", "bone": "tread25", "attachment": "tread-inside" },
- { "name": "tread-inside26", "bone": "tread13", "attachment": "tread-inside" },
- { "name": "tread-inside52", "bone": "tread26", "attachment": "tread-inside" },
- { "name": "wheel-big", "bone": "wheel-big1", "color": "dbdbdbff", "attachment": "wheel-big" },
- { "name": "wheel-big2", "bone": "wheel-big2", "color": "dbdbdbff", "attachment": "wheel-big" },
- { "name": "wheel-mid", "bone": "wheel-mid1", "attachment": "wheel-mid" },
- { "name": "wheel-mid2", "bone": "wheel-mid2", "attachment": "wheel-mid" },
- { "name": "wheel-mid3", "bone": "wheel-mid3", "attachment": "wheel-mid" },
- { "name": "wheel-mid4", "bone": "wheel-mid4", "attachment": "wheel-mid" },
- { "name": "wheel-mid5", "bone": "wheel-mid5", "attachment": "wheel-mid" },
- { "name": "wheel-mid6", "bone": "wheel-mid6", "attachment": "wheel-mid" },
- { "name": "wheel-small", "bone": "wheel-small1", "attachment": "wheel-small" },
- { "name": "wheel-small2", "bone": "wheel-small2", "attachment": "wheel-small" },
- { "name": "wheel-small3", "bone": "wheel-small3", "attachment": "wheel-small" },
- { "name": "wheel-mid-overlay", "bone": "wheel-mid-root1", "color": "ffffffec", "attachment": "wheel-mid-overlay", "blend": "multiply" },
- { "name": "wheel-mid-overlay2", "bone": "wheel-mid-root2", "color": "ffffffec", "attachment": "wheel-mid-overlay", "blend": "multiply" },
- { "name": "wheel-mid-overlay3", "bone": "wheel-mid-root3", "color": "ffffffec", "attachment": "wheel-mid-overlay", "blend": "multiply" },
- { "name": "wheel-mid-overlay4", "bone": "wheel-mid-root4", "color": "ffffffec", "attachment": "wheel-mid-overlay", "blend": "multiply" },
- { "name": "wheel-mid-overlay5", "bone": "wheel-mid-root5", "color": "ffffffec", "attachment": "wheel-mid-overlay", "blend": "multiply" },
- { "name": "wheel-mid-overlay6", "bone": "wheel-mid-root6", "color": "ffffffec", "attachment": "wheel-mid-overlay", "blend": "multiply" },
- { "name": "wheel-big-overlay1", "bone": "wheel-big-root1", "color": "ffffffe9", "attachment": "wheel-big-overlay", "blend": "multiply" },
- { "name": "wheel-big-overlay2", "bone": "wheel-big-root2", "color": "ffffffe9", "attachment": "wheel-big-overlay", "blend": "multiply" },
- { "name": "treads-path", "bone": "tank-root", "attachment": "treads-path" },
- { "name": "tread", "bone": "tread", "attachment": "tread" },
- { "name": "tread27", "bone": "tread27", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread14", "bone": "tread14", "attachment": "tread" },
- { "name": "tread2", "bone": "tread2", "attachment": "tread" },
- { "name": "tread28", "bone": "tread28", "attachment": "tread" },
- { "name": "tread15", "bone": "tread15", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread3", "bone": "tread3", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread29", "bone": "tread29", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread16", "bone": "tread16", "attachment": "tread" },
- { "name": "tread4", "bone": "tread4", "attachment": "tread" },
- { "name": "tread30", "bone": "tread30", "attachment": "tread" },
- { "name": "tread17", "bone": "tread17", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread5", "bone": "tread5", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread31", "bone": "tread31", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread18", "bone": "tread18", "attachment": "tread" },
- { "name": "tread6", "bone": "tread6", "attachment": "tread" },
- { "name": "tread32", "bone": "tread32", "attachment": "tread" },
- { "name": "tread19", "bone": "tread19", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread7", "bone": "tread7", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread33", "bone": "tread33", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread20", "bone": "tread20", "attachment": "tread" },
- { "name": "tread8", "bone": "tread8", "attachment": "tread" },
- { "name": "tread34", "bone": "tread34", "attachment": "tread" },
- { "name": "tread35", "bone": "tread35", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread36", "bone": "tread36", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread21", "bone": "tread21", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread9", "bone": "tread9", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread22", "bone": "tread22", "attachment": "tread" },
- { "name": "tread10", "bone": "tread10", "attachment": "tread" },
- { "name": "tread23", "bone": "tread23", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread11", "bone": "tread11", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread24", "bone": "tread24", "attachment": "tread" },
- { "name": "tread12", "bone": "tread12", "attachment": "tread" },
- { "name": "tread25", "bone": "tread25", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread13", "bone": "tread13", "color": "adc9b8ff", "attachment": "tread" },
- { "name": "tread26", "bone": "tread26", "attachment": "tread" },
- { "name": "machinegun", "bone": "machinegun", "attachment": "machinegun" },
- { "name": "machinegun-mount", "bone": "machinegun-mount", "attachment": "machinegun-mount" },
- { "name": "tank-top", "bone": "tank-body", "attachment": "tank-top" },
- { "name": "guntower", "bone": "guntower", "attachment": "guntower" },
- { "name": "cannon", "bone": "cannon", "attachment": "cannon" },
- { "name": "cannon-connector", "bone": "cannon-connector", "attachment": "cannon-connector" },
- { "name": "antenna", "bone": "antenna-root", "attachment": "antenna" },
- { "name": "smoke-puff1-bg", "bone": "smoke1", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg13", "bone": "smoke13", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg14", "bone": "smoke14", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg15", "bone": "smoke15", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg16", "bone": "smoke16", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg17", "bone": "smoke17", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg18", "bone": "smoke18", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg20", "bone": "smoke20", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg21", "bone": "smoke21", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg22", "bone": "smoke22", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg23", "bone": "smoke23", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg24", "bone": "smoke24", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg25", "bone": "smoke25", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg26", "bone": "smoke26", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg27", "bone": "smoke27", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg2", "bone": "smoke2", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg5", "bone": "smoke5", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg6", "bone": "smoke6", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg7", "bone": "smoke7", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg10", "bone": "smoke10", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg11", "bone": "smoke11", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg12", "bone": "smoke12", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg8", "bone": "smoke8", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg9", "bone": "smoke9", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg4", "bone": "smoke4", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-bg3", "bone": "smoke3", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg", "bone": "smoke1", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg13", "bone": "smoke13", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg14", "bone": "smoke14", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg15", "bone": "smoke15", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg16", "bone": "smoke16", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg17", "bone": "smoke17", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg18", "bone": "smoke18", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg20", "bone": "smoke20", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg21", "bone": "smoke21", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg22", "bone": "smoke22", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg23", "bone": "smoke23", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg24", "bone": "smoke24", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg25", "bone": "smoke25", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg26", "bone": "smoke26", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg27", "bone": "smoke27", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg2", "bone": "smoke2", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg5", "bone": "smoke5", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg6", "bone": "smoke6", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg7", "bone": "smoke7", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg10", "bone": "smoke10", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg11", "bone": "smoke11", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg12", "bone": "smoke12", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg8", "bone": "smoke8", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg9", "bone": "smoke9", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg4", "bone": "smoke4", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-puff1-fg3", "bone": "smoke3", "color": "ecececff", "dark": "000000" },
- { "name": "smoke-glow", "bone": "smoke-glow", "blend": "additive" },
- { "name": "clipping", "bone": "tank-body", "attachment": "clipping" },
- { "name": "tank-glow", "bone": "tank-glow", "color": "fcdc6da7", "blend": "additive" }
- ],
- "ik": [
- {
- "name": "cannon-ik",
- "bones": [ "cannon" ],
- "target": "cannon-target"
- },
- {
- "name": "machinegun-ik",
- "order": 1,
- "bones": [ "machinegun" ],
- "target": "machinegun-target",
- "mix": 0
- }
- ],
- "transform": [
- {
- "name": "wheel-big-transform",
- "order": 8,
- "bones": [ "wheel-big2" ],
- "target": "wheel-big1",
- "rotation": 65.6,
- "mixX": 0,
- "mixScaleX": 0,
- "mixShearY": 0
- },
- {
- "name": "wheel-mid1-transform",
- "order": 3,
- "bones": [ "wheel-mid2", "wheel-mid4" ],
- "target": "wheel-mid1",
- "rotation": 93,
- "mixX": 0,
- "mixScaleX": 0,
- "mixShearY": 0
- },
- {
- "name": "wheel-mid2-transform",
- "order": 4,
- "bones": [ "wheel-mid3", "wheel-mid5" ],
- "target": "wheel-mid1",
- "rotation": -89,
- "mixX": 0,
- "mixScaleX": 0,
- "mixShearY": 0
- },
- {
- "name": "wheel-mid3-transform",
- "order": 5,
- "bones": [ "wheel-mid6" ],
- "target": "wheel-mid1",
- "rotation": -152.6,
- "mixX": 0,
- "mixScaleX": 0,
- "mixShearY": 0
- },
- {
- "name": "wheel-small1-transform",
- "order": 6,
- "bones": [ "wheel-small2" ],
- "target": "wheel-small1",
- "rotation": 87,
- "mixX": 0,
- "mixScaleX": 0,
- "mixShearY": 0
- },
- {
- "name": "wheel-small2-transform",
- "order": 7,
- "bones": [ "wheel-small3" ],
- "target": "wheel-small1",
- "rotation": 54.9,
- "mixX": 0,
- "mixScaleX": 0,
- "mixShearY": 0
- }
- ],
- "path": [
- {
- "name": "treads-path",
- "order": 2,
- "bones": [ "tread", "tread2", "tread3", "tread4", "tread5", "tread6", "tread7", "tread8", "tread9", "tread10", "tread11", "tread12", "tread13", "tread14", "tread15", "tread16", "tread17", "tread18", "tread19", "tread20", "tread21", "tread22", "tread23", "tread24", "tread25", "tread26", "tread27", "tread28", "tread29", "tread30", "tread31", "tread32", "tread33", "tread34", "tread35", "tread36" ],
- "target": "treads-path",
- "rotateMode": "chain"
- }
- ],
- "skins": [
- {
- "name": "default",
- "attachments": {
- "antenna": {
- "antenna": {
- "type": "mesh",
- "uvs": [ 0.64286, 0.07876, 0.65354, 0.1535, 0.66325, 0.22138, 0.67367, 0.29433, 0.68383, 0.36543, 0.6936, 0.43374, 0.70311, 0.5003, 0.71311, 0.57031, 0.72327, 0.64139, 0.73406, 0.71689, 0.74441, 0.7893, 0.75614, 0.87141, 0.76905, 0.94311, 1, 0.94311, 1, 1, 0, 1, 0, 0.94311, 0.20106, 0.94311, 0.20106, 0.87094, 0.21461, 0.78847, 0.22651, 0.71607, 0.23886, 0.64099, 0.25036, 0.57105, 0.26206, 0.49983, 0.27306, 0.43291, 0.2843, 0.36454, 0.29593, 0.29382, 0.308, 0.22038, 0.319, 0.15345, 0.33142, 0.07796, 0.34423, 0, 0.63161, 0 ],
- "triangles": [ 30, 31, 0, 29, 30, 0, 29, 0, 1, 28, 29, 1, 28, 1, 2, 27, 28, 2, 27, 2, 3, 26, 3, 4, 25, 26, 4, 25, 4, 5, 26, 27, 3, 24, 5, 6, 23, 24, 6, 7, 23, 6, 24, 25, 5, 22, 7, 8, 21, 22, 8, 21, 8, 9, 7, 22, 23, 20, 9, 10, 19, 20, 10, 20, 21, 9, 19, 10, 11, 18, 19, 11, 17, 18, 11, 17, 11, 12, 15, 16, 17, 12, 13, 14, 15, 17, 12, 14, 15, 12 ],
- "vertices": [ 2, 10, 65.38, -3.14, 0.3125, 11, 23.38, -3.14, 0.6875, 2, 10, 42.73, -3.38, 0.66667, 11, 0.73, -3.38, 0.33333, 2, 9, 64.17, -3.59, 0.33333, 10, 22.17, -3.59, 0.66667, 2, 9, 42.06, -3.82, 0.66667, 10, 0.06, -3.82, 0.33333, 2, 8, 62.52, -4.04, 0.33333, 9, 20.52, -4.04, 0.66667, 2, 8, 41.82, -4.26, 0.66667, 9, -0.18, -4.26, 0.33333, 2, 7, 63.65, -4.47, 0.33333, 8, 21.65, -4.47, 0.66667, 2, 7, 42.44, -4.69, 0.66667, 8, 0.44, -4.69, 0.33333, 2, 6, 62.9, -4.91, 0.33333, 7, 20.9, -4.91, 0.66667, 2, 6, 40.03, -5.15, 0.66667, 7, -1.97, -5.15, 0.33333, 2, 5, 5.38, 58.09, 0.4, 6, 18.09, -5.38, 0.6, 1, 5, 5.64, 33.21, 1, 1, 5, 5.92, 11.48, 1, 1, 5, 11, 11.48, 1, 1, 5, 11, -5.76, 1, 1, 5, -11, -5.76, 1, 1, 5, -11, 11.48, 1, 1, 5, -6.58, 11.48, 1, 1, 5, -6.58, 33.35, 1, 2, 5, -6.28, 58.34, 0.4, 6, 18.34, 6.28, 0.6, 2, 6, 40.27, 6.02, 0.66667, 7, -1.73, 6.02, 0.33333, 2, 6, 63.03, 5.75, 0.33333, 7, 21.03, 5.75, 0.66667, 2, 7, 42.22, 5.49, 0.66667, 8, 0.22, 5.49, 0.33333, 2, 7, 63.8, 5.23, 0.33333, 8, 21.8, 5.23, 0.66667, 2, 8, 42.07, 4.99, 0.66667, 9, 0.07, 4.99, 0.33333, 2, 8, 62.79, 4.75, 0.33333, 9, 20.79, 4.75, 0.66667, 2, 9, 42.22, 4.49, 0.66667, 10, 0.22, 4.49, 0.33333, 2, 9, 64.47, 4.22, 0.33333, 10, 22.47, 4.22, 0.66667, 2, 10, 42.75, 3.98, 0.66667, 11, 0.75, 3.98, 0.33333, 2, 10, 65.62, 3.71, 0.3125, 11, 23.62, 3.71, 0.6875, 1, 11, 47.24, 3.43, 1, 1, 11, 47.24, -2.9, 1 ],
- "hull": 32,
- "edges": [ 28, 30, 28, 26, 30, 32, 26, 24, 24, 22, 32, 34, 34, 24, 34, 36, 36, 22, 60, 62, 38, 36, 20, 22, 38, 20, 40, 38, 18, 20, 40, 18, 42, 40, 16, 18, 42, 16, 44, 42, 14, 16, 44, 14, 46, 44, 12, 14, 46, 12, 48, 46, 10, 12, 48, 10, 50, 48, 8, 10, 50, 8, 52, 50, 6, 8, 52, 6, 54, 52, 4, 6, 54, 4, 56, 54, 2, 4, 56, 2, 60, 58, 58, 56, 62, 0, 0, 2, 58, 0 ],
- "width": 22,
- "height": 303
- }
- },
- "bottom": {
- "tank-bottom": { "x": -16.67, "y": 9.89, "width": 1285, "height": 276 }
- },
- "cannon": {
- "cannon": { "x": 481.95, "y": -0.03, "rotation": 180, "width": 931, "height": 58 }
- },
- "cannon-connector": {
- "cannon-connector": {
- "type": "mesh",
- "uvs": [ 1, 0.03237, 1, 0.10603, 0.90988, 0.32859, 0.81975, 0.55116, 0.72963, 0.77373, 0.6395, 0.9963, 0.42157, 0.9963, 0.20364, 0.9963, 0, 0.85434, 0, 0.69902, 0.02268, 0.52884, 0, 0.31444, 0.21602, 0.12998, 0.43368, 0, 0.63547, 0.0037, 0.48408, 0.77059, 0.31496, 0.52497, 0.64133, 0.19648, 0.21516, 0.76766, 0.58346, 0.56471, 0.68444, 0.40146, 0.46758, 0.36649, 0.28935, 0.34604 ],
- "triangles": [ 7, 18, 6, 6, 18, 15, 7, 8, 18, 8, 9, 18, 18, 16, 15, 15, 16, 19, 9, 10, 18, 18, 10, 16, 16, 21, 19, 19, 21, 20, 10, 22, 16, 10, 11, 22, 16, 22, 21, 21, 17, 20, 21, 12, 13, 17, 13, 14, 17, 21, 13, 11, 12, 22, 21, 22, 12, 6, 15, 5, 5, 15, 4, 15, 19, 4, 4, 19, 3, 19, 20, 3, 3, 20, 2, 20, 17, 2, 2, 17, 1, 17, 14, 1, 14, 0, 1 ],
- "vertices": [ 1, 12, 35.91, 69.08, 1, 1, 12, 35.91, 59.14, 1, 1, 12, 25.82, 29.09, 1, 1, 12, 15.72, -0.95, 1, 1, 12, 5.63, -31, 1, 1, 12, -4.46, -61.05, 1, 2, 12, -28.87, -61.05, 0.33333, 14, 28.87, 61.03, 0.66667, 1, 14, 53.28, 61.02, 1, 1, 14, 76.09, 41.84, 1, 1, 14, 71.17, 21.63, 1, 1, 14, 72.83, -1.62, 1, 1, 14, 70.38, -29.12, 1, 1, 14, 50.67, -56.14, 1, 2, 12, -28.43, 74.38, 0.41, 14, 28.43, -74.4, 0.59, 2, 12, -4.92, 72.95, 0.52, 14, 4.92, -72.95, 0.48, 2, 12, -21.87, -30.58, 0.49, 14, 21.87, 30.57, 0.51, 1, 14, 40.81, -2.6, 1, 2, 12, -4.26, 46.93, 0.49, 14, 4.26, -46.93, 0.51, 1, 14, 51.99, 30.15, 1, 2, 12, -10.74, -2.78, 0.49, 14, 10.74, 2.78, 0.51, 2, 12, 0.57, 19.25, 0.49, 14, -0.57, -19.25, 0.51, 1, 14, 23.72, -23.99, 1, 1, 14, 43.68, -26.76, 1 ],
- "hull": 15,
- "edges": [ 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 0 ],
- "width": 112,
- "height": 135
- }
- },
- "clipping": {
- "clipping": {
- "type": "clipping",
- "end": "tank-glow",
- "vertexCount": 32,
- "vertices": [ 1, 3, 165.84, 455.67, 1, 1, 3, 114.21, 493.01, 1, 1, 3, -38.53, 492.23, 1, 1, 3, -193.4, 464.18, 1, 2, 3, -280.85, 415.48, 0.752, 14, 24.09, -73.93, 0.248, 1, 14, 70.34, -27.32, 1, 1, 14, 412.56, -22.02, 1, 1, 14, 412.82, -29.21, 1, 1, 14, 539.26, -29.34, 1, 1, 14, 539.52, -17.09, 1, 1, 14, 894.02, -16.8, 1, 1, 14, 902.99, -28.89, 1, 1, 14, 942.06, -28.58, 1, 1, 14, 948.14, -16.64, 1, 1, 14, 947.9, 14.29, 1, 1, 14, 539.3, 14.55, 1, 1, 14, 539, 29.22, 1, 1, 14, 412.51, 29.88, 1, 1, 14, 412.51, 21.73, 1, 1, 14, 74.24, 27.28, 1, 1, 3, -296.64, 281.2, 1, 1, 3, -316.06, 225.71, 1, 1, 3, -521.69, 190.74, 1, 1, 3, -610.03, 141.02, 1, 1, 3, -671.84, 87.13, 1, 1, 3, -652.23, -11.24, 1, 1, 3, -618.53, -71.36, 1, 1, 3, -478.77, -114.21, 1, 1, 3, -274.11, -116.26, 1, 1, 3, 1.38, -45.75, 1, 1, 3, 189.67, 148.78, 1, 1, 3, 215.75, 276.59, 1 ],
- "color": "ce3a3aff"
- }
- },
- "ground": {
- "ground": { "x": 837.96, "y": -172, "width": 1024, "height": 353 }
- },
- "ground2": {
- "ground": { "x": -179.89, "y": -172, "width": 1024, "height": 353 }
- },
- "ground3": {
- "ground": { "x": -1213.48, "y": -172, "scaleX": 1.035, "width": 1024, "height": 353 }
- },
- "ground4": {
- "ground": { "x": -2268.51, "y": -172, "scaleX": 1.04, "width": 1024, "height": 353 }
- },
- "ground5": {
- "ground": { "x": -3306.54, "y": -172, "width": 1024, "height": 353 }
- },
- "ground6": {
- "ground": { "x": -4322.71, "y": -172, "width": 1024, "height": 353 }
- },
- "ground7": {
- "ground": { "x": -5340.65, "y": -172, "width": 1024, "height": 353 }
- },
- "guntower": {
- "guntower": { "x": 77.22, "y": 122.59, "width": 730, "height": 289 }
- },
- "machinegun": {
- "machinegun": { "x": 44.85, "y": -5.72, "rotation": -180, "width": 331, "height": 57 }
- },
- "machinegun-mount": {
- "machinegun-mount": { "x": 47.42, "y": -1.54, "rotation": -90, "width": 72, "height": 96 }
- },
- "rock": {
- "rock": { "x": 25.24, "y": 27.35, "width": 580, "height": 127 }
- },
- "smoke-glow": {
- "smoke-glow": {
- "type": "mesh",
- "uvs": [ 1, 0.24906, 1, 0.51991, 1, 0.73165, 0.70776, 1, 0.49012, 1, 0.24373, 1, 0, 0.71158, 0, 0.50308, 0, 0.26235, 0.28107, 0, 0.47435, 0, 0.73345, 0, 0.48858, 0.51759 ],
- "triangles": [ 12, 7, 8, 12, 10, 11, 12, 11, 0, 9, 10, 12, 12, 8, 9, 12, 0, 1, 6, 7, 12, 12, 1, 2, 5, 6, 12, 3, 4, 12, 5, 12, 4, 2, 3, 12 ],
- "vertices": [ 49.99, 25.1, 50, -1.98, 50.01, -23.15, 20.79, -50, -0.98, -50, -25.62, -50.01, -50, -21.17, -50, -0.32, -50.01, 23.75, -21.9, 50, -2.58, 50, 23.33, 50.01, -1.14, -1.76 ],
- "hull": 12,
- "edges": [ 2, 24, 24, 14, 20, 24, 24, 8, 2, 0, 20, 22, 0, 22, 18, 20, 14, 16, 18, 16, 12, 14, 8, 10, 12, 10, 6, 8, 2, 4, 6, 4 ],
- "width": 100,
- "height": 100
- }
- },
- "smoke-puff1-bg": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg2": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg3": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg4": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg5": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg6": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg7": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg8": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg9": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg10": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg11": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg12": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg13": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg14": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg15": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg16": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg17": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg18": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg20": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg21": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg22": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg23": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg24": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg25": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg26": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-bg27": {
- "smoke-puff01-bg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- }
- },
- "smoke-puff1-fg": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg2": {
- "smoke-puff01-fg": {
- "x": -1.01,
- "y": -0.07,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.82,
- "y": -0.39,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.82,
- "y": -0.39,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.82,
- "y": -0.39,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg3": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.02,
- "y": -0.25,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1145,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.03,
- "y": -0.43,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg4": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.63,
- "y": -0.09,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.63,
- "y": -0.09,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.63,
- "y": -0.09,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg5": {
- "smoke-puff01-fg": {
- "x": -1.21,
- "y": -0.08,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.89,
- "y": -0.04,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.89,
- "y": -0.04,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.89,
- "y": -0.04,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg6": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.48,
- "y": -0.07,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.48,
- "y": -0.07,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.48,
- "y": -0.07,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg7": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -0.7,
- "y": -0.36,
- "scaleX": 0.1216,
- "scaleY": 0.1214,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -0.56,
- "y": -0.15,
- "scaleX": 0.1224,
- "scaleY": 0.1224,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -0.56,
- "y": -0.15,
- "scaleX": 0.1224,
- "scaleY": 0.1224,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg8": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -0.65,
- "y": 0.01,
- "scaleX": 0.1226,
- "scaleY": 0.1226,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -0.75,
- "y": -0.15,
- "scaleX": 0.1211,
- "scaleY": 0.1211,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -0.75,
- "y": -0.15,
- "scaleX": 0.1211,
- "scaleY": 0.1211,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg9": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.99,
- "y": -0.09,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.99,
- "y": -0.09,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -0.95,
- "y": -0.48,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg10": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.27,
- "y": -0.37,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.27,
- "y": -0.37,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.27,
- "y": -0.37,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg11": {
- "smoke-puff04-fg": {
- "x": -1.27,
- "y": -0.37,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg12": {
- "smoke-puff04-fg": {
- "x": -1.27,
- "y": -0.37,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg13": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg14": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg15": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg16": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg17": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg18": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg20": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg21": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg22": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg23": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg24": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg25": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg26": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "smoke-puff1-fg27": {
- "smoke-puff01-fg": {
- "x": -0.5,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 175,
- "height": 118
- },
- "smoke-puff02-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff03-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 184,
- "height": 123
- },
- "smoke-puff04-fg": {
- "x": -1.38,
- "y": -0.12,
- "scaleX": 0.1106,
- "scaleY": 0.1106,
- "rotation": 88.58,
- "width": 155,
- "height": 96
- }
- },
- "tank-body-shadow": {
- "tank-bottom-shadow": { "x": -11.44, "y": -42.89, "width": 1291, "height": 341 }
- },
- "tank-glow": {
- "smoke-glow": {
- "type": "mesh",
- "uvs": [ 1, 1, 0, 1, 1, 0 ],
- "triangles": [ 1, 2, 0 ],
- "vertices": [ 469.64, -738.08, -1660.32, -738.08, 469.64, 1391.88 ],
- "hull": 3,
- "edges": [ 0, 2, 0, 4, 2, 4 ],
- "width": 100,
- "height": 100
- }
- },
- "tank-top": {
- "tank-top": { "x": 6.8, "y": 168.71, "width": 1407, "height": 222 }
- },
- "tread": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread-inside1": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside2": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside3": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside4": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside5": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside6": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside7": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside8": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside9": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside10": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside11": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside12": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside13": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside14": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside15": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside16": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside17": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside18": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside19": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside20": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside21": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside22": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside23": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside24": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside25": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside26": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside27": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside28": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside29": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside30": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside31": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside32": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside33": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside34": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside35": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside36": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside37": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside38": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside39": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside40": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside41": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside42": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside43": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside44": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside45": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside46": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside47": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside48": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside49": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside50": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside51": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside52": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside53": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside54": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside55": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside56": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside57": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside58": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside59": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside60": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside61": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside62": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside63": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside64": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside65": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside66": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside67": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside68": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside69": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside70": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside71": {
- "tread-inside": { "x": 60.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread-inside72": {
- "tread-inside": { "x": 20.1, "y": 12.56, "rotation": -180, "width": 25, "height": 28 }
- },
- "tread2": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread3": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread4": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread5": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread6": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread7": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread8": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread9": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread10": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread11": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread12": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread13": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread14": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread15": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread16": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread17": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread18": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread19": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread20": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread21": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread22": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread23": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread24": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread25": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread26": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread27": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread28": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread29": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread30": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread31": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread32": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread33": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread34": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread35": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "tread36": {
- "tread": { "x": 45.47, "y": -8.28, "rotation": -180, "width": 96, "height": 30 }
- },
- "treads-path": {
- "treads-path": {
- "type": "path",
- "closed": true,
- "lengths": [ 185.21, 354.53, 478.3, 608.52, 786, 1058.49, 1138.97, 1223.96, 1303.87, 1388.23, 1471.11, 1551.64, 1633.55, 1713.27, 1799.89, 1882.28, 2164.2, 2326.85, 2444.07, 2584.91, 2754.15, 2940.62 ],
- "vertexCount": 66,
- "vertices": [ 1, 110, 11.23, 41.87, 1, 1, 110, 0.79, 41.95, 1, 1, 110, -34.72, 42.24, 1, 1, 56, -104.22, 0.41, 1, 1, 56, 0.07, 0.55, 1, 1, 56, 68.8, 0.65, 1, 1, 109, 20.5, 43.47, 1, 1, 109, 1.14, 40.82, 1, 1, 109, -27.38, 36.85, 1, 1, 93, 147.07, 105.01, 1, 1, 93, 96.21, 96.63, 1, 1, 93, 43.87, 87.72, 1, 1, 93, 16.18, 103.35, 1, 1, 93, -33.67, 94.21, 1, 1, 93, -99.36, 81.25, 1, 1, 93, -122.05, -1.7, 1, 1, 93, -83.58, -47.93, 1, 1, 93, -33.53, -109.37, 1, 1, 97, -83.57, -66.1, 1, 1, 97, -2.17, -67.9, 1, 2, 97, 56.68, -41.49, 0.68, 51, -24.31, -41.49, 0.32, 1, 51, -26.59, 16.7, 1, 1, 51, -2.69, 16.7, 1, 1, 51, 13.52, 16.7, 1, 2, 98, -52.42, -46.51, 0.744, 51, 30.21, -46.52, 0.256, 1, 98, -0.32, -68.92, 1, 2, 98, 52.09, -44.73, 0.712, 52, -28.91, -44.73, 0.288, 1, 52, -22.81, 16.24, 1, 1, 52, -1.42, 16.24, 1, 1, 52, 20.48, 16.24, 1, 2, 99, -47.21, -47.46, 0.744, 52, 36.01, -47.46, 0.256, 1, 99, -0.29, -69.66, 1, 2, 99, 45.24, -47.26, 0.736, 53, -37.49, -47.26, 0.264, 1, 53, -23.76, 15.28, 1, 1, 53, -0.14, 15.28, 1, 1, 53, 24.45, 15.28, 1, 2, 100, -47.37, -48.7, 0.744, 53, 33.53, -48.7, 0.256, 1, 100, -0.5, -70.4, 1, 2, 100, 49.09, -48.34, 0.744, 54, -33.58, -48.34, 0.256, 1, 54, -20.89, 15.84, 1, 1, 54, -1.26, 15.84, 1, 1, 54, 15.78, 15.84, 1, 2, 101, -52.5, -48.21, 0.76, 54, 28.45, -48.22, 0.24, 1, 101, -2.5, -68.92, 1, 2, 101, 55.72, -47.82, 0.752, 55, -28.88, -47.83, 0.248, 1, 55, -21.64, 16.7, 1, 1, 55, -0.48, 16.7, 1, 1, 55, 20.74, 16.7, 1, 2, 102, -53.65, -48.9, 0.76, 55, 25.97, -48.9, 0.24, 1, 102, 2.28, -69.66, 1, 1, 102, 44.95, -69.74, 1, 1, 94, 76.03, -85.61, 1, 1, 94, 93.58, -42.24, 1, 1, 94, 118.67, 19.75, 1, 1, 94, 78.59, 76.62, 1, 1, 94, 37.27, 95.07, 1, 1, 94, 31.45, 97.67, 1, 1, 94, -15.16, 87.48, 1, 1, 94, -79.8, 92.52, 1, 1, 94, -119.06, 95.58, 1, 1, 111, 47.07, 42.29, 1, 1, 111, 0.25, 42.75, 1, 1, 111, -29.64, 43.29, 1, 1, 57, -86.65, 1.35, 1, 1, 57, 0.49, 0.26, 1, 1, 57, 92.42, -0.9, 1 ],
- "color": "ff8819ff"
- }
- },
- "wheel-big": {
- "wheel-big": { "width": 191, "height": 191 }
- },
- "wheel-big-overlay1": {
- "wheel-big-overlay": { "width": 186, "height": 186 }
- },
- "wheel-big-overlay2": {
- "wheel-big-overlay": { "width": 186, "height": 186 }
- },
- "wheel-big2": {
- "wheel-big": { "width": 191, "height": 191 }
- },
- "wheel-mid": {
- "wheel-mid": { "width": 136, "height": 136 }
- },
- "wheel-mid-overlay": {
- "wheel-mid-overlay": { "width": 136, "height": 136 }
- },
- "wheel-mid-overlay2": {
- "wheel-mid-overlay": { "width": 136, "height": 136 }
- },
- "wheel-mid-overlay3": {
- "wheel-mid-overlay": { "width": 136, "height": 136 }
- },
- "wheel-mid-overlay4": {
- "wheel-mid-overlay": { "width": 136, "height": 136 }
- },
- "wheel-mid-overlay5": {
- "wheel-mid-overlay": { "width": 136, "height": 136 }
- },
- "wheel-mid-overlay6": {
- "wheel-mid-overlay": { "width": 136, "height": 136 }
- },
- "wheel-mid2": {
- "wheel-mid": { "width": 136, "height": 136 }
- },
- "wheel-mid3": {
- "wheel-mid": { "width": 136, "height": 136 }
- },
- "wheel-mid4": {
- "wheel-mid": { "width": 136, "height": 136 }
- },
- "wheel-mid5": {
- "wheel-mid": { "width": 136, "height": 136 }
- },
- "wheel-mid6": {
- "wheel-mid": { "width": 136, "height": 136 }
- },
- "wheel-small": {
- "wheel-small": { "width": 71, "height": 71 }
- },
- "wheel-small2": {
- "wheel-small": { "width": 71, "height": 71 }
- },
- "wheel-small3": {
- "wheel-small": { "width": 71, "height": 71 }
- }
- }
- }
- ],
- "animations": {
- "drive": {
- "bones": {
- "tank-root": {
- "rotate": [
- { "time": 2 },
- { "time": 2.0667, "value": 1.99 },
- { "time": 2.5, "value": -15.63 },
- {
- "time": 2.6667,
- "value": -10.37,
- "curve": [ 2.718, -10.37, 2.78, -8.34 ]
- },
- {
- "time": 2.8333,
- "value": -6.13,
- "curve": [ 2.909, -2.8, 2.974, 0.8 ]
- },
- { "time": 3, "value": 1.84 },
- { "time": 3.0667, "value": 5.32 },
- { "time": 3.1667, "value": 10.99 },
- { "time": 3.2333, "value": 9.73 },
- {
- "time": 3.4333,
- "value": -4.52,
- "curve": [ 3.474, -3.99, 3.608, 0.01 ]
- },
- { "time": 3.6667, "value": 0.01 }
- ],
- "translate": [
- {
- "curve": [ 1.019, 0, 1.608, -582.83, 1.019, 0, 1.608, 0 ]
- },
- { "time": 2, "x": -1209.75 },
- { "time": 2.3333, "x": -1652.84, "y": 26.05 },
- { "time": 2.5, "x": -1877.69, "y": 71.5 },
- { "time": 2.6667, "x": -2053.37, "y": 100.44 },
- { "time": 2.8333, "x": -2183.86, "y": 97.42 },
- { "time": 3, "x": -2312.32, "y": 74.12 },
- { "time": 3.0667, "x": -2340.68, "y": 45.94 },
- { "time": 3.1333, "x": -2403.04, "y": 17.04 },
- { "time": 3.1667, "x": -2439.84, "y": 5.45 },
- { "time": 3.2333, "x": -2523.34, "y": -3.31 },
- { "time": 3.4333, "x": -2728.27, "y": -12.73 },
- {
- "time": 3.5,
- "x": -2795.65,
- "y": -6.14,
- "curve": [ 3.538, -2829.89, 3.583, -2878.59, 3.538, -4.93, 3.583, -3.21 ]
- },
- {
- "time": 3.6333,
- "x": -2938.53,
- "y": -1.09,
- "curve": [ 3.89, -3218.84, 4.404, -3972.02, 3.89, -0.79, 4.404, 0 ]
- },
- { "time": 4.8333, "x": -3972.02 },
- { "time": 5, "x": -3991.31 },
- { "time": 5.3667, "x": -3973.94 }
- ]
- },
- "tread-collider1": {
- "translate": [
- { "time": 2 },
- { "time": 2.0667, "y": 9.99 },
- { "time": 2.1667, "y": 37.69 },
- { "time": 2.3333, "y": 53.45 },
- { "time": 2.5, "y": 30.97 },
- { "time": 2.6667, "y": -2.89 },
- { "time": 2.8333, "y": -0.71 },
- { "time": 3.0667, "y": -13.64 },
- { "time": 3.1667, "y": 59.3 },
- { "time": 3.2333, "y": 48.2 },
- { "time": 3.4333, "y": -11.27 },
- { "time": 3.6333, "y": 4.15 }
- ]
- },
- "tread-collider2": {
- "translate": [
- { "time": 2 },
- { "time": 2.0667, "y": -2.83 },
- { "time": 2.1667, "y": -17.44 },
- { "time": 2.3333, "y": 46.07 },
- { "time": 2.5, "y": 19.45 },
- { "time": 2.6667, "y": 13.46 },
- { "time": 2.8333, "y": -1.92, "curve": "stepped" },
- { "time": 2.9667, "y": -1.92 },
- { "time": 3, "y": -13.17 },
- { "time": 3.0667, "y": -23.25 },
- { "time": 3.1667, "y": 28.13 },
- { "time": 3.2333, "y": 25.63 },
- { "time": 3.4333, "y": -1.52 },
- { "time": 3.6333, "y": 1.15 }
- ]
- },
- "tread-collider3": {
- "translate": [
- { "time": 2 },
- { "time": 2.0667, "y": -7.76 },
- { "time": 2.1667, "y": -16.61 },
- { "time": 2.5, "y": 29.05 },
- { "time": 2.6667, "y": 30.12 },
- { "time": 2.8333, "y": 5.3 },
- { "time": 3, "y": -0.38 },
- { "time": 3.1667, "y": 2.6 },
- { "time": 3.4333, "y": 15.41 },
- { "time": 3.6333, "y": 1.44 }
- ]
- },
- "tread-collider4": {
- "translate": [
- { "time": 2 },
- { "time": 2.1667, "y": -6.72 },
- { "time": 2.3333, "y": -0.92 },
- { "time": 2.5, "y": 18.37 },
- { "time": 2.6667, "y": 38.77 },
- { "time": 2.8333, "y": 30.6 },
- { "time": 3.1667, "y": 12.61 },
- { "time": 3.2333, "y": -16 },
- { "time": 3.4333, "y": 25.62 },
- { "time": 3.6333, "y": -0.68 }
- ]
- },
- "tread-collider5": {
- "translate": [
- { "time": 2 },
- { "time": 2.1667, "y": 3.35 },
- { "time": 2.3333, "y": 22.17 },
- { "time": 2.6667, "y": 13.35 },
- { "time": 2.8333, "y": 39 },
- { "time": 3, "y": 39.88 },
- { "time": 3.1667, "y": 26.57 },
- { "time": 3.2333, "y": -10.15 },
- { "time": 3.4333, "y": 35.98 },
- { "time": 3.6333, "y": -1.36 }
- ]
- },
- "wheel-mid-root6": {
- "translate": [
- { "time": 2 },
- { "time": 2.1667, "y": 5.61 },
- { "time": 2.3333, "y": 27.21 },
- { "time": 2.5, "y": 30.28 },
- { "time": 2.6667, "y": -2.81 },
- { "time": 2.8333, "y": 19.59 },
- { "time": 3, "y": 29.11 },
- { "time": 3.1667, "y": 32.55 },
- { "time": 3.2333, "y": 3.55 },
- { "time": 3.4333, "y": 40.54 },
- { "time": 3.6333 }
- ]
- },
- "wheel-mid-root5": {
- "translate": [
- { "time": 2 },
- { "time": 2.1667, "y": -7.46 },
- { "time": 2.3333, "y": 9.53 },
- { "time": 2.6667, "y": 36.78 },
- { "time": 2.8333, "y": 46.11 },
- { "time": 3.1667, "y": 7.55 },
- { "time": 3.2333, "y": -16.28 },
- { "time": 3.4333, "y": 26.21 },
- { "time": 3.6333 }
- ]
- },
- "wheel-mid-root4": {
- "translate": [
- { "time": 2 },
- { "time": 2.1667, "y": -13.98 },
- { "time": 2.3333, "y": -8.26 },
- { "time": 2.5, "y": 24.27 },
- { "time": 2.6667, "y": 34.42 },
- { "time": 2.8333, "y": 8.88 },
- { "time": 3.1667, "y": 10.32 },
- { "time": 3.2333, "y": -7.63 },
- { "time": 3.4333, "y": 19.69 },
- { "time": 3.6333 }
- ]
- },
- "wheel-mid-root3": {
- "translate": [
- { "time": 2 },
- { "time": 2.1667, "y": -21.14 },
- { "time": 2.3333, "y": 22.83 },
- { "time": 2.5, "y": 23.34 },
- { "time": 2.6667, "y": 18.07 },
- { "time": 2.8333, "y": 1.2 },
- { "time": 3.0667, "y": -13.36 },
- { "time": 3.1667, "y": 15.48 },
- { "time": 3.2333, "y": 13.34 },
- { "time": 3.4333, "y": 6.4 },
- { "time": 3.6333 }
- ]
- },
- "wheel-mid-root2": {
- "translate": [
- { "time": 2 },
- { "time": 2.0667, "y": -4.39 },
- { "time": 2.1667, "y": 3.13 },
- { "time": 2.3333, "y": 53.56 },
- { "time": 2.5, "y": 16.65 },
- { "time": 2.6667, "y": 8.39 },
- { "time": 3.0667, "y": -19.16 },
- { "time": 3.1667, "y": 43.25 },
- { "time": 3.2333, "y": 39.04 },
- { "time": 3.4333, "y": -8.61 },
- { "time": 3.6333 }
- ]
- },
- "wheel-mid-root1": {
- "translate": [
- { "time": 2 },
- { "time": 2.0333, "y": 22.64 },
- { "time": 2.0667, "y": 53.65 },
- { "time": 2.1667, "y": 71.18 },
- { "time": 2.5, "y": 46.83 },
- { "time": 2.6667, "y": 8.38 },
- { "time": 3.0667, "y": -10.03 },
- { "time": 3.1667, "y": 72.71 },
- { "time": 3.2333, "y": 64.74 },
- { "time": 3.4333, "y": -17.65 },
- { "time": 3.6333 }
- ]
- },
- "tank-body": {
- "rotate": [
- {
- "curve": [ 0.208, 0, 0.625, -4.39 ]
- },
- { "time": 0.8333, "value": -4.39 },
- { "time": 2 },
- { "time": 2.1667, "value": -1.34 },
- { "time": 2.3333, "value": -6.23 },
- { "time": 2.5, "value": -5.45 },
- { "time": 2.9667, "value": -5.07 },
- { "time": 3.0667, "value": -2.39 },
- { "time": 3.1667, "value": -0.98 },
- { "time": 3.2333, "value": -1.1 },
- {
- "time": 3.4,
- "value": 0.43,
- "curve": [ 3.433, 0.43, 3.483, -1.56 ]
- },
- {
- "time": 3.5333,
- "value": -3.55,
- "curve": [ 3.675, -3.47, 3.754, 1.49 ]
- },
- { "time": 3.8333, "value": 1.93 },
- { "time": 4, "value": 0.48 },
- {
- "time": 4.3333,
- "curve": [ 4.476, 0.59, 4.833, 3.8 ]
- },
- {
- "time": 5,
- "value": 3.8,
- "curve": [ 5.286, 3.8, 5.35, -2.17 ]
- },
- { "time": 5.4667, "value": -2.17 },
- { "time": 5.6, "value": -0.61 }
- ]
- },
- "wheel-big-root1": {
- "translate": [
- { "time": 2 },
- { "time": 2.0667, "y": 20.07 },
- { "time": 2.3333, "y": 67.24 },
- { "time": 2.6667, "y": 21.04 },
- { "time": 3, "y": 10.28 },
- { "time": 3.1, "y": 11.28 },
- { "time": 3.1667, "y": 29.43 },
- { "time": 3.2333, "y": 35.31 },
- { "time": 3.4333, "y": 18.38 },
- { "time": 3.5 }
- ]
- },
- "tank-treads": {
- "rotate": [
- {},
- { "time": 0.8333, "value": -2.4 },
- { "time": 2 },
- { "time": 2.0667, "value": 1.72 },
- { "time": 2.4333, "value": -0.37 },
- { "time": 2.8 },
- { "time": 3, "value": -1.41 },
- { "time": 3.1667, "value": 0.54 },
- {
- "time": 3.2667,
- "value": 2.22,
- "curve": [ 3.348, 2.22, 3.392, -1.31 ]
- },
- { "time": 3.4333, "value": -1.31 },
- { "time": 3.7333, "value": -1.14 },
- {
- "time": 4.3333,
- "curve": [ 4.476, 0.35, 4.833, 2.24 ]
- },
- {
- "time": 5,
- "value": 2.24,
- "curve": [ 5.286, 2.24, 5.35, 0 ]
- },
- { "time": 5.4667 }
- ]
- },
- "cannon-target": {
- "translate": [
- {},
- { "time": 0.8333, "y": 121.95 },
- { "time": 2, "y": 45.73 }
- ]
- },
- "wheel-big-root2": {
- "translate": [
- { "time": 3.4333, "y": 13.01 }
- ]
- },
- "wheel-big1": {
- "rotate": [
- {
- "curve": [ 0.51, 0, 0.804, 57.81 ]
- },
- { "time": 1, "value": 120 },
- { "time": 1.2667, "value": 240 },
- { "time": 1.5333, "value": 360 },
- { "time": 1.7667, "value": 480 },
- { "time": 2.0333, "value": 600 },
- { "time": 2.2, "value": 720 },
- { "time": 2.4, "value": 840 },
- { "time": 2.5667, "value": 960 },
- { "time": 2.7333, "value": 1080 },
- { "time": 2.9333, "value": 1200 },
- { "time": 3.1333, "value": 1320 },
- { "time": 3.3333, "value": 1440 },
- { "time": 3.5, "value": 1560 },
- { "time": 3.6667, "value": 1680 },
- { "time": 3.8667, "value": 1800 },
- { "time": 4.0667, "value": 1920 },
- { "time": 4.2667, "value": 2040 },
- {
- "time": 4.5,
- "value": 2160,
- "curve": [ 4.563, 2194.34, 4.695, 2225.3 ]
- },
- { "time": 4.8333, "value": 2247.67 }
- ]
- },
- "wheel-mid1": {
- "rotate": [
- {
- "curve": [ 0.459, 0, 0.724, 57.81 ]
- },
- { "time": 0.9, "value": 120 },
- { "time": 1.1667, "value": 240 },
- { "time": 1.4333, "value": 360 },
- { "time": 1.6333, "value": 480 },
- { "time": 1.8333, "value": 600 },
- { "time": 2, "value": 720 },
- { "time": 2.1333, "value": 840 },
- { "time": 2.2667, "value": 960 },
- { "time": 2.4, "value": 1080 },
- { "time": 2.5333, "value": 1200 },
- { "time": 2.6667, "value": 1320 },
- { "time": 2.8333, "value": 1440 },
- { "time": 2.9667, "value": 1560 },
- { "time": 3.1, "value": 1680 },
- { "time": 3.2333, "value": 1800 },
- { "time": 3.3667, "value": 1920 },
- { "time": 3.5, "value": 2040 },
- { "time": 3.6333, "value": 2160 },
- { "time": 3.7667, "value": 2280 },
- { "time": 3.9, "value": 2400 },
- { "time": 4.0333, "value": 2520 },
- { "time": 4.1667, "value": 2640 },
- { "time": 4.3, "value": 2760 },
- {
- "time": 4.4667,
- "value": 2880,
- "curve": [ 4.538, 2949.2, 4.742, 3000 ]
- },
- { "time": 4.8333, "value": 3000 }
- ]
- },
- "wheel-small1": {
- "rotate": [
- {
- "curve": [ 0.34, 0, 0.536, 57.81 ]
- },
- { "time": 0.6667, "value": 120 },
- { "time": 0.8667, "value": 240 },
- { "time": 1.0333, "value": 360 },
- { "time": 1.1667, "value": 480 },
- { "time": 1.3, "value": 600 },
- { "time": 1.4333, "value": 720 },
- { "time": 1.5333, "value": 840 },
- { "time": 1.6333, "value": 960 },
- { "time": 1.7333, "value": 1080 },
- { "time": 1.8333, "value": 1200 },
- { "time": 1.9333, "value": 1320 },
- { "time": 2.0333, "value": 1440 },
- { "time": 2.1333, "value": 1560 },
- { "time": 2.2333, "value": 1680 },
- { "time": 2.3333, "value": 1800 },
- { "time": 2.4333, "value": 1920 },
- { "time": 2.5333, "value": 2040 },
- { "time": 2.6333, "value": 2160 },
- { "time": 2.7333, "value": 2280 },
- { "time": 2.8333, "value": 2400 },
- { "time": 2.9333, "value": 2520 },
- { "time": 3.0333, "value": 2640 },
- { "time": 3.1333, "value": 2760 },
- { "time": 3.2333, "value": 2880 },
- { "time": 3.3333, "value": 3000 },
- { "time": 3.4333, "value": 3120 },
- { "time": 3.5333, "value": 3240 },
- { "time": 3.6333, "value": 3360 },
- { "time": 3.7333, "value": 3480 },
- { "time": 3.8333, "value": 3600 },
- { "time": 3.9333, "value": 3720 },
- { "time": 4.0333, "value": 3840 },
- { "time": 4.1333, "value": 3960 },
- { "time": 4.2333, "value": 4080 },
- { "time": 4.3333, "value": 4200 },
- { "time": 4.4333, "value": 4320 },
- { "time": 4.6667, "value": 4440 },
- { "time": 4.9, "value": 4490 }
- ]
- },
- "wheel-small-root1": {
- "translate": [
- { "time": 2 },
- { "time": 2.1333, "y": 12.37 },
- { "time": 2.4667, "y": 32.37 },
- { "time": 2.7333, "y": -5.27 },
- { "time": 2.9667, "y": 14.31 },
- { "time": 3.1667, "y": 19.54 },
- { "time": 3.4667, "y": 7.5 },
- { "time": 4.3667, "y": -2.4 }
- ]
- },
- "wheel-small-root2": {
- "translate": [
- { "time": 2 },
- { "time": 2.9, "y": 5.26 },
- { "time": 3.1667, "y": 10.67 },
- { "time": 3.4667, "y": -4.71 }
- ]
- },
- "wheel-small-root3": {
- "translate": [
- { "time": 2 },
- { "time": 2.4667, "y": -10.56 },
- { "time": 2.9, "y": -16.08 },
- { "time": 3.1667, "y": 10.12 },
- { "time": 3.4667, "y": 4.1 },
- { "time": 4.3667, "y": -0.03 }
- ]
- },
- "antenna1": {
- "rotate": [
- {},
- {
- "time": 0.3333,
- "value": 1.05,
- "curve": [ 0.731, 1.05, 1.008, -4.55 ]
- },
- {
- "time": 1.2333,
- "value": -4.55,
- "curve": [ 1.35, -4.55, 1.583, 0.53 ]
- },
- { "time": 1.7, "value": 0.53 },
- { "time": 2, "value": -2.13 },
- { "time": 2.2, "value": 4.71 },
- { "time": 2.3667, "value": -7.26 },
- { "time": 2.5667, "value": 2.26 },
- { "time": 2.7333, "value": -3.39 },
- { "time": 3.0667, "value": -5.53 },
- { "time": 3.2333, "value": 7.78 },
- { "time": 3.4667, "value": -5.99 },
- { "time": 3.7, "value": 3.11 },
- { "time": 3.9, "value": -3.05 },
- { "time": 4.1, "value": 0.31 },
- { "time": 4.3, "value": -3.06 },
- { "time": 4.5333, "value": 0.36 },
- {
- "time": 4.8667,
- "value": 4.94,
- "curve": [ 4.925, 4.94, 5.042, -2.38 ]
- },
- { "time": 5.1, "value": -2.38 },
- { "time": 5.2667, "value": 3.65 },
- { "time": 5.4, "value": -3.04 },
- { "time": 5.5, "value": 1.49 },
- { "time": 5.6, "value": -1.86 },
- { "time": 5.7, "value": 0.42 }
- ]
- },
- "antenna2": {
- "rotate": [
- {},
- {
- "time": 0.3333,
- "value": 1.05,
- "curve": [ 0.731, 1.05, 1.008, -4.55 ]
- },
- {
- "time": 1.2333,
- "value": -4.55,
- "curve": [ 1.35, -4.55, 1.583, 0.53 ]
- },
- { "time": 1.7, "value": 0.53 },
- { "time": 2, "value": -2.13 },
- { "time": 2.2, "value": 4.71 },
- { "time": 2.3667, "value": -7.26 },
- { "time": 2.5667, "value": 2.26 },
- { "time": 2.7333, "value": -3.39 },
- { "time": 3.0667, "value": -5.53 },
- { "time": 3.2333, "value": 7.78 },
- { "time": 3.4667, "value": -5.99 },
- { "time": 3.7, "value": 3.11 },
- { "time": 3.9, "value": -3.05 },
- { "time": 4.1, "value": 0.31 },
- { "time": 4.3, "value": -3.06 },
- { "time": 4.5333, "value": 0.36 },
- {
- "time": 4.8667,
- "value": 4.94,
- "curve": [ 4.925, 4.94, 5.042, -2.38 ]
- },
- { "time": 5.1, "value": -2.38 },
- { "time": 5.2667, "value": 3.65 },
- { "time": 5.4, "value": -3.04 },
- { "time": 5.5, "value": 1.49 },
- { "time": 5.6, "value": -1.86 },
- { "time": 5.7, "value": 0.42 }
- ]
- },
- "antenna3": {
- "rotate": [
- {},
- {
- "time": 0.3333,
- "value": 1.05,
- "curve": [ 0.731, 1.05, 1.008, -4.55 ]
- },
- {
- "time": 1.2333,
- "value": -4.55,
- "curve": [ 1.35, -4.55, 1.583, 0.53 ]
- },
- { "time": 1.7, "value": 0.53 },
- { "time": 2, "value": -2.13 },
- { "time": 2.2, "value": 4.71 },
- { "time": 2.3667, "value": -7.26 },
- { "time": 2.5667, "value": 2.26 },
- { "time": 2.7333, "value": -3.39 },
- { "time": 3.0667, "value": -5.53 },
- { "time": 3.2333, "value": 7.78 },
- { "time": 3.4667, "value": -5.99 },
- { "time": 3.7, "value": 3.11 },
- { "time": 3.9, "value": -3.05 },
- { "time": 4.1, "value": 0.31 },
- { "time": 4.3, "value": -3.06 },
- { "time": 4.5333, "value": 0.36 },
- {
- "time": 4.8667,
- "value": 4.94,
- "curve": [ 4.925, 4.94, 5.042, -2.38 ]
- },
- { "time": 5.1, "value": -2.38 },
- { "time": 5.2667, "value": 3.65 },
- { "time": 5.4, "value": -3.04 },
- { "time": 5.5, "value": 1.49 },
- { "time": 5.6, "value": -1.86 },
- { "time": 5.7, "value": 0.42 }
- ]
- },
- "antenna4": {
- "rotate": [
- {},
- {
- "time": 0.3333,
- "value": 1.05,
- "curve": [ 0.731, 1.05, 1.008, -4.55 ]
- },
- {
- "time": 1.2333,
- "value": -4.55,
- "curve": [ 1.35, -4.55, 1.583, 0.53 ]
- },
- { "time": 1.7, "value": 0.53 },
- { "time": 2, "value": -2.13 },
- { "time": 2.2, "value": 4.71 },
- { "time": 2.3667, "value": -7.26 },
- { "time": 2.5667, "value": 2.26 },
- { "time": 2.7333, "value": -3.39 },
- { "time": 3.0667, "value": -5.53 },
- { "time": 3.2333, "value": 7.78 },
- { "time": 3.4667, "value": -5.99 },
- { "time": 3.7, "value": 3.11 },
- { "time": 3.9, "value": -3.05 },
- { "time": 4.1, "value": 0.31 },
- { "time": 4.3, "value": -3.06 },
- { "time": 4.5333, "value": 0.36 },
- {
- "time": 4.8667,
- "value": 4.94,
- "curve": [ 4.925, 4.94, 5.042, -2.38 ]
- },
- { "time": 5.1, "value": -2.38 },
- { "time": 5.2667, "value": 3.65 },
- { "time": 5.4, "value": -3.04 },
- { "time": 5.5, "value": 1.49 },
- { "time": 5.6, "value": -1.86 },
- { "time": 5.7, "value": 0.42 }
- ]
- },
- "antenna5": {
- "rotate": [
- {},
- {
- "time": 0.3333,
- "value": 1.05,
- "curve": [ 0.731, 1.05, 1.008, -4.55 ]
- },
- {
- "time": 1.2333,
- "value": -4.55,
- "curve": [ 1.35, -4.55, 1.583, 0.53 ]
- },
- { "time": 1.7, "value": 0.53 },
- { "time": 2, "value": -2.13 },
- { "time": 2.2, "value": 4.71 },
- { "time": 2.3667, "value": -7.26 },
- { "time": 2.5667, "value": 2.26 },
- { "time": 2.7333, "value": -3.39 },
- { "time": 3.0667, "value": -5.53 },
- { "time": 3.2333, "value": 7.78 },
- { "time": 3.4667, "value": -5.99 },
- { "time": 3.7, "value": 3.11 },
- { "time": 3.9, "value": -3.05 },
- { "time": 4.1, "value": 0.31 },
- { "time": 4.3, "value": -3.06 },
- { "time": 4.5333, "value": 0.36 },
- {
- "time": 4.8667,
- "value": 4.94,
- "curve": [ 4.925, 4.94, 5.042, -2.38 ]
- },
- { "time": 5.1, "value": -2.38 },
- { "time": 5.2667, "value": 3.65 },
- { "time": 5.4, "value": -3.04 },
- { "time": 5.5, "value": 1.49 },
- { "time": 5.6, "value": -1.86 },
- { "time": 5.7, "value": 0.42 }
- ]
- },
- "antenna6": {
- "rotate": [
- {},
- {
- "time": 0.3333,
- "value": 1.05,
- "curve": [ 0.731, 1.05, 1.008, -4.55 ]
- },
- {
- "time": 1.2333,
- "value": -4.55,
- "curve": [ 1.35, -4.55, 1.583, 0.53 ]
- },
- { "time": 1.7, "value": 0.53 },
- { "time": 2, "value": -2.13 },
- { "time": 2.2, "value": 4.71 },
- { "time": 2.3667, "value": -7.26 },
- { "time": 2.5667, "value": 2.26 },
- { "time": 2.7333, "value": -3.39 },
- { "time": 3.0667, "value": -5.53 },
- { "time": 3.2333, "value": 7.78 },
- { "time": 3.4667, "value": -5.99 },
- { "time": 3.7, "value": 3.11 },
- { "time": 3.9, "value": -3.05 },
- { "time": 4.1, "value": 0.31 },
- { "time": 4.3, "value": -3.06 },
- { "time": 4.5333, "value": 0.36 },
- {
- "time": 4.8667,
- "value": 4.94,
- "curve": [ 4.925, 4.94, 5.042, -2.38 ]
- },
- { "time": 5.1, "value": -2.38 },
- { "time": 5.2667, "value": 3.65 },
- { "time": 5.4, "value": -3.04 },
- { "time": 5.5, "value": 1.49 },
- { "time": 5.6, "value": -1.86 },
- { "time": 5.7, "value": 0.42 }
- ]
- },
- "machinegun": {
- "rotate": [
- { "value": 8.07, "curve": "stepped" },
- { "time": 2.0667, "value": 8.07 },
- { "time": 2.1667, "value": 3.11 },
- { "time": 2.5667, "value": -10.99, "curve": "stepped" },
- { "time": 3.1333, "value": -10.99 },
- { "time": 3.2667, "value": 18.18 },
- { "time": 3.4333, "value": 2.75, "curve": "stepped" },
- { "time": 4.7, "value": 2.75 },
- { "time": 4.9, "value": 8.07 }
- ]
- }
- },
- "path": {
- "treads-path": {
- "position": [
- {
- "curve": [ 0.984, 0, 1.588, 0.1788 ]
- },
- {
- "time": 2,
- "value": 0.385,
- "curve": [ 2.023, 0.3916, 2.045, 0.3983 ]
- },
- { "time": 2.0667, "value": 0.405 },
- { "time": 2.3333, "value": 0.555 },
- { "time": 2.5, "value": 0.605 },
- { "time": 2.6667, "value": 0.685 },
- { "time": 2.8333, "value": 0.745 },
- { "time": 3, "value": 0.785 },
- { "time": 3.0667, "value": 0.8 },
- { "time": 3.1333, "value": 0.825 },
- { "time": 3.1667, "value": 0.835 },
- { "time": 3.2333, "value": 0.87 },
- {
- "time": 3.5,
- "value": 0.98,
- "curve": [ 3.726, 1.0474, 4.335, 1.4 ]
- },
- { "time": 4.8333, "value": 1.4 }
- ]
- }
- }
- },
- "shoot": {
- "slots": {
- "rock": {
- "attachment": [
- { "name": null }
- ]
- },
- "smoke-glow": {
- "rgba": [
- { "time": 0.1333, "color": "ffffffff" },
- { "time": 0.1667, "color": "ffbc8af4" },
- { "time": 0.2, "color": "fc8e8e90" },
- { "time": 0.2667, "color": "fa3e3e1e" }
- ],
- "attachment": [
- { "time": 0.0667, "name": "smoke-glow" },
- { "time": 0.3, "name": null }
- ]
- },
- "smoke-puff1-bg": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.6, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 1.0333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.0667, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg2": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg3": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg4": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.6, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.9, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg5": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.6, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.9, "light": "ffd50c00", "dark": "604a3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg6": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg7": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3333, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg8": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4333, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.9333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg9": {
- "rgba2": [
- { "time": 0.1333, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.5333, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg10": {
- "rgba2": [
- { "time": 0.1333, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.5333, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8333, "light": "ffd50c00", "dark": "604a3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg11": {
- "rgba2": [
- { "time": 0.1333, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7667, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg12": {
- "rgba2": [
- { "time": 0.3333, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.6, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8667, "light": "ffd50c00", "dark": "604a3f" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg13": {
- "rgba2": [
- { "time": 0.3667, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 1, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg14": {
- "rgba2": [
- { "time": 0.4333, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.6, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 1.0667, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.4333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg15": {
- "rgba2": [
- { "time": 0.4, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.4, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg16": {
- "rgba2": [
- { "time": 0.4, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.4, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg17": {
- "rgba2": [
- { "time": 0.2333, "light": "ffd50cff", "dark": "534035" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.6667, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.2333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg18": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.5, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.2333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg20": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.8, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3333, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg21": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7, "light": "ffd50c00", "dark": "604b3f" }
- ]
- },
- "smoke-puff1-bg22": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7, "light": "ffd50c00", "dark": "604b3f" }
- ]
- },
- "smoke-puff1-bg23": {
- "rgba2": [
- { "time": 0.0667, "light": "ffd50cff", "dark": "3b2c23" },
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.5, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7667, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg24": {
- "rgba2": [
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg25": {
- "rgba2": [
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 1, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg26": {
- "rgba2": [
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.6, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.9333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-bg27": {
- "rgba2": [
- { "time": 0.3, "light": "ffd50cff", "dark": "604b3f", "curve": "stepped" },
- { "time": 0.4667, "light": "ffd50cff", "dark": "604b3f" },
- { "time": 0.7333, "light": "ffd50c00", "dark": "604b3f" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff01-bg" }
- ]
- },
- "smoke-puff1-fg": {
- "rgba2": [
- { "time": 0.0667, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1333, "light": "fde252ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.6, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 1.0333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.0667, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg2": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg3": {
- "rgba2": [
- { "time": 0.1333, "light": "ffe457ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg4": {
- "rgba2": [
- { "time": 0.1333, "light": "fae781ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.6, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.9, "light": "ac8c7500", "dark": "604a3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg5": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.6, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.9, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg6": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg7": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3333, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8333, "light": "ac8c7500", "dark": "604a3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg8": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4333, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.9333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg9": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.5333, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg10": {
- "rgba2": [
- { "time": 0.1333, "light": "fce35dff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.5333, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8333, "light": "ac8c7500", "dark": "604a3f" }
- ],
- "attachment": [
- { "time": 0.1333, "name": "smoke-puff01-fg" },
- { "time": 0.1667, "name": "smoke-puff02-fg" },
- { "time": 0.2, "name": "smoke-puff03-fg" },
- { "time": 0.2667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg11": {
- "rgba2": [
- { "time": 0.3333, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7667, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg12": {
- "rgba2": [
- { "time": 0.3667, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.6, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8667, "light": "ac8c7500", "dark": "604a3f" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg13": {
- "rgba2": [
- { "time": 0.3667, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 1, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg14": {
- "rgba2": [
- { "time": 0.4333, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.6, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 1.0667, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.4333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg15": {
- "rgba2": [
- { "time": 0.4, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.4, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg16": {
- "rgba2": [
- { "time": 0.4, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.4, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg17": {
- "rgba2": [
- { "time": 0.2333, "light": "e3c05eff", "dark": "ab7e59" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.6667, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.2333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg18": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.5, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7667, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.2333, "name": "smoke-puff03-fg" },
- { "time": 0.2667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg20": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.8, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3333, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg21": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7, "light": "ab764c00", "dark": "ac8d75" }
- ]
- },
- "smoke-puff1-fg22": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7, "light": "ab764c00", "dark": "ac8d75" }
- ]
- },
- "smoke-puff1-fg23": {
- "rgba2": [
- { "time": 0.1333, "light": "ffdf31ff", "dark": "ff0000" },
- { "time": 0.1667, "light": "ffe568ff", "dark": "e26425" },
- { "time": 0.2, "light": "ffe568ff", "dark": "ab774c" },
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.5, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7667, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg24": {
- "rgba2": [
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg25": {
- "rgba2": [
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 1, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg26": {
- "rgba2": [
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.6, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.9333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff04-fg" }
- ]
- },
- "smoke-puff1-fg27": {
- "rgba2": [
- { "time": 0.3, "light": "ab764cff", "dark": "ac8d75", "curve": "stepped" },
- { "time": 0.4667, "light": "ab764cff", "dark": "ac8d75" },
- { "time": 0.7333, "light": "ab764c00", "dark": "ac8d75" }
- ],
- "attachment": [
- { "time": 0.3667, "name": "smoke-puff04-fg" }
- ]
- },
- "tank-glow": {
- "rgba": [
- { "time": 0.0667, "color": "fc994d84" },
- {
- "time": 0.1333,
- "color": "f5b16bc8",
- "curve": [ 0.221, 0.96, 0.252, 0.98, 0.221, 0.69, 0.252, 0.62, 0.221, 0.42, 0.252, 0.33, 0.221, 0.78, 0.252, 0.32 ]
- },
- { "time": 0.2667, "color": "fc994c30" }
- ],
- "attachment": [
- { "time": 0.0667, "name": "smoke-glow" },
- { "time": 0.2667, "name": null }
- ]
- }
- },
- "bones": {
- "cannon": {
- "translate": [
- { "time": 0.0667 },
- { "time": 0.1667, "x": 34.77, "y": 0.9 },
- { "time": 0.2667, "x": 1.3 }
- ]
- },
- "tank-body": {
- "rotate": [
- { "time": 0.0667 },
- {
- "time": 0.1667,
- "value": -4.29,
- "curve": [ 0.2, -4.29, 0.267, 2.37 ]
- },
- {
- "time": 0.3,
- "value": 2.37,
- "curve": [ 0.333, 2.37, 0.4, 0 ]
- },
- { "time": 0.4333 }
- ],
- "translate": [
- { "time": 0.0667 },
- {
- "time": 0.1667,
- "x": 31.04,
- "y": 1.67,
- "curve": [ 0.2, 31.04, 0.267, -12.05, 0.2, 1.67, 0.267, -0.23 ]
- },
- { "time": 0.3, "x": -12.05, "y": -0.23 },
- { "time": 0.3667 }
- ]
- },
- "tank-treads": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.1667, "value": -3.08 },
- { "time": 0.3, "value": -0.42 }
- ]
- },
- "smoke1": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.1333, "value": 2.88 },
- { "time": 0.1667, "value": 2.34 },
- { "time": 0.2, "value": 124.36 },
- { "time": 0.2667, "value": 142.26 },
- { "time": 0.3333, "value": 86.78 },
- { "time": 0.4667, "value": 128.79 },
- { "time": 0.6333, "value": 146.22 },
- { "time": 1.0333, "value": 210.7 }
- ],
- "translate": [
- { "time": 0.0667, "x": -9.69, "y": 1.05 },
- { "time": 0.1333, "x": 7.53, "y": 1.21 },
- { "time": 0.1667, "x": 3.26, "y": 4.07 },
- { "time": 0.2, "x": 29.64, "y": -17.46 },
- { "time": 0.2667, "x": 86.97, "y": 17.83 },
- { "time": 0.3333, "x": 193.74, "y": -38.98 },
- { "time": 0.4, "x": 341.67, "y": -39.52 },
- { "time": 0.6333, "x": 393.24, "y": -4.01 },
- { "time": 1.0333, "x": 410.76, "y": 6.35 }
- ],
- "scale": [
- { "time": 0.0667 },
- { "time": 0.1333, "x": 3.171, "y": 0.756 },
- { "time": 0.1667, "x": 3.488, "y": 1.279 },
- { "time": 0.2, "x": 5.151, "y": 2.369 },
- { "time": 0.2667, "x": 4.735, "y": 3.622 },
- { "time": 0.3, "x": 4.735, "y": 4.019 },
- { "time": 0.3333, "x": 4.613, "y": 3.339 },
- { "time": 0.3667, "x": 4.918, "y": 3.561 },
- { "time": 0.4, "x": 4.6, "y": 4.263 },
- { "time": 0.6333, "x": 4.449, "y": 2.62 },
- { "time": 1.0333, "x": 3.09, "y": 1.447 }
- ]
- },
- "smoke2": {
- "rotate": [
- { "time": 0.1667, "value": 31.55 },
- { "time": 0.3, "value": -22.63 },
- { "time": 0.4667, "value": 142.89 },
- { "time": 0.6, "value": 253.78 },
- { "time": 0.8333, "value": 299.28 }
- ],
- "translate": [
- { "time": 0.1667, "x": 17.26, "y": 4.86 },
- { "time": 0.2333, "x": 141.22, "y": 27.27 },
- { "time": 0.3, "x": 178.86, "y": 56.63 },
- { "time": 0.3667, "x": 200.46, "y": 71.05 },
- { "time": 0.4333, "x": 213.12, "y": 78.39 },
- { "time": 0.6333, "x": 221.44, "y": 73.1 },
- { "time": 0.8333, "x": 223.32, "y": 73.74 }
- ],
- "scale": [
- { "time": 0.1667, "x": 1.34, "y": 1.34 },
- { "time": 0.2333, "x": 2.81, "y": 1.317 },
- { "time": 0.3, "x": 2.932, "y": 1.374 },
- { "time": 0.4667, "x": 1.247, "y": 0.639 },
- { "time": 0.8333, "x": 0.778, "y": 0.515 }
- ]
- },
- "smoke3": {
- "rotate": [
- { "time": 0.1667, "value": -5.54 },
- { "time": 0.2333, "value": 0.2 },
- { "time": 0.3333, "value": 20.27 },
- { "time": 0.4, "value": 31.36 },
- { "time": 0.4667, "value": 68.52 },
- { "time": 0.5333, "value": 99.74 },
- { "time": 0.6333, "value": 145.8 },
- { "time": 0.8333, "value": 193.28 }
- ],
- "translate": [
- { "time": 0.1333, "x": 1.17, "y": 8.53 },
- { "time": 0.1667, "x": 37.53, "y": 4.84 },
- { "time": 0.2, "x": 67.99, "y": 9.85 },
- { "time": 0.2333, "x": 134.14, "y": -13.5 },
- { "time": 0.2667, "x": 181.31, "y": -19.93 },
- { "time": 0.3, "x": 238.28, "y": -8.82 },
- { "time": 0.3333, "x": 268.51, "y": -25.75 },
- { "time": 0.3667, "x": 359.06, "y": -28.49 },
- { "time": 0.4, "x": 432.96, "y": -24.11 },
- { "time": 0.4667, "x": 452.16, "y": -16.73 },
- { "time": 0.6333, "x": 456.28, "y": -0.41 },
- { "time": 0.8333, "x": 454.14, "y": 16.41 }
- ],
- "scale": [
- { "time": 0.1333, "x": 2.258, "y": 1.366 },
- { "time": 0.1667, "x": 2.656, "y": 1.47 },
- { "time": 0.2, "x": 3.202, "y": 1.772 },
- { "time": 0.2333, "x": 3.202, "y": 1.93 },
- { "time": 0.2667, "x": 3.124, "y": 1.896 },
- { "time": 0.3, "x": 3.593, "y": 1.896 },
- { "time": 0.3333, "x": 2.363, "y": 1.247 },
- { "time": 0.3667, "x": 1.845, "y": 0.973 },
- { "time": 0.4, "x": 1.754, "y": 0.926 },
- { "time": 0.4333, "x": 1.448, "y": 0.695 },
- { "time": 0.4667, "x": 1.441, "y": 0.688 },
- { "time": 0.5333, "x": 0.865, "y": 0.456 },
- { "time": 0.7, "x": 0.86, "y": 0.454 },
- { "time": 0.8333, "x": 0.211, "y": 0.111 }
- ]
- },
- "smoke4": {
- "rotate": [
- { "time": 0.1667, "value": -20.35 },
- { "time": 0.2333, "value": 18.5 },
- { "time": 0.3, "value": 57.77 },
- { "time": 0.4, "value": 105.85 },
- { "time": 0.6, "value": 161.28 },
- { "time": 0.9, "value": 208.43 }
- ],
- "translate": [
- { "time": 0.1667, "x": 35.95, "y": 25.54 },
- { "time": 0.2333, "x": 34.17, "y": 1.87 },
- { "time": 0.3, "x": 136.7, "y": 21.5 },
- { "time": 0.4, "x": 138.61, "y": 34.8 },
- { "time": 0.6, "x": 160.38, "y": 37.13 },
- { "time": 0.9, "x": 196.41, "y": 30.36 }
- ],
- "scale": [
- { "time": 0.1667, "x": 2.751, "y": 1.754 },
- { "time": 0.2333, "x": 3.486, "y": 2.224 },
- { "time": 0.2667, "x": 3.486, "y": 2.586 },
- { "time": 0.3, "x": 3.847, "y": 2.109 },
- { "time": 0.4, "x": 1.96, "y": 1.074 },
- { "time": 0.9, "x": 0.825, "y": 0.452 }
- ]
- },
- "smoke5": {
- "rotate": [
- { "time": 0.2, "value": 23.09 },
- { "time": 0.2667, "value": 12.24 },
- { "time": 0.3333, "value": 36.92 },
- { "time": 0.4333, "value": -37.33 },
- { "time": 0.5333, "value": -0.66 },
- { "time": 0.9, "value": 64.02 }
- ],
- "translate": [
- { "time": 0.1333 },
- { "time": 0.2333, "x": 123.76, "y": 19.44 },
- { "time": 0.3, "x": 239.08, "y": -49.72 },
- { "time": 0.3667, "x": 280.23, "y": -51.46 },
- { "time": 0.7, "x": 340.62, "y": -20.09 },
- { "time": 0.9, "x": 349.18, "y": -5.25 }
- ],
- "scale": [
- { "time": 0.1333 },
- { "time": 0.1667, "x": 1.718, "y": 1.718 },
- { "time": 0.2, "x": 2.109, "y": 2.109 },
- { "time": 0.2333, "x": 1.781, "y": 2.183 },
- { "time": 0.2667, "x": 2.148, "y": 2.633 },
- { "time": 0.3333, "x": 2.234, "y": 2.738 },
- { "time": 0.3667, "x": 1.366, "y": 2.148 },
- { "time": 0.4, "x": 0.97, "y": 1.524 },
- { "time": 0.4333, "x": 1.078, "y": 1.157 },
- { "time": 0.4667, "x": 1.126, "y": 1.005 },
- { "time": 0.7, "x": 1.241, "y": 1.301 },
- { "time": 0.9, "x": 0.709, "y": 0.893 }
- ]
- },
- "smoke6": {
- "rotate": [
- { "time": 0.1667, "value": -37.43 },
- { "time": 0.2333, "value": -18.36 },
- { "time": 0.3333, "value": 28.58 },
- { "time": 0.4, "value": 150.54 },
- { "time": 0.7, "value": 301.59 }
- ],
- "translate": [
- { "time": 0.1333 },
- { "time": 0.2, "x": 68.04, "y": 16.15 },
- { "time": 0.2667, "x": 214.52, "y": 13.25 },
- { "time": 0.3333, "x": 285.4, "y": 17.95 },
- { "time": 0.4, "x": 202.91, "y": 101.43 },
- { "time": 0.4667, "x": 189.25, "y": 116.39 },
- { "time": 0.7, "x": 182.77, "y": 137.4 }
- ],
- "scale": [
- { "time": 0.1333 },
- { "time": 0.1667, "x": 1.152, "y": 1.288 },
- { "time": 0.2, "x": 1.939, "y": 2.168 },
- { "time": 0.2333, "x": 2.278, "y": 2.223 },
- { "time": 0.2667, "x": 2.023, "y": 1.974 },
- { "time": 0.3, "x": 2.644, "y": 1.974 },
- { "time": 0.4, "x": 1.539, "y": 1.425 },
- { "time": 0.4667, "x": 1.14, "y": 0.939 },
- { "time": 0.7, "x": 0.215, "y": 0.161 }
- ]
- },
- "smoke7": {
- "rotate": [
- { "time": 0.1667, "value": -243.11 },
- { "time": 0.4, "value": -182.02 },
- { "time": 0.8333, "value": -83.02 }
- ],
- "translate": [
- { "time": 0.1333, "x": 3.19, "y": -6.53 },
- { "time": 0.1667, "x": 44.54, "y": 1.12 },
- { "time": 0.2, "x": 65.84, "y": 6.02 },
- { "time": 0.2333, "x": 173.84, "y": 97.51 },
- { "time": 0.4, "x": 167.39, "y": 74.58 },
- { "time": 0.8333, "x": 227.77, "y": 84.64 }
- ],
- "scale": [
- { "time": 0.1333, "x": 0.878, "y": 0.878 },
- { "time": 0.1667, "x": 1.235, "y": 1.235 },
- { "time": 0.2, "x": 1.461, "y": 1.461 },
- { "time": 0.2333, "x": 1.114, "y": 1.114 },
- { "time": 0.3333, "x": 1.067, "y": 1.067 },
- { "time": 0.4667, "x": 0.81, "y": 0.753 },
- { "time": 0.8333, "x": 0.52, "y": 0.484 }
- ]
- },
- "smoke8": {
- "rotate": [
- { "time": 0.1667, "value": -156.52 },
- { "time": 0.2667, "value": -154.05 },
- { "time": 0.3333, "value": -108.35 },
- { "time": 0.6, "value": -93.14 },
- { "time": 0.9333, "value": -70.89 }
- ],
- "translate": [
- { "time": 0.1667, "x": 20.72, "y": 0.25 },
- { "time": 0.2333, "x": 46.1, "y": -10.06 },
- { "time": 0.3, "x": 149.77, "y": 0.92 },
- { "time": 0.3667, "x": 241.21, "y": 49.01 },
- { "time": 0.5333, "x": 276, "y": 58.76 },
- { "time": 0.7, "x": 292.02, "y": 65.91 },
- { "time": 0.9333, "x": 308.7, "y": 69.51 }
- ],
- "scale": [
- { "time": 0.1333, "y": 1.174 },
- { "time": 0.1667, "x": 1.813, "y": 1.438 },
- { "time": 0.2, "x": 1.813, "y": 1.878 },
- { "time": 0.2333, "x": 1.211, "y": 1.878 },
- { "time": 0.2667, "x": 1.584, "y": 1.596 },
- { "time": 0.3, "x": 1.958, "y": 1.878 },
- { "time": 0.4667, "x": 1.139, "y": 0.958 },
- { "time": 0.9333, "x": 0.839, "y": 0.591 }
- ]
- },
- "smoke9": {
- "rotate": [
- { "time": 0.1333, "value": -44.34 },
- { "time": 0.1667, "value": 14.73 },
- { "time": 0.2333, "value": 116.07 },
- { "time": 0.2667, "value": 118.29 },
- { "time": 0.3333, "value": 148.13 },
- { "time": 0.3667, "value": 172.74 },
- { "time": 0.4, "value": 235.69 },
- { "time": 0.4333, "value": 283.36 },
- { "time": 0.7667, "value": 358.76 }
- ],
- "translate": [
- { "time": 0.1333, "x": -3.49, "y": 0.04 },
- { "time": 0.2, "x": 87.4, "y": -7.97 },
- { "time": 0.2667, "x": 233.69, "y": -33.86 },
- { "time": 0.3333, "x": 296.44, "y": -30.87 },
- { "time": 0.4, "x": 390.8, "y": 4 },
- { "time": 0.4667, "x": 391.42, "y": 13.17 },
- { "time": 0.6333, "x": 413.3, "y": 36.13 },
- { "time": 0.7667, "x": 408.59, "y": 40.75 }
- ],
- "scale": [
- { "time": 0.1333, "x": 1.289, "y": 1.501 },
- { "time": 0.2, "x": 1.751, "y": 2.039 },
- { "time": 0.2667, "x": 2.064, "y": 2.347 },
- { "time": 0.3333, "x": 1.822, "y": 2.072 },
- { "time": 0.4, "x": 1.296, "y": 1.045 },
- { "time": 0.4667, "x": 1.872, "y": 1.526 },
- { "time": 0.6333, "x": 1.181, "y": 1.037 },
- { "time": 0.7667, "x": 0.716, "y": 0.615 }
- ]
- },
- "smoke10": {
- "rotate": [
- { "time": 0.1333, "value": 12.16 },
- { "time": 0.2, "value": 49.19 },
- { "time": 0.2667, "value": 33.17 },
- { "time": 0.3333, "value": 42.23 },
- { "time": 0.4, "value": 11.69 },
- { "time": 0.4667, "value": 41.83 },
- { "time": 0.5333, "value": 54.86 },
- { "time": 0.6333, "value": 75.25 },
- { "time": 0.8333, "value": 126.4 }
- ],
- "translate": [
- { "time": 0.1333, "x": 7.74, "y": 10.25 },
- { "time": 0.2, "x": 42.9, "y": 72.89 },
- { "time": 0.2667, "x": 221.58, "y": 82.27 },
- { "time": 0.3333, "x": 297.31, "y": 85.39 },
- { "time": 0.4, "x": 322.91, "y": 81.04 },
- { "time": 0.4667, "x": 346.62, "y": 76.68 },
- { "time": 0.6667, "x": 377.46, "y": 81.85 },
- { "time": 0.8333, "x": 402.18, "y": 101.03 }
- ],
- "scale": [
- { "time": 0.1333, "x": 0.537, "y": 1.062 },
- { "time": 0.1667, "x": 1.042, "y": 0.841 },
- { "time": 0.2, "x": 1.937, "y": 1.563 },
- { "time": 0.2333, "x": 1.937, "y": 2.176 },
- { "time": 0.2667, "x": 2.254, "y": 2.532 },
- { "time": 0.3, "x": 2.24, "y": 2.516 },
- { "time": 0.5333, "x": 1.731, "y": 1.882 },
- { "time": 0.8333, "x": 0.855, "y": 0.867 }
- ]
- },
- "smoke-glow": {
- "translate": [
- { "time": 0.0667, "x": -57.08, "y": 0.01 },
- { "time": 0.1, "x": -49.68, "y": -1.46 },
- { "time": 0.1333, "x": 6.3, "y": -2.92 },
- { "time": 0.1667, "x": 31.57, "y": 0.44 },
- { "time": 0.2, "x": 34.04, "y": 0.27 },
- { "time": 0.2333, "x": 109.29, "y": 1.02 },
- { "time": 0.4, "x": 119.89, "y": 1.01 },
- { "time": 0.4333, "x": 135.2, "y": 1.03 },
- { "time": 0.4667, "x": 152.86, "y": 1.06 },
- { "time": 0.5333, "x": 164.64, "y": 1.07 },
- { "time": 0.6, "x": 179.94, "y": 1.09 },
- { "time": 0.6333, "x": 190.54, "y": 1.1 }
- ],
- "scale": [
- { "time": 0.0667, "x": 0.233, "y": 0.233 },
- { "time": 0.1, "x": 0.42, "y": 0.288 },
- { "time": 0.1333, "x": 1.669, "y": 1.072 },
- { "time": 0.1667, "x": 1.669, "y": 1.785, "curve": "stepped" },
- { "time": 0.2, "x": 1.669, "y": 1.785 },
- { "time": 0.2333, "x": 2.544, "y": 1.785 },
- { "time": 0.4333, "x": 3.48, "y": 2.22 },
- { "time": 0.4667, "x": 4.337, "y": 2.655 }
- ]
- },
- "smoke11": {
- "rotate": [
- { "time": 0.4, "value": 47.07 },
- { "time": 0.4333, "value": 109.71 },
- { "time": 0.4667, "value": 164.62 },
- { "time": 0.8333, "value": 276.93 }
- ],
- "translate": [
- { "time": 0.3333, "x": 280.31, "y": 126.85 },
- { "time": 0.4, "x": 296.27, "y": 125.62 },
- { "time": 0.4667, "x": 312.45, "y": 131.57 },
- { "time": 0.6667, "x": 310.5, "y": 149.67 },
- { "time": 0.8333, "x": 307.08, "y": 153.94 }
- ],
- "scale": [
- { "time": 0.3333, "x": 1.491, "y": 1.491 },
- { "time": 0.4667, "x": 1.144, "y": 0.948 },
- { "time": 0.5667, "x": 0.491, "y": 0.491 },
- { "time": 0.8333, "x": 0.985, "y": 0.91 }
- ]
- },
- "smoke12": {
- "rotate": [
- { "time": 0.3667, "value": -37.96 },
- { "time": 0.4333, "value": 28.55 },
- { "time": 0.5333, "value": 108.53 },
- { "time": 0.8667, "value": 191.85 }
- ],
- "translate": [
- { "time": 0.3667, "x": 390.22, "y": -1.06 },
- { "time": 0.4333, "x": 411.78, "y": 26.39 },
- { "time": 0.5333, "x": 428.12, "y": 56.28 },
- { "time": 0.8667, "x": 444.34, "y": 68.06 }
- ],
- "scale": [
- { "time": 0.3667, "x": 2.006, "y": 1.821 },
- { "time": 0.5333, "x": 1.719, "y": 1.293 },
- { "time": 0.7333, "x": 1.562, "y": 1.304 },
- { "time": 0.8667, "x": 0.727, "y": 0.637 }
- ]
- },
- "smoke13": {
- "rotate": [
- { "time": 0.3667, "value": 305.8 },
- { "time": 0.4, "value": 478.49 },
- { "time": 0.4333, "value": 537.45 },
- { "time": 0.4667, "value": 573.84 },
- { "time": 0.5333, "value": 596.4 },
- { "time": 0.7, "value": 622.3 },
- { "time": 1, "value": 657.95 }
- ],
- "translate": [
- { "time": 0.3667, "x": 331.84, "y": -25.82 },
- { "time": 0.4, "x": 417.88, "y": -42.62 },
- { "time": 0.4667, "x": 451.61, "y": -42.21 },
- { "time": 0.5333, "x": 453.81, "y": -37.03 },
- { "time": 0.6, "x": 451.86, "y": -31.89 },
- { "time": 0.7, "x": 453.37, "y": -27.28 },
- { "time": 1, "x": 454.04, "y": -17.89 }
- ],
- "scale": [
- { "time": 0.3667, "x": 4.509, "y": 3.114 },
- { "time": 0.4, "x": 3.673, "y": 2.537 },
- { "time": 0.4333, "x": 4.201, "y": 2.638 },
- { "time": 0.4667, "x": 4.27, "y": 2.399 },
- { "time": 0.6, "x": 2.798, "y": 1.932 },
- { "time": 0.8333, "x": 2.316, "y": 1.599 },
- { "time": 1, "x": 1.081, "y": 0.746 }
- ]
- },
- "smoke14": {
- "rotate": [
- { "time": 0.4333, "value": 271.03 },
- { "time": 0.7, "value": 299.97 },
- { "time": 1.0667, "value": 331.16 }
- ],
- "translate": [
- { "time": 0.4333, "x": 371.68, "y": -29.8 },
- { "time": 0.7667, "x": 400.59, "y": -44.36 },
- { "time": 1.0667, "x": 432.26, "y": -44.79 }
- ],
- "scale": [
- { "time": 0.4333, "x": 4.011, "y": 3.366 },
- { "time": 0.7667, "x": 2.071, "y": 1.624 },
- { "time": 1.0667, "x": 1.798, "y": 1.111 }
- ]
- },
- "smoke15": {
- "rotate": [
- { "time": 0.4, "value": 111.75 },
- { "time": 0.4667, "value": 171.93 },
- { "time": 0.6, "value": 256.95 },
- { "time": 0.8333, "value": 299.15 }
- ],
- "translate": [
- { "time": 0.4, "x": 266.71, "y": -53.04 },
- { "time": 0.4333, "x": 290.84, "y": -51.43 },
- { "time": 0.5333, "x": 305.65, "y": -44.32 },
- { "time": 0.6667, "x": 318.96, "y": -38.95 },
- { "time": 0.8333, "x": 342.65, "y": -27.33 }
- ],
- "scale": [
- { "time": 0.4, "x": 2.749, "y": 2.095 },
- { "time": 0.4333, "x": 3.302, "y": 2.289 },
- { "time": 0.4667, "x": 2.591, "y": 1.895 },
- { "time": 0.5333, "x": 1.777, "y": 1.354 },
- { "time": 0.7, "x": 1.932, "y": 1.267 },
- { "time": 0.8333, "x": 1.002, "y": 1.546 }
- ]
- },
- "smoke16": {
- "rotate": [
- { "time": 0.4, "value": 89.78 },
- { "time": 0.4667, "value": 137.83 },
- { "time": 0.5333, "value": 193.49 },
- { "time": 0.6, "value": 235.26 },
- { "time": 0.6333, "value": 286.8 }
- ],
- "translate": [
- { "time": 0.4, "x": 217.23, "y": -21.45 },
- { "time": 0.4667, "x": 249.95, "y": -13.73 },
- { "time": 0.5333, "x": 264.96, "y": -9.87 },
- { "time": 0.6, "x": 278.95, "y": 6.37 },
- { "time": 0.6333, "x": 245.65, "y": 11.77 }
- ],
- "scale": [
- { "time": 0.4, "x": 2.265, "y": 1.859 },
- { "time": 0.4333, "x": 2.621, "y": 1.955 },
- { "time": 0.4667, "x": 1.953, "y": 1.538 },
- { "time": 0.6, "x": 1.005, "y": 0.825 },
- { "time": 0.6333, "x": 0.387, "y": 0.318 }
- ]
- },
- "smoke17": {
- "rotate": [
- { "time": 0.2333, "value": 99.02 },
- { "time": 0.3, "value": 58.06 },
- { "time": 0.3333, "value": 34.05 },
- { "time": 0.3667, "value": -17.34 },
- { "time": 0.6667, "value": -62.36 }
- ],
- "translate": [
- { "time": 0.2333, "x": 18.91, "y": -62.91 },
- { "time": 0.3, "x": 2.43, "y": -61.54 },
- { "time": 0.3333, "x": 1.89, "y": -36.55 },
- { "time": 0.3667, "x": 6.97, "y": -29.52 },
- { "time": 0.4333, "x": 10.78, "y": -20.55 },
- { "time": 0.6667, "x": 18.65, "y": -13.19 }
- ],
- "scale": [
- { "time": 0.2333, "x": 1.915, "y": 1.915 },
- { "time": 0.3, "x": 1.509, "y": 1.509 },
- { "time": 0.3333, "x": 1.01, "y": 1.01 },
- { "time": 0.3667, "x": 0.715, "y": 0.715 },
- { "time": 0.4333, "x": 0.949, "y": 0.721 },
- { "time": 0.5667, "x": 0.785, "y": 0.74 }
- ]
- },
- "smoke18": {
- "rotate": [
- { "time": 0.2333, "value": 141.75 },
- { "time": 0.2667, "value": 134.51 },
- { "time": 0.3333, "value": 249.12 },
- { "time": 0.5, "value": 363.82 },
- { "time": 0.7333, "value": 450.54 }
- ],
- "translate": [
- { "time": 0.2333, "x": 60.81, "y": 56.17 },
- { "time": 0.2667, "x": 68.74, "y": 69.4 },
- { "time": 0.3333, "x": 76.85, "y": 69.07 },
- { "time": 0.5, "x": 101.49, "y": 89.87 },
- { "time": 0.7333, "x": 118.58, "y": 101.16 }
- ],
- "scale": [
- { "time": 0.2333, "x": 2.288, "y": 2.288 },
- { "time": 0.2667, "x": 2.288, "y": 1.628 },
- { "time": 0.3, "x": 1.524, "y": 1.308 },
- { "time": 0.5, "x": 1.757, "y": 1.385 },
- { "time": 0.5333, "x": 2.08, "y": 1.51 },
- { "time": 0.7333, "x": 1.405, "y": 0.896 }
- ]
- },
- "smoke20": {
- "rotate": [
- { "time": 0.3333, "value": 95.16 },
- { "time": 0.3667, "value": 130.42 },
- { "time": 0.4, "value": 170.7 },
- { "time": 0.4333, "value": 266.75 },
- { "time": 0.4667, "value": 299.82 },
- { "time": 0.5333, "value": 326.88 },
- { "time": 0.6, "value": 350.8 },
- { "time": 0.9, "value": 403.14 }
- ],
- "translate": [
- { "time": 0.3333, "x": 124.61, "y": -46.55 },
- { "time": 0.5333, "x": 173.8, "y": -36.62 },
- { "time": 0.7, "x": 186.5, "y": -35.41 },
- { "time": 0.9, "x": 188.56, "y": -37.75 }
- ],
- "scale": [
- { "time": 0.3333, "x": 3.346, "y": 2.654 },
- { "time": 0.3667, "x": 2.661, "y": 2.111 },
- { "time": 0.4333, "x": 2.751, "y": 1.984 },
- { "time": 0.4667, "x": 3.059, "y": 2.21 },
- { "time": 0.5333, "x": 2.159, "y": 1.712 },
- { "time": 0.7, "x": 1.601, "y": 1.27 },
- { "time": 0.9, "x": 1.679, "y": 0.856 }
- ]
- },
- "smoke23": {
- "rotate": [
- { "time": 0.3, "value": 115.12 },
- { "time": 0.3667, "value": 79.01 },
- { "time": 0.7667, "value": 6.96 }
- ],
- "translate": [
- { "time": 0.3, "x": 75.15, "y": -50.92 },
- { "time": 0.3667, "x": 59.33, "y": -53.52 },
- { "time": 0.7667, "x": 39.68, "y": -48.64 }
- ],
- "scale": [
- { "time": 0.3, "x": 3.331, "y": 2.096 },
- { "time": 0.4333, "x": 2.4, "y": 2.006 },
- { "time": 0.5, "x": 2.555, "y": 2.094 },
- { "time": 0.7667, "x": 1.35, "y": 1.241 }
- ]
- },
- "antenna1": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.2, "value": 11.78 },
- { "time": 0.3, "value": -9.52 },
- { "time": 0.4, "value": 8.07 },
- { "time": 0.5, "value": -4.45 },
- { "time": 0.6, "value": 1.54 },
- { "time": 0.7, "value": -0.34 }
- ]
- },
- "antenna2": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.2, "value": 11.78 },
- { "time": 0.3, "value": -9.52 },
- { "time": 0.4, "value": 8.07 },
- { "time": 0.5, "value": -4.45 },
- { "time": 0.6, "value": 1.54 },
- { "time": 0.7, "value": -0.34 }
- ]
- },
- "antenna3": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.2, "value": 11.78 },
- { "time": 0.3, "value": -9.52 },
- { "time": 0.4, "value": 8.07 },
- { "time": 0.5, "value": -4.45 },
- { "time": 0.6, "value": 1.54 },
- { "time": 0.7, "value": -0.34 }
- ]
- },
- "antenna4": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.2, "value": 11.78 },
- { "time": 0.3, "value": -9.52 },
- { "time": 0.4, "value": 8.07 },
- { "time": 0.5, "value": -4.45 },
- { "time": 0.6, "value": 1.54 },
- { "time": 0.7, "value": -0.34 }
- ]
- },
- "antenna5": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.2, "value": 11.78 },
- { "time": 0.3, "value": -9.52 },
- { "time": 0.4, "value": 8.07 },
- { "time": 0.5, "value": -4.45 },
- { "time": 0.6, "value": 1.54 },
- { "time": 0.7, "value": -0.34 }
- ]
- },
- "antenna6": {
- "rotate": [
- { "time": 0.0667 },
- { "time": 0.2, "value": 11.78 },
- { "time": 0.3, "value": -9.52 },
- { "time": 0.4, "value": 8.07 },
- { "time": 0.5, "value": -4.45 },
- { "time": 0.6, "value": 1.54 },
- { "time": 0.7, "value": -0.34 }
- ]
- },
- "smoke24": {
- "rotate": [
- { "time": 0.3, "value": 71.32 },
- { "time": 0.3667, "value": 112.39 },
- { "time": 0.4667, "value": 159.56 },
- { "time": 0.7, "value": 224.21 }
- ],
- "translate": [
- { "time": 0.3, "x": 90.72, "y": -18.79 },
- { "time": 0.3667, "x": 149.69, "y": -7.78 },
- { "time": 0.4667, "x": 176.26, "y": 12.31 },
- { "time": 0.7, "x": 184.07, "y": 31.75 }
- ],
- "scale": [
- { "time": 0.3, "x": 2.906, "y": 2.311 },
- { "time": 0.4333, "x": 3.567, "y": 2.58 },
- { "time": 0.4667, "x": 3.157, "y": 2.41 },
- { "time": 0.7, "x": 1.705, "y": 1.356 }
- ]
- },
- "smoke25": {
- "rotate": [
- { "time": 0.3667, "value": 91.25 },
- { "time": 0.4333, "value": 117.56 },
- { "time": 0.6333, "value": 150.9 },
- { "time": 1, "value": 189.47 }
- ],
- "translate": [
- { "time": 0.3667, "x": 187.21, "y": -51.18 },
- { "time": 0.5333, "x": 245.48, "y": -46.28 },
- { "time": 0.6667, "x": 277.36, "y": -43.12 },
- { "time": 1, "x": 313.27, "y": -38.14 }
- ],
- "scale": [
- { "time": 0.3667, "x": 3.606, "y": 2.657 },
- { "time": 0.4333, "x": 4.166, "y": 2.792 },
- { "time": 0.5333, "x": 3.09, "y": 2.091 },
- { "time": 1, "x": 3.062, "y": 1.801 }
- ]
- },
- "smoke26": {
- "rotate": [
- { "time": 0.3667, "value": 10.64 },
- { "time": 0.4, "value": 60.85 },
- { "time": 0.4667, "value": 89.45 },
- { "time": 0.7, "value": 125.01 },
- { "time": 0.9333, "value": 155.24 }
- ],
- "translate": [
- { "time": 0.3667, "x": 442.07, "y": -13.19 },
- { "time": 0.4, "x": 453.7, "y": 0.81 },
- { "time": 0.4667, "x": 443.57, "y": -6.95 },
- { "time": 0.7, "x": 460.97, "y": 15.79 },
- { "time": 0.9333, "x": 465.22, "y": 20.92 }
- ],
- "scale": [
- { "time": 0.3667, "x": 2.726, "y": 2.726 },
- { "time": 0.4333, "x": 3.729, "y": 2.822 },
- { "time": 0.4667, "x": 3.398, "y": 2.441 },
- { "time": 0.7, "x": 4.324, "y": 3.159 },
- { "time": 0.9, "x": 1.977, "y": 1.48 }
- ]
- },
- "smoke27": {
- "rotate": [
- { "time": 0.3667, "value": 24.75 },
- { "time": 0.4333, "value": -5.43 },
- { "time": 0.5333, "value": -39.76 },
- { "time": 0.8333, "value": -56.25 }
- ],
- "translate": [
- { "time": 0.3667, "x": 92.98, "y": -49.06 },
- { "time": 0.5333, "x": 129.81, "y": -33.09 },
- { "time": 0.8333, "x": 143.68, "y": -25.27 }
- ],
- "scale": [
- { "time": 0.3667, "x": 3.633, "y": 2.223 },
- { "time": 0.4333, "x": 2.745, "y": 2.283 },
- { "time": 0.4667, "x": 2.962, "y": 2.122 },
- { "time": 0.5333, "x": 2.007, "y": 1.266 }
- ]
- },
- "cannon-target": {
- "translate": [
- { "time": 0.1333 },
- {
- "time": 0.2,
- "y": 128.38,
- "curve": [ 0.4, 0, 0.8, 0, 0.4, 128.38, 0.8, 0 ]
- },
- { "time": 1 }
- ],
- "scale": [
- { "time": 0.4333, "x": 0.632, "y": 1.244 },
- { "time": 0.4667, "x": 0.477, "y": 1.487 }
- ]
- },
- "machinegun-target": {
- "scale": [
- { "time": 0.4333, "x": 0.632, "y": 1.244 },
- { "time": 0.4667, "x": 0.477, "y": 1.487 }
- ]
- },
- "machinegun": {
- "rotate": [
- { "value": 8.07, "curve": "stepped" },
- { "time": 0.0667, "value": 8.07 },
- {
- "time": 0.2333,
- "value": -18.67,
- "curve": [ 0.894, -18.44, 0.832, 7.5 ]
- },
- { "time": 0.9, "value": 8.07 }
- ]
- },
- "tank-root": {
- "translate": [
- { "time": 0.0667 },
- {
- "time": 0.1667,
- "x": 46.59,
- "curve": [ 0.192, 46.59, 0.242, 0, 0.192, 0, 0.242, 0 ]
- },
- { "time": 0.2667 }
- ]
- },
- "tank-glow": {
- "translate": [
- {
- "time": 0.1333,
- "x": 198.14,
- "curve": [ 0.199, 190.76, 0.222, -255.89, 0.199, 0, 0.222, 0 ]
- },
- { "time": 0.2333, "x": -390 }
- ],
- "scale": [
- { "time": 0.0667 },
- {
- "time": 0.1333,
- "x": 1.185,
- "y": 0.945,
- "curve": [ 0.199, 1.182, 0.222, 1.048, 0.199, 0.939, 0.222, 0.579 ]
- },
- { "time": 0.2333, "x": 1.008, "y": 0.471 }
- ]
- }
- },
- "deform": {
- "default": {
- "clipping": {
- "clipping": [
- {
- "time": 0.0667,
- "offset": 54,
- "vertices": [ 4.59198, -4.59192 ]
- },
- {
- "time": 0.1333,
- "offset": 8,
- "vertices": [ -8.97369, -1.88211, 9.11177, 1.02258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -14.73321, -45.16878, -30.31448, -84.4631, -32.24969, -108.78421, 70.26825, -36.90201 ]
- },
- {
- "time": 0.1667,
- "offset": 8,
- "vertices": [ -11.32373, -1.65065, 11.42179, 0.53259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -15.36503, -69.18713, -4.45626, -121.90839, 5.46554, -115.23274, 71.78526, -33.85687 ]
- },
- {
- "time": 0.2,
- "offset": 8,
- "vertices": [ -8.70522, 1.02196, 8.65102, -1.4101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4.59198, -4.59192 ]
- },
- {
- "time": 0.2333,
- "offset": 8,
- "vertices": [ -5.23146, 0.85796, 5.23882, -0.81519 ]
- },
- {
- "time": 0.2667,
- "offset": 54,
- "vertices": [ 4.59198, -4.59192 ]
- }
- ]
- },
- "smoke-glow": {
- "smoke-glow": [
- {
- "time": 0.1333,
- "vertices": [ -14.17073, 19.14352, 0, 0, -10.97961, -15.09065, -5.79558, -24.82121, 0.68117, -17.78759, -1.1179, -5.4463, 0, 0, 0, 0, 17.52957, 6.89397, -0.33841, -2.21582, 5.51004, 18.88118, -6.80153, 20.91101 ]
- },
- {
- "time": 0.1667,
- "vertices": [ -4.34264, 39.78125, 5.6649, -2.42686, -8.39346, -22.52338, -2.66431, 5.08595, -19.28093, 3.98568, -11.21397, 10.2879, 4.56749, 4.1329, -19.50706, -2.28786, 11.35747, 4.55941, 9.04341, -11.72194, 2.15381, 5.14344, -12.82158, 16.08209, -23.19814, 1.81836 ]
- },
- {
- "time": 0.2,
- "vertices": [ -3.95581, 36.12203, 37.20779, -0.87419, 21.29579, -15.76854, -2.02438, 6.16526, -5.92201, 4.19709, -1.39027, 9.92793, 7.70584, -0.7169, -6.69733, -2.62048, 17.91826, 7.77333, -12.2858, 3.25454, -12.75876, 3.71516, 9.67891, 15.48546 ]
- },
- {
- "time": 0.2333,
- "vertices": [ -11.9371, 26.01078, 2.91821, -0.27533, 7.69899, -17.45375, -2.02438, 6.16526, -5.92201, 4.19709, -1.39027, 9.92793, 7.70584, -0.7169, -6.69733, -2.62048, 17.91826, 7.77333, -4.30551, -6.01406, -12.75876, 3.71516, -5.10017, 17.59191 ]
- },
- {
- "time": 0.2667,
- "vertices": [ 0.5959, 23.58176, 20.74303, 0.93943, 7.69899, -17.45375, -2.02438, 6.16526, -5.92201, 4.19709, -1.39027, 9.92793, 20.51733, 2.52203, 13.35544, 2.64274, 24.32408, -1.94308, 8.50604, -20.99353, 13.14276, 5.73959, 6.31876, 19.2114, 16.98909, 0.80981 ]
- }
- ]
- }
- }
- },
- "drawOrder": [
- {
- "time": 0.3,
- "offsets": [
- { "slot": "smoke-puff1-bg2", "offset": 24 },
- { "slot": "smoke-puff1-bg8", "offset": 19 },
- { "slot": "smoke-puff1-bg9", "offset": 22 },
- { "slot": "smoke-puff1-bg3", "offset": 17 },
- { "slot": "smoke-puff1-fg17", "offset": 13 },
- { "slot": "smoke-puff1-fg2", "offset": 2 },
- { "slot": "smoke-puff1-fg5", "offset": 8 },
- { "slot": "smoke-puff1-fg6", "offset": 4 },
- { "slot": "smoke-puff1-fg7", "offset": -4 },
- { "slot": "smoke-puff1-fg4", "offset": -4 }
- ]
- },
- {
- "time": 0.3333,
- "offsets": [
- { "slot": "smoke-puff1-bg2", "offset": 8 },
- { "slot": "smoke-puff1-bg8", "offset": 5 },
- { "slot": "smoke-puff1-bg9", "offset": 3 },
- { "slot": "smoke-puff1-fg", "offset": 24 },
- { "slot": "smoke-puff1-fg5", "offset": -14 },
- { "slot": "smoke-puff1-fg6", "offset": -21 },
- { "slot": "smoke-puff1-fg7", "offset": -19 },
- { "slot": "smoke-puff1-fg10", "offset": -21 }
- ]
- },
- {
- "time": 0.3667,
- "offsets": [
- { "slot": "smoke-puff1-bg2", "offset": 7 },
- { "slot": "smoke-puff1-bg9", "offset": 4 },
- { "slot": "smoke-puff1-fg", "offset": 24 },
- { "slot": "smoke-puff1-fg2", "offset": 5 },
- { "slot": "smoke-puff1-fg6", "offset": -22 },
- { "slot": "smoke-puff1-fg7", "offset": -18 },
- { "slot": "smoke-puff1-fg10", "offset": -20 }
- ]
- },
- {
- "time": 0.4,
- "offsets": [
- { "slot": "smoke-puff1-bg2", "offset": 5 },
- { "slot": "smoke-puff1-bg4", "offset": 0 },
- { "slot": "smoke-puff1-fg", "offset": 24 },
- { "slot": "smoke-puff1-fg2", "offset": 5 },
- { "slot": "smoke-puff1-fg6", "offset": -21 },
- { "slot": "smoke-puff1-fg7", "offset": -18 },
- { "slot": "smoke-puff1-fg10", "offset": -22 }
- ]
- },
- {
- "time": 0.4333,
- "offsets": [
- { "slot": "smoke-puff1-bg2", "offset": 4 },
- { "slot": "smoke-puff1-bg9", "offset": 4 },
- { "slot": "smoke-puff1-fg", "offset": 24 },
- { "slot": "smoke-puff1-fg2", "offset": 5 },
- { "slot": "smoke-puff1-fg6", "offset": -17 },
- { "slot": "smoke-puff1-fg7", "offset": -19 },
- { "slot": "smoke-puff1-fg10", "offset": -23 }
- ]
- },
- {
- "time": 0.5333,
- "offsets": [
- { "slot": "smoke-puff1-bg2", "offset": 9 },
- { "slot": "smoke-puff1-bg12", "offset": 0 },
- { "slot": "smoke-puff1-fg", "offset": 24 },
- { "slot": "smoke-puff1-fg2", "offset": 6 },
- { "slot": "smoke-puff1-fg6", "offset": -20 },
- { "slot": "smoke-puff1-fg7", "offset": -19 },
- { "slot": "smoke-puff1-fg10", "offset": -23 },
- { "slot": "smoke-puff1-fg4", "offset": -5 }
- ]
- }
- ]
- }
- }
- }
|