monster_07.json 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084
  1. {
  2. "skeleton": {
  3. "hash": "qQFzkU+cURo",
  4. "spine": "4.0.49",
  5. "x": -278.78,
  6. "y": 37.42,
  7. "width": 507.32,
  8. "height": 530.09,
  9. "images": "./images/",
  10. "audio": "D:/drive#ajishiro/BUAT SETO/Monster projek/monster_07"
  11. },
  12. "bones": [
  13. { "name": "root" },
  14. { "name": "SideBODY", "parent": "root", "x": -135.78, "y": 243.22 },
  15. { "name": "SideMOUTH", "parent": "SideBODY", "length": 49.49, "rotation": -23.14, "x": 81.48, "y": -35.49 },
  16. { "name": "FrontBODY", "parent": "root", "x": -16.26, "y": 231.85 },
  17. { "name": "FrontMOUTH", "parent": "FrontBODY", "x": -3.13, "y": -78.41 },
  18. { "name": "BackBODY", "parent": "root", "x": -23.64, "y": 213.33 },
  19. { "name": "FrontBODY2", "parent": "FrontBODY", "x": -5.38, "y": -95.75 },
  20. { "name": "FrontBODY3", "parent": "FrontBODY", "x": 1.81, "y": 203.62 },
  21. { "name": "BackBODY2", "parent": "BackBODY", "x": 10.39, "y": 218.34 },
  22. { "name": "FrontEYECLOSED", "parent": "FrontBODY3", "x": -2.11, "y": -151.12, "transform": "noScale" },
  23. { "name": "BackBODY3", "parent": "BackBODY", "x": 3.44, "y": -55.77 }
  24. ],
  25. "slots": [
  26. { "name": "FrontBODY", "bone": "FrontBODY", "attachment": "FrontBODY" },
  27. { "name": "FrontEYECLOSED", "bone": "FrontEYECLOSED", "attachment": "FrontEYECLOSED" },
  28. { "name": "FrontMOUTH", "bone": "FrontMOUTH", "attachment": "FrontMOUTH" },
  29. { "name": "BackBODY", "bone": "BackBODY", "attachment": "BackBODY" },
  30. { "name": "SideBODY", "bone": "SideBODY", "attachment": "SideBODY" },
  31. { "name": "SideEYECLOSED", "bone": "SideBODY", "attachment": "SideEYECLOSED" },
  32. { "name": "SideMOUTH", "bone": "SideMOUTH", "attachment": "SideMOUTH" }
  33. ],
  34. "skins": [
  35. {
  36. "name": "Back",
  37. "attachments": {
  38. "BackBODY": {
  39. "BackBODY": {
  40. "name": "BackBODY2",
  41. "type": "mesh",
  42. "uvs": [ 1, 1, 0.8, 1, 0.6, 1, 0.4, 1, 0.2, 1, 0, 1, 0, 0.83333, 0, 0.66667, 0, 0.5, 0, 0.33333, 0, 0.16667, 0, 0, 0.2, 0, 0.4, 0, 0.6, 0, 0.8, 0, 1, 0, 1, 0.16667, 1, 0.33333, 1, 0.5, 1, 0.66667, 1, 0.83333, 0.8, 0.83333, 0.6, 0.83333, 0.4, 0.83333, 0.2, 0.83333, 0.8, 0.66667, 0.6, 0.66667, 0.4, 0.66667, 0.2, 0.66667, 0.8, 0.5, 0.6, 0.5, 0.4, 0.5, 0.2, 0.5, 0.8, 0.33333, 0.6, 0.33333, 0.4, 0.33333, 0.2, 0.33333, 0.8, 0.16667, 0.6, 0.16667, 0.4, 0.16667, 0.2, 0.16667 ],
  43. "triangles": [ 7, 8, 33, 29, 7, 33, 6, 7, 29, 25, 6, 29, 5, 6, 25, 4, 5, 25, 29, 33, 32, 28, 29, 32, 25, 29, 28, 24, 25, 28, 4, 25, 24, 3, 4, 24, 28, 32, 31, 27, 28, 31, 24, 28, 27, 23, 24, 27, 3, 24, 23, 2, 3, 23, 27, 31, 30, 26, 27, 30, 23, 27, 26, 22, 23, 26, 2, 23, 22, 1, 2, 22, 26, 30, 19, 20, 26, 19, 22, 26, 20, 21, 22, 20, 1, 22, 21, 0, 1, 21, 10, 11, 12, 41, 10, 12, 9, 10, 41, 37, 9, 41, 8, 9, 37, 33, 8, 37, 41, 12, 13, 40, 41, 13, 37, 41, 40, 36, 37, 40, 33, 37, 36, 32, 33, 36, 40, 13, 14, 39, 40, 14, 36, 40, 39, 35, 36, 39, 32, 36, 35, 31, 32, 35, 39, 14, 15, 38, 39, 15, 35, 39, 38, 34, 35, 38, 31, 35, 34, 30, 31, 34, 38, 15, 16, 17, 38, 16, 34, 38, 17, 18, 34, 17, 30, 34, 18, 19, 30, 18 ],
  44. "vertices": [ 2, 8, 214.01, -390.77, 0.01026, 10, 220.97, -116.67, 0.98974, 2, 8, 126.41, -390.77, 0.00351, 10, 133.37, -116.67, 0.99649, 1, 10, 45.77, -116.67, 1, 1, 10, -41.83, -116.67, 1, 2, 8, -136.39, -390.77, 0.00109, 10, -129.43, -116.67, 0.99891, 2, 8, -223.99, -390.77, 0.00509, 10, -217.03, -116.67, 0.99491, 2, 8, -223.99, -306.77, 0.05553, 10, -217.03, -32.67, 0.94447, 2, 8, -223.99, -222.77, 0.22072, 10, -217.03, 51.33, 0.77928, 2, 8, -223.99, -138.77, 0.48278, 10, -217.03, 135.33, 0.51722, 2, 8, -223.99, -54.77, 0.75052, 10, -217.03, 219.33, 0.24948, 2, 8, -223.99, 29.23, 0.92819, 10, -217.03, 303.33, 0.07181, 2, 8, -223.99, 113.23, 0.98569, 10, -217.03, 387.33, 0.01431, 2, 8, -136.39, 113.23, 0.99409, 10, -129.43, 387.33, 0.00591, 1, 8, -48.79, 113.23, 1, 1, 8, 38.81, 113.23, 1, 2, 8, 126.41, 113.23, 0.9985, 10, 133.37, 387.33, 0.0015, 2, 8, 214.02, 113.23, 0.99381, 10, 220.97, 387.33, 0.00619, 2, 8, 214.01, 29.23, 0.94047, 10, 220.97, 303.33, 0.05953, 2, 8, 214.01, -54.77, 0.76856, 10, 220.97, 219.33, 0.23144, 2, 8, 214.01, -138.77, 0.50196, 10, 220.97, 135.33, 0.49804, 2, 8, 214.01, -222.77, 0.23616, 10, 220.97, 51.33, 0.76384, 2, 8, 214.01, -306.77, 0.06425, 10, 220.97, -32.67, 0.93575, 2, 8, 126.41, -306.77, 0.04732, 10, 133.37, -32.67, 0.95268, 2, 8, 38.81, -306.77, 0.00819, 10, 45.77, -32.67, 0.99181, 2, 8, -48.79, -306.77, 0.00493, 10, -41.83, -32.67, 0.99507, 2, 8, -136.39, -306.77, 0.03983, 10, -129.43, -32.67, 0.96017, 2, 8, 126.41, -222.77, 0.21449, 10, 133.37, 51.33, 0.78551, 2, 8, 38.81, -222.77, 0.15594, 10, 45.77, 51.33, 0.84406, 2, 8, -48.79, -222.77, 0.14837, 10, -41.83, 51.33, 0.85163, 2, 8, -136.39, -222.77, 0.20069, 10, -129.43, 51.33, 0.79931, 2, 8, 126.41, -138.77, 0.50002, 10, 133.37, 135.33, 0.49998, 2, 8, 38.81, -138.77, 0.49317, 10, 45.77, 135.33, 0.50683, 2, 8, -48.79, -138.77, 0.48528, 10, -41.83, 135.33, 0.51472, 2, 8, -136.39, -138.77, 0.48289, 10, -129.43, 135.33, 0.51711, 2, 8, 126.41, -54.77, 0.78777, 10, 133.37, 219.33, 0.21223, 2, 8, 38.81, -54.77, 0.83676, 10, 45.77, 219.33, 0.16324, 2, 8, -48.79, -54.77, 0.82619, 10, -41.83, 219.33, 0.17381, 2, 8, -136.39, -54.77, 0.77068, 10, -129.43, 219.33, 0.22932, 2, 8, 126.41, 29.23, 0.95664, 10, 133.37, 303.33, 0.04336, 2, 8, 38.81, 29.23, 0.99426, 10, 45.77, 303.33, 0.00574, 2, 8, -48.79, 29.23, 0.98843, 10, -41.83, 303.33, 0.01157, 2, 8, -136.39, 29.23, 0.94612, 10, -129.43, 303.33, 0.05388 ],
  45. "hull": 22,
  46. "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, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 0 ],
  47. "width": 438,
  48. "height": 504
  49. }
  50. }
  51. }
  52. },
  53. {
  54. "name": "Front",
  55. "attachments": {
  56. "FrontBODY": {
  57. "FrontBODY": {
  58. "name": "FrontBODY2",
  59. "type": "mesh",
  60. "uvs": [ 1, 1, 0.8, 1, 0.6, 1, 0.4, 1, 0.2, 1, 0, 1, 0, 0.8, 0, 0.6, 0, 0.4, 0, 0.2, 0, 0, 0.2, 0, 0.4, 0, 0.6, 0, 0.8, 0, 1, 0, 1, 0.2, 1, 0.4, 1, 0.6, 1, 0.8, 0.8, 0.8, 0.6, 0.8, 0.4, 0.8, 0.2, 0.8, 0.8, 0.6, 0.6, 0.6, 0.4, 0.6, 0.2, 0.6, 0.8, 0.4, 0.6, 0.4, 0.4, 0.4, 0.2, 0.4, 0.8, 0.2, 0.6, 0.2, 0.4, 0.2, 0.2, 0.2 ],
  61. "triangles": [ 9, 10, 11, 35, 9, 11, 8, 9, 35, 31, 8, 35, 7, 8, 31, 27, 7, 31, 35, 11, 12, 34, 35, 12, 31, 35, 34, 30, 31, 34, 27, 31, 30, 26, 27, 30, 34, 12, 13, 33, 34, 13, 30, 34, 33, 29, 30, 33, 26, 30, 29, 25, 26, 29, 33, 13, 14, 32, 33, 14, 29, 33, 32, 28, 29, 32, 25, 29, 28, 24, 25, 28, 32, 14, 15, 16, 32, 15, 28, 32, 16, 17, 28, 16, 24, 28, 17, 18, 24, 17, 6, 7, 27, 23, 6, 27, 5, 6, 23, 4, 5, 23, 23, 27, 26, 22, 23, 26, 4, 23, 22, 3, 4, 22, 22, 26, 25, 21, 22, 25, 3, 22, 21, 2, 3, 21, 21, 25, 24, 20, 21, 24, 2, 21, 20, 1, 2, 20, 20, 24, 18, 19, 20, 18, 1, 20, 19, 0, 1, 19 ],
  62. "vertices": [ 2, 6, 223.68, -23.79, 0.85849, 7, 216.48, -323.16, 0.14151, 2, 6, 136.08, -23.79, 0.89417, 7, 128.88, -323.16, 0.10583, 2, 6, 48.48, -23.79, 0.97672, 7, 41.28, -323.16, 0.02328, 2, 6, -39.12, -23.79, 0.98921, 7, -46.32, -323.16, 0.01079, 2, 6, -126.72, -23.79, 0.92128, 7, -133.92, -323.16, 0.07872, 2, 6, -214.32, -23.79, 0.88956, 7, -221.52, -323.16, 0.11044, 2, 6, -214.32, 58.21, 0.79657, 7, -221.52, -241.16, 0.20343, 2, 6, -214.32, 140.21, 0.56351, 7, -221.52, -159.16, 0.43649, 2, 6, -214.32, 222.21, 0.29675, 7, -221.52, -77.16, 0.70325, 2, 6, -214.32, 304.21, 0.1028, 7, -221.52, 4.84, 0.8972, 2, 6, -214.32, 386.21, 0.03517, 7, -221.52, 86.84, 0.96483, 2, 6, -126.72, 386.21, 0.0187, 7, -133.92, 86.84, 0.9813, 2, 6, -39.12, 386.21, 6.0E-5, 7, -46.32, 86.84, 0.99994, 1, 7, 41.28, 86.84, 1, 2, 6, 136.08, 386.21, 0.01179, 7, 128.88, 86.84, 0.98821, 2, 6, 223.68, 386.21, 0.02485, 7, 216.48, 86.84, 0.97515, 2, 6, 223.68, 304.21, 0.09, 7, 216.48, 4.84, 0.91, 2, 6, 223.68, 222.21, 0.27837, 7, 216.48, -77.16, 0.72163, 2, 6, 223.68, 140.21, 0.53935, 7, 216.48, -159.16, 0.46065, 2, 6, 223.68, 58.21, 0.76735, 7, 216.48, -241.16, 0.23265, 2, 6, 136.08, 58.21, 0.79351, 7, 128.88, -241.16, 0.20649, 2, 6, 48.48, 58.21, 0.85233, 7, 41.28, -241.16, 0.14767, 2, 6, -39.12, 58.21, 0.8644, 7, -46.32, -241.16, 0.1356, 2, 6, -126.72, 58.21, 0.81864, 7, -133.92, -241.16, 0.18136, 2, 6, 136.08, 140.21, 0.54396, 7, 128.88, -159.16, 0.45604, 2, 6, 48.48, 140.21, 0.55446, 7, 41.28, -159.16, 0.44554, 2, 6, -39.12, 140.21, 0.56306, 7, -46.32, -159.16, 0.43694, 2, 6, -126.72, 140.21, 0.56437, 7, -133.92, -159.16, 0.43563, 2, 6, 136.08, 222.21, 0.26274, 7, 128.88, -77.16, 0.73726, 2, 6, 48.48, 222.21, 0.22674, 7, 41.28, -77.16, 0.77326, 2, 6, -39.12, 222.21, 0.23344, 7, -46.32, -77.16, 0.76656, 2, 6, -126.72, 222.21, 0.27812, 7, -133.92, -77.16, 0.72188, 2, 6, 136.08, 304.21, 0.07009, 7, 128.88, 4.84, 0.92991, 2, 6, 48.48, 304.21, 0.01932, 7, 41.28, 4.84, 0.98068, 2, 6, -39.12, 304.21, 0.02516, 7, -46.32, 4.84, 0.97484, 2, 6, -126.72, 304.21, 0.08038, 7, -133.92, 4.84, 0.91962 ],
  63. "hull": 20,
  64. "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, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 0 ],
  65. "width": 438,
  66. "height": 410
  67. }
  68. },
  69. "FrontEYECLOSED": {
  70. "FrontEYECLOSED": { "name": "FrontEYECLOSED2", "x": 0.6, "y": 0.96, "width": 226, "height": 150 }
  71. },
  72. "FrontMOUTH": {
  73. "FrontMOUTH": { "name": "FrontMOUTH2", "x": -0.08, "y": -22.63, "width": 389, "height": 225 }
  74. }
  75. }
  76. },
  77. {
  78. "name": "Side",
  79. "attachments": {
  80. "SideBODY": {
  81. "SideBODY": { "name": "SideBODY2", "x": 133.4, "y": 91.7, "width": 428, "height": 466 }
  82. },
  83. "SideEYECLOSED": {
  84. "SideEYECLOSED": { "name": "SideEYECLOSED2", "x": 234.09, "y": 121.09, "width": 181, "height": 187 }
  85. },
  86. "SideMOUTH": {
  87. "SideMOUTH": { "name": "SideMOUTH2", "x": 136.52, "y": 51.83, "rotation": 23.14, "width": 269, "height": 262 }
  88. }
  89. }
  90. }
  91. ],
  92. "events": {
  93. "OnDamaging": {}
  94. },
  95. "animations": {
  96. "Back_Attack": {
  97. "slots": {
  98. "FrontBODY": {
  99. "attachment": [
  100. { "name": null }
  101. ]
  102. },
  103. "FrontEYECLOSED": {
  104. "attachment": [
  105. { "name": null }
  106. ]
  107. },
  108. "FrontMOUTH": {
  109. "attachment": [
  110. { "name": null }
  111. ]
  112. },
  113. "SideBODY": {
  114. "attachment": [
  115. { "name": null }
  116. ]
  117. },
  118. "SideEYECLOSED": {
  119. "attachment": [
  120. { "name": null }
  121. ]
  122. },
  123. "SideMOUTH": {
  124. "attachment": [
  125. { "name": null }
  126. ]
  127. }
  128. },
  129. "bones": {
  130. "SideBODY": {
  131. "rotate": [
  132. {
  133. "curve": [ 0.025, 0, 0.047, -1.29 ]
  134. },
  135. {
  136. "time": 0.0667,
  137. "value": -3.53,
  138. "curve": [ 0.158, -10.99, 0.199, -38.95 ]
  139. },
  140. {
  141. "time": 0.5,
  142. "value": -38.95,
  143. "curve": [ 0.542, -38.95, 0.625, -55.57 ]
  144. },
  145. {
  146. "time": 0.6667,
  147. "value": -55.57,
  148. "curve": [ 0.717, -55.57, 0.817, 15.25 ]
  149. },
  150. {
  151. "time": 0.8667,
  152. "value": 15.25,
  153. "curve": [ 0.942, 15.25, 1.092, -13.73 ]
  154. },
  155. {
  156. "time": 1.1667,
  157. "value": -13.73,
  158. "curve": [ 1.208, -13.73, 1.292, 0 ]
  159. },
  160. { "time": 1.3333 }
  161. ],
  162. "translate": [
  163. {
  164. "curve": [ 0.137, 0, 0.139, -228.42, 0.137, 0, 0.139, 82.06 ]
  165. },
  166. {
  167. "time": 0.5,
  168. "x": -228.42,
  169. "y": 82.06,
  170. "curve": [ 0.542, -228.42, 0.625, 302.97, 0.542, 82.06, 0.625, 116.49 ]
  171. },
  172. {
  173. "time": 0.6667,
  174. "x": 302.97,
  175. "y": 116.49,
  176. "curve": [ 0.75, 302.97, 0.917, -155.78, 0.75, 116.49, 0.917, 34.57 ]
  177. },
  178. {
  179. "time": 1,
  180. "x": -155.78,
  181. "y": 34.57,
  182. "curve": [ 1.083, -155.78, 1.25, 0, 1.083, 34.57, 1.25, 0 ]
  183. },
  184. { "time": 1.3333 }
  185. ]
  186. },
  187. "SideMOUTH": {
  188. "rotate": [
  189. {
  190. "curve": [ 0.125, 0, 0.375, -3.51 ]
  191. },
  192. {
  193. "time": 0.5,
  194. "value": -3.51,
  195. "curve": [ 0.542, -3.51, 0.518, -0.61 ]
  196. },
  197. {
  198. "time": 0.6667,
  199. "value": -0.61,
  200. "curve": [ 0.833, -0.61, 1.167, 0 ]
  201. },
  202. { "time": 1.3333 }
  203. ],
  204. "translate": [
  205. {
  206. "curve": [ 0.125, 0, 0.375, -13.39, 0.125, 0, 0.375, -71.39 ]
  207. },
  208. {
  209. "time": 0.5,
  210. "x": -13.39,
  211. "y": -71.39,
  212. "curve": [ 0.542, -13.39, 0.518, -11.27, 0.542, -71.39, 0.518, 4.13 ]
  213. },
  214. {
  215. "time": 0.6667,
  216. "x": -11.27,
  217. "y": 4.13,
  218. "curve": [ 0.833, -11.27, 1.167, 0, 0.833, 4.13, 1.167, 0 ]
  219. },
  220. { "time": 1.3333 }
  221. ]
  222. },
  223. "FrontEYECLOSED": {
  224. "translate": [
  225. {
  226. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -18.66 ]
  227. },
  228. { "time": 0.5, "y": -18.66, "curve": "stepped" },
  229. {
  230. "time": 1,
  231. "y": -18.66,
  232. "curve": [ 1.083, 0, 1.25, 0, 1.083, -18.66, 1.25, 0 ]
  233. },
  234. { "time": 1.3333 }
  235. ],
  236. "scale": [
  237. {
  238. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.045 ]
  239. },
  240. { "time": 0.5, "y": 1.045, "curve": "stepped" },
  241. {
  242. "time": 1,
  243. "y": 1.045,
  244. "curve": [ 1.083, 1, 1.25, 1, 1.083, 1.045, 1.25, 1 ]
  245. },
  246. { "time": 1.3333 }
  247. ]
  248. },
  249. "FrontBODY2": {
  250. "scale": [
  251. {
  252. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 0.57 ]
  253. },
  254. { "time": 0.5, "y": 0.57, "curve": "stepped" },
  255. {
  256. "time": 0.6667,
  257. "y": 0.57,
  258. "curve": [ 0.75, 1, 0.917, 1.026, 0.75, 0.57, 0.917, 1.259 ]
  259. },
  260. {
  261. "time": 1,
  262. "x": 1.026,
  263. "y": 1.259,
  264. "curve": [ 1.083, 1.026, 1.25, 1, 1.083, 1.259, 1.25, 1 ]
  265. },
  266. { "time": 1.3333 }
  267. ]
  268. },
  269. "FrontMOUTH": {
  270. "translate": [
  271. {
  272. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -61.39 ]
  273. },
  274. { "time": 0.5, "y": -61.39, "curve": "stepped" },
  275. {
  276. "time": 0.6667,
  277. "y": -61.39,
  278. "curve": [ 0.742, 0, 0.892, 0, 0.742, -61.39, 0.892, 21.87 ]
  279. },
  280. {
  281. "time": 0.9667,
  282. "y": 21.87,
  283. "curve": [ 1.058, 0, 1.242, 0, 1.058, 21.87, 1.242, 0 ]
  284. },
  285. { "time": 1.3333 }
  286. ],
  287. "scale": [
  288. {
  289. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 0.747 ]
  290. },
  291. { "time": 0.5, "y": 0.747, "curve": "stepped" },
  292. {
  293. "time": 0.6667,
  294. "y": 0.747,
  295. "curve": [ 0.742, 1, 0.892, 1, 0.742, 0.747, 0.892, 1.185 ]
  296. },
  297. {
  298. "time": 0.9667,
  299. "y": 1.185,
  300. "curve": [ 1.058, 1, 1.242, 1, 1.058, 1.185, 1.242, 1 ]
  301. },
  302. { "time": 1.3333 }
  303. ]
  304. },
  305. "FrontBODY3": {
  306. "scale": [
  307. {
  308. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.099 ]
  309. },
  310. { "time": 0.5, "y": 1.099, "curve": "stepped" },
  311. {
  312. "time": 0.6667,
  313. "y": 1.099,
  314. "curve": [ 0.75, 1, 0.917, 0.895, 0.75, 1.099, 0.917, 0.785 ]
  315. },
  316. {
  317. "time": 1,
  318. "x": 0.895,
  319. "y": 0.785,
  320. "curve": [ 1.083, 0.895, 1.25, 1, 1.083, 0.785, 1.25, 1 ]
  321. },
  322. { "time": 1.3333 }
  323. ]
  324. },
  325. "FrontBODY": {
  326. "translate": [
  327. {
  328. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, 65.06 ]
  329. },
  330. {
  331. "time": 0.5,
  332. "y": 65.06,
  333. "curve": [ 0.542, 0, 0.625, 0, 0.542, 65.06, 0.625, -277.04 ]
  334. },
  335. {
  336. "time": 0.6667,
  337. "y": -277.04,
  338. "curve": [ 0.75, 0, 0.758, 0, 0.75, -277.04, 0.758, 104.84 ]
  339. },
  340. {
  341. "time": 1,
  342. "y": 114.89,
  343. "curve": [ 1.083, 0, 1.25, 0, 1.083, 114.89, 1.25, 0 ]
  344. },
  345. { "time": 1.3333 }
  346. ]
  347. },
  348. "BackBODY": {
  349. "translate": [
  350. {
  351. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -74.74 ]
  352. },
  353. {
  354. "time": 0.5,
  355. "y": -74.74,
  356. "curve": [ 0.542, 0, 0.625, 0, 0.542, -74.74, 0.625, 289.92 ]
  357. },
  358. {
  359. "time": 0.6667,
  360. "y": 289.92,
  361. "curve": [ 0.75, 0, 0.744, 0, 0.75, 289.92, 0.744, -87.55 ]
  362. },
  363. {
  364. "time": 1,
  365. "y": -97.06,
  366. "curve": [ 1.083, 0, 1.25, 0, 1.083, -97.06, 1.25, 0 ]
  367. },
  368. { "time": 1.3333 }
  369. ]
  370. },
  371. "BackBODY2": {
  372. "scale": [
  373. {},
  374. { "time": 0.5, "y": 0.684, "curve": "stepped" },
  375. {
  376. "time": 0.6667,
  377. "y": 0.684,
  378. "curve": [ 0.75, 1, 0.732, 1.077, 0.75, 0.684, 0.732, 1.475 ]
  379. },
  380. { "time": 1, "x": 1.079, "y": 1.495 },
  381. { "time": 1.3333 }
  382. ]
  383. },
  384. "BackBODY3": {
  385. "scale": [
  386. {
  387. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.105 ]
  388. },
  389. { "time": 0.5, "y": 1.105, "curve": "stepped" },
  390. {
  391. "time": 0.6667,
  392. "y": 1.105,
  393. "curve": [ 0.75, 1, 0.732, 0.871, 0.75, 1.105, 0.732, 0.821 ]
  394. },
  395. {
  396. "time": 1,
  397. "x": 0.868,
  398. "y": 0.814,
  399. "curve": [ 1.083, 0.868, 1.25, 1, 1.083, 0.814, 1.25, 1 ]
  400. },
  401. { "time": 1.3333 }
  402. ]
  403. }
  404. },
  405. "events": [
  406. { "time": 0.6333, "name": "OnDamaging" }
  407. ]
  408. },
  409. "Back_Death": {
  410. "slots": {
  411. "FrontBODY": {
  412. "attachment": [
  413. { "name": null }
  414. ]
  415. },
  416. "FrontEYECLOSED": {
  417. "attachment": [
  418. { "name": null }
  419. ]
  420. },
  421. "FrontMOUTH": {
  422. "attachment": [
  423. { "name": null }
  424. ]
  425. },
  426. "SideBODY": {
  427. "attachment": [
  428. { "name": null }
  429. ]
  430. },
  431. "SideEYECLOSED": {
  432. "rgba": [
  433. { "color": "ffffff00" },
  434. { "time": 0.1667, "color": "ffffffff" }
  435. ],
  436. "attachment": [
  437. { "name": null }
  438. ]
  439. },
  440. "SideMOUTH": {
  441. "attachment": [
  442. { "name": null }
  443. ]
  444. }
  445. },
  446. "bones": {
  447. "SideBODY": {
  448. "rotate": [
  449. {
  450. "curve": [ 0.125, 0, 0.233, 10.19 ]
  451. },
  452. {
  453. "time": 0.5,
  454. "value": 22.04,
  455. "curve": [ 0.612, 29.26, 0.712, 43.27 ]
  456. },
  457. { "time": 0.8333, "value": 43.7 },
  458. { "time": 1.2333, "value": 47.86 }
  459. ],
  460. "translate": [
  461. {
  462. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  463. },
  464. {
  465. "time": 0.5,
  466. "x": 17.28,
  467. "y": 300.96,
  468. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  469. },
  470. {
  471. "time": 0.8667,
  472. "x": 17.28,
  473. "y": -148.73,
  474. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  475. },
  476. {
  477. "time": 1.0333,
  478. "x": 17.28,
  479. "y": -96.36,
  480. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  481. },
  482. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  483. ]
  484. },
  485. "SideMOUTH": {
  486. "rotate": [
  487. {
  488. "curve": [ 0.083, 0, 0.157, -11.99 ]
  489. },
  490. {
  491. "time": 0.3333,
  492. "value": -12.03,
  493. "curve": [ 0.458, -12.03, 0.569, -0.17 ]
  494. },
  495. {
  496. "time": 0.8333,
  497. "value": -0.12,
  498. "curve": [ 0.933, -0.12, 1.022, -11.99 ]
  499. },
  500. { "time": 1.2333, "value": -12.03 }
  501. ],
  502. "translate": [
  503. {
  504. "curve": [ 0.083, 0, 0.157, -19.74, 0.083, 0, 0.157, -28.74 ]
  505. },
  506. {
  507. "time": 0.3333,
  508. "x": -19.81,
  509. "y": -28.85,
  510. "curve": [ 0.458, -19.81, 0.569, -3.16, 0.458, -28.85, 0.569, 0.39 ]
  511. },
  512. {
  513. "time": 0.8333,
  514. "x": -3.1,
  515. "y": 0.5,
  516. "curve": [ 0.933, -3.1, 1.022, -19.75, 0.933, 0.5, 1.022, -28.74 ]
  517. },
  518. { "time": 1.2333, "x": -19.81, "y": -28.85 }
  519. ]
  520. },
  521. "FrontBODY": {
  522. "translate": [
  523. {
  524. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  525. },
  526. {
  527. "time": 0.5,
  528. "x": 17.28,
  529. "y": 300.96,
  530. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  531. },
  532. {
  533. "time": 0.8667,
  534. "x": 17.28,
  535. "y": -148.73,
  536. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  537. },
  538. {
  539. "time": 1.0333,
  540. "x": 17.28,
  541. "y": -96.36,
  542. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  543. },
  544. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  545. ]
  546. },
  547. "BackBODY": {
  548. "translate": [
  549. {
  550. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  551. },
  552. {
  553. "time": 0.5,
  554. "x": 17.28,
  555. "y": 300.96,
  556. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  557. },
  558. {
  559. "time": 0.8667,
  560. "x": 17.28,
  561. "y": -148.73,
  562. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  563. },
  564. {
  565. "time": 1.0333,
  566. "x": 17.28,
  567. "y": -96.36,
  568. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  569. },
  570. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  571. ]
  572. },
  573. "FrontBODY3": {
  574. "scale": [
  575. {
  576. "time": 0.3333,
  577. "curve": [ 0.417, 1, 0.583, 0.808, 0.417, 1, 0.583, 0.596 ]
  578. },
  579. { "time": 0.6667, "x": 0.808, "y": 0.596 }
  580. ]
  581. },
  582. "FrontBODY2": {
  583. "scale": [
  584. {
  585. "time": 0.3333,
  586. "curve": [ 0.417, 1, 0.583, 1.032, 0.417, 1, 0.583, 1.259 ]
  587. },
  588. { "time": 0.6667, "x": 1.032, "y": 1.259 }
  589. ]
  590. },
  591. "FrontEYECLOSED": {
  592. "translate": [
  593. { "time": 0.3333 },
  594. { "time": 0.6667, "y": -47.6 }
  595. ]
  596. },
  597. "FrontMOUTH": {
  598. "translate": [
  599. {
  600. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, -52.95 ]
  601. },
  602. {
  603. "time": 0.3333,
  604. "y": -52.95,
  605. "curve": [ 0.417, 0, 0.583, 0, 0.417, -52.95, 0.583, 3.83 ]
  606. },
  607. { "time": 0.6667, "y": 3.83, "curve": "stepped" },
  608. {
  609. "time": 0.8333,
  610. "y": 3.83,
  611. "curve": [ 0.933, 0, 1.133, 0, 0.933, 3.83, 1.133, -48.82 ]
  612. },
  613. { "time": 1.2333, "y": -48.82 }
  614. ]
  615. },
  616. "BackBODY2": {
  617. "translate": [
  618. {
  619. "time": 0.3333,
  620. "curve": [ 0.417, 0, 0.583, 0, 0.417, 0, 0.583, -36.44 ]
  621. },
  622. { "time": 0.6667, "y": -36.44 }
  623. ],
  624. "scale": [
  625. {
  626. "time": 0.3333,
  627. "curve": [ 0.417, 1, 0.583, 1.141, 0.417, 1, 0.583, 1.573 ]
  628. },
  629. { "time": 0.6667, "x": 1.141, "y": 1.573 }
  630. ]
  631. },
  632. "BackBODY3": {
  633. "scale": [
  634. {
  635. "time": 0.3333,
  636. "curve": [ 0.417, 1, 0.583, 0.872, 0.417, 1, 0.583, 0.913 ]
  637. },
  638. { "time": 0.6667, "x": 0.872, "y": 0.913 }
  639. ]
  640. }
  641. }
  642. },
  643. "Back_Hurt": {
  644. "slots": {
  645. "FrontBODY": {
  646. "attachment": [
  647. { "name": null }
  648. ]
  649. },
  650. "FrontEYECLOSED": {
  651. "attachment": [
  652. { "name": null }
  653. ]
  654. },
  655. "FrontMOUTH": {
  656. "attachment": [
  657. { "name": null }
  658. ]
  659. },
  660. "SideBODY": {
  661. "attachment": [
  662. { "name": null }
  663. ]
  664. },
  665. "SideEYECLOSED": {
  666. "attachment": [
  667. { "name": null }
  668. ]
  669. },
  670. "SideMOUTH": {
  671. "attachment": [
  672. { "name": null }
  673. ]
  674. }
  675. },
  676. "bones": {
  677. "SideBODY": {
  678. "rotate": [
  679. {
  680. "curve": [ 0.042, 0, 0.031, 14.87 ]
  681. },
  682. {
  683. "time": 0.1667,
  684. "value": 15.25,
  685. "curve": [ 0.225, 15.25, 0.342, -13.73 ]
  686. },
  687. {
  688. "time": 0.4,
  689. "value": -13.73,
  690. "curve": [ 0.442, -13.73, 0.525, 0 ]
  691. },
  692. { "time": 0.5667 }
  693. ],
  694. "translate": [
  695. {
  696. "curve": [ 0.058, 0, 0.044, -151.95, 0.058, 0, 0.044, 33.72 ]
  697. },
  698. {
  699. "time": 0.2333,
  700. "x": -155.78,
  701. "y": 34.57,
  702. "curve": [ 0.317, -155.78, 0.483, 0, 0.317, 34.57, 0.483, 0 ]
  703. },
  704. { "time": 0.5667 }
  705. ]
  706. },
  707. "FrontBODY": {
  708. "translate": [
  709. {
  710. "curve": [ 0.058, 0, 0.056, 0, 0.058, 0, 0.056, 111.59 ]
  711. },
  712. {
  713. "time": 0.2333,
  714. "y": 114.89,
  715. "curve": [ 0.317, 0, 0.483, 0, 0.317, 114.89, 0.483, 0 ]
  716. },
  717. { "time": 0.5667 }
  718. ]
  719. },
  720. "FrontBODY3": {
  721. "scale": [
  722. {
  723. "curve": [ 0.058, 1, 0.056, 0.898, 0.058, 1, 0.056, 0.792 ]
  724. },
  725. {
  726. "time": 0.2333,
  727. "x": 0.895,
  728. "y": 0.785,
  729. "curve": [ 0.317, 0.895, 0.483, 1, 0.317, 0.785, 0.483, 1 ]
  730. },
  731. { "time": 0.5667 }
  732. ]
  733. },
  734. "FrontBODY2": {
  735. "scale": [
  736. {
  737. "curve": [ 0.058, 1, 0.056, 1.026, 0.058, 1, 0.056, 1.251 ]
  738. },
  739. {
  740. "time": 0.2333,
  741. "x": 1.026,
  742. "y": 1.259,
  743. "curve": [ 0.317, 1.026, 0.483, 1, 0.317, 1.259, 0.483, 1 ]
  744. },
  745. { "time": 0.5667 }
  746. ]
  747. },
  748. "FrontMOUTH": {
  749. "translate": [
  750. {
  751. "curve": [ 0.05, 0, 0.048, 0, 0.05, 0, 0.048, 21.24 ]
  752. },
  753. {
  754. "time": 0.2,
  755. "y": 21.87,
  756. "curve": [ 0.292, 0, 0.475, 0, 0.292, 21.87, 0.475, 0 ]
  757. },
  758. { "time": 0.5667 }
  759. ],
  760. "scale": [
  761. {
  762. "curve": [ 0.05, 1, 0.048, 1, 0.05, 1, 0.048, 1.18 ]
  763. },
  764. {
  765. "time": 0.2,
  766. "y": 1.185,
  767. "curve": [ 0.292, 1, 0.475, 1, 0.292, 1.185, 0.475, 1 ]
  768. },
  769. { "time": 0.5667 }
  770. ]
  771. },
  772. "BackBODY": {
  773. "translate": [
  774. {
  775. "curve": [ 0.058, 0, 0.112, 0, 0.058, 0, 0.112, -106.9 ]
  776. },
  777. {
  778. "time": 0.2333,
  779. "y": -111.94,
  780. "curve": [ 0.317, 0, 0.483, 0, 0.317, -111.94, 0.483, 0 ]
  781. },
  782. { "time": 0.5667 }
  783. ]
  784. },
  785. "BackBODY2": {
  786. "scale": [
  787. {
  788. "curve": [ 0.058, 1, 0.112, 1.076, 0.058, 1, 0.112, 1.472 ]
  789. },
  790. { "time": 0.2333, "x": 1.079, "y": 1.495 },
  791. { "time": 0.5667 }
  792. ]
  793. },
  794. "BackBODY3": {
  795. "scale": [
  796. {
  797. "curve": [ 0.058, 1, 0.112, 0.874, 0.058, 1, 0.112, 0.822 ]
  798. },
  799. {
  800. "time": 0.2333,
  801. "x": 0.868,
  802. "y": 0.814,
  803. "curve": [ 0.317, 0.868, 0.483, 1, 0.317, 0.814, 0.483, 1 ]
  804. },
  805. { "time": 0.5667 }
  806. ]
  807. }
  808. }
  809. },
  810. "Back_Idle": {
  811. "slots": {
  812. "FrontBODY": {
  813. "attachment": [
  814. { "name": null }
  815. ]
  816. },
  817. "FrontEYECLOSED": {
  818. "attachment": [
  819. { "name": null }
  820. ]
  821. },
  822. "FrontMOUTH": {
  823. "attachment": [
  824. { "name": null }
  825. ]
  826. },
  827. "SideBODY": {
  828. "attachment": [
  829. { "name": null }
  830. ]
  831. },
  832. "SideEYECLOSED": {
  833. "attachment": [
  834. { "name": null }
  835. ]
  836. },
  837. "SideMOUTH": {
  838. "attachment": [
  839. { "name": null }
  840. ]
  841. }
  842. },
  843. "bones": {
  844. "SideBODY": {
  845. "rotate": [
  846. {
  847. "curve": [ 0.208, 0, 0.625, -2.71 ]
  848. },
  849. {
  850. "time": 0.8333,
  851. "value": -2.71,
  852. "curve": [ 1.042, -2.71, 1.458, 0 ]
  853. },
  854. { "time": 1.6667 }
  855. ],
  856. "translate": [
  857. {
  858. "curve": [ 0.208, 0, 0.373, 9.32, 0.208, 0, 0.373, -33.77 ]
  859. },
  860. {
  861. "time": 0.8333,
  862. "x": 9.35,
  863. "y": -33.9,
  864. "curve": [ 1.042, 9.35, 1.206, 0.04, 1.042, -33.9, 1.206, -0.13 ]
  865. },
  866. { "time": 1.6667 }
  867. ]
  868. },
  869. "SideMOUTH": {
  870. "translate": [
  871. {
  872. "y": -5.63,
  873. "curve": [ 0.062, 0, 0.119, 0, 0.062, -2.16, 0.119, 0 ]
  874. },
  875. {
  876. "time": 0.1667,
  877. "curve": [ 0.375, 0, 0.792, 0, 0.375, 0, 0.792, -43.25 ]
  878. },
  879. {
  880. "time": 1,
  881. "y": -43.25,
  882. "curve": [ 1.162, 0, 1.453, 0, 1.162, -43.25, 1.453, -16.38 ]
  883. },
  884. { "time": 1.6667, "y": -5.63 }
  885. ]
  886. },
  887. "FrontBODY": {
  888. "translate": [
  889. {
  890. "curve": [ 0.208, 0, 0.625, 0, 0.208, 0, 0.625, -34.2 ]
  891. },
  892. {
  893. "time": 0.8333,
  894. "y": -34.2,
  895. "curve": [ 1.042, 0, 1.458, 0, 1.042, -34.2, 1.458, 0 ]
  896. },
  897. { "time": 1.6667 }
  898. ]
  899. },
  900. "FrontMOUTH": {
  901. "translate": [
  902. {
  903. "y": -6.71,
  904. "curve": [ 0.062, 0, 0.119, 0, 0.062, -2.58, 0.119, 0 ]
  905. },
  906. {
  907. "time": 0.1667,
  908. "curve": [ 0.375, 0, 0.792, 0, 0.375, 0, 0.792, -51.59 ]
  909. },
  910. {
  911. "time": 1,
  912. "y": -51.59,
  913. "curve": [ 1.162, 0, 1.453, 0, 1.162, -51.59, 1.453, -19.53 ]
  914. },
  915. { "time": 1.6667, "y": -6.71 }
  916. ]
  917. },
  918. "BackBODY": {
  919. "translate": [
  920. {
  921. "curve": [ 0.208, 0, 0.625, 0, 0.208, 0, 0.625, -34.2 ]
  922. },
  923. {
  924. "time": 0.8333,
  925. "y": -34.2,
  926. "curve": [ 1.042, 0, 1.458, 0, 1.042, -34.2, 1.458, 0 ]
  927. },
  928. { "time": 1.6667 }
  929. ]
  930. }
  931. }
  932. },
  933. "Back_Walk": {
  934. "slots": {
  935. "FrontBODY": {
  936. "attachment": [
  937. { "name": null }
  938. ]
  939. },
  940. "FrontEYECLOSED": {
  941. "attachment": [
  942. { "name": null }
  943. ]
  944. },
  945. "FrontMOUTH": {
  946. "attachment": [
  947. { "name": null }
  948. ]
  949. },
  950. "SideBODY": {
  951. "attachment": [
  952. { "name": null }
  953. ]
  954. },
  955. "SideEYECLOSED": {
  956. "attachment": [
  957. { "name": null }
  958. ]
  959. },
  960. "SideMOUTH": {
  961. "attachment": [
  962. { "name": null }
  963. ]
  964. }
  965. },
  966. "bones": {
  967. "SideBODY": {
  968. "rotate": [
  969. {
  970. "value": -3.98,
  971. "curve": [ 0.024, -3.75, 0.046, -3.62 ]
  972. },
  973. {
  974. "time": 0.0667,
  975. "value": -3.62,
  976. "curve": [ 0.233, -3.62, 0.567, -12 ]
  977. },
  978. {
  979. "time": 0.7333,
  980. "value": -12,
  981. "curve": [ 0.88, -12, 1.16, -5.32 ]
  982. },
  983. { "time": 1.3333, "value": -3.98 }
  984. ],
  985. "translate": [
  986. {
  987. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, 30.39 ]
  988. },
  989. {
  990. "time": 0.3333,
  991. "y": 30.39,
  992. "curve": [ 0.417, 0, 0.583, 0, 0.417, 30.39, 0.583, 0 ]
  993. },
  994. {
  995. "time": 0.6667,
  996. "curve": [ 0.75, 0, 0.917, 0, 0.75, 0, 0.917, 30.39 ]
  997. },
  998. {
  999. "time": 1,
  1000. "y": 30.39,
  1001. "curve": [ 1.083, 0, 1.25, 0, 1.083, 30.39, 1.25, 0 ]
  1002. },
  1003. { "time": 1.3333 }
  1004. ]
  1005. },
  1006. "SideMOUTH": {
  1007. "rotate": [
  1008. {
  1009. "value": 3.85,
  1010. "curve": [ 0.167, 3.85, 0.5, 5.07 ]
  1011. },
  1012. {
  1013. "time": 0.6667,
  1014. "value": 5.07,
  1015. "curve": [ 0.833, 5.07, 1.167, 3.85 ]
  1016. },
  1017. { "time": 1.3333, "value": 3.85 }
  1018. ],
  1019. "translate": [
  1020. {
  1021. "x": 4,
  1022. "y": -27.24,
  1023. "curve": [ 0.167, 4, 0.5, 9.16, 0.167, -27.24, 0.5, -57.75 ]
  1024. },
  1025. {
  1026. "time": 0.6667,
  1027. "x": 9.16,
  1028. "y": -57.75,
  1029. "curve": [ 0.833, 9.16, 1.167, 4, 0.833, -57.75, 1.167, -27.24 ]
  1030. },
  1031. { "time": 1.3333, "x": 4, "y": -27.24 }
  1032. ]
  1033. },
  1034. "FrontBODY": {
  1035. "rotate": [
  1036. {
  1037. "value": -8.7,
  1038. "curve": [ 0.167, -8.7, 0.5, 8.02 ]
  1039. },
  1040. {
  1041. "time": 0.6667,
  1042. "value": 8.02,
  1043. "curve": [ 0.833, 8.02, 1.167, -8.7 ]
  1044. },
  1045. { "time": 1.3333, "value": -8.7 }
  1046. ],
  1047. "translate": [
  1048. {
  1049. "x": 6.62,
  1050. "y": 0.87,
  1051. "curve": [ 0.083, 6.62, 0.25, 0, 0.083, 0.87, 0.25, 24.05 ]
  1052. },
  1053. {
  1054. "time": 0.3333,
  1055. "y": 24.05,
  1056. "curve": [ 0.417, 0, 0.583, -10.27, 0.417, 24.05, 0.583, -12.84 ]
  1057. },
  1058. {
  1059. "time": 0.6667,
  1060. "x": -10.27,
  1061. "y": -12.84,
  1062. "curve": [ 0.75, -10.27, 0.917, 0, 0.75, -12.84, 0.917, 24.05 ]
  1063. },
  1064. {
  1065. "time": 1,
  1066. "y": 24.05,
  1067. "curve": [ 1.083, 0, 1.25, 6.62, 1.083, 24.05, 1.25, 0.87 ]
  1068. },
  1069. { "time": 1.3333, "x": 6.62, "y": 0.87 }
  1070. ]
  1071. },
  1072. "FrontMOUTH": {
  1073. "translate": [
  1074. {
  1075. "curve": [ 0.167, 0, 0.5, 0, 0.167, 0, 0.5, -43.16 ]
  1076. },
  1077. {
  1078. "time": 0.6667,
  1079. "y": -43.16,
  1080. "curve": [ 0.833, 0, 1.167, 0, 0.833, -43.16, 1.167, 0 ]
  1081. },
  1082. { "time": 1.3333 }
  1083. ]
  1084. },
  1085. "BackBODY": {
  1086. "rotate": [
  1087. {
  1088. "value": -8.7,
  1089. "curve": [ 0.167, -8.7, 0.5, 8.02 ]
  1090. },
  1091. {
  1092. "time": 0.6667,
  1093. "value": 8.02,
  1094. "curve": [ 0.833, 8.02, 1.167, -8.7 ]
  1095. },
  1096. { "time": 1.3333, "value": -8.7 }
  1097. ],
  1098. "translate": [
  1099. {
  1100. "x": 6.62,
  1101. "y": 0.87,
  1102. "curve": [ 0.083, 6.62, 0.25, 0, 0.083, 0.87, 0.25, 24.05 ]
  1103. },
  1104. {
  1105. "time": 0.3333,
  1106. "y": 24.05,
  1107. "curve": [ 0.417, 0, 0.583, -10.27, 0.417, 24.05, 0.583, -12.84 ]
  1108. },
  1109. {
  1110. "time": 0.6667,
  1111. "x": -10.27,
  1112. "y": -12.84,
  1113. "curve": [ 0.75, -10.27, 0.917, 0, 0.75, -12.84, 0.917, 24.05 ]
  1114. },
  1115. {
  1116. "time": 1,
  1117. "y": 24.05,
  1118. "curve": [ 1.083, 0, 1.25, 6.62, 1.083, 24.05, 1.25, 0.87 ]
  1119. },
  1120. { "time": 1.3333, "x": 6.62, "y": 0.87 }
  1121. ]
  1122. }
  1123. }
  1124. },
  1125. "Front_Attack": {
  1126. "slots": {
  1127. "BackBODY": {
  1128. "attachment": [
  1129. { "name": null }
  1130. ]
  1131. },
  1132. "FrontEYECLOSED": {
  1133. "attachment": [
  1134. { "name": null },
  1135. { "time": 0.4333, "name": "FrontEYECLOSED" },
  1136. { "time": 1.0667, "name": null }
  1137. ]
  1138. },
  1139. "SideBODY": {
  1140. "attachment": [
  1141. { "name": null }
  1142. ]
  1143. },
  1144. "SideEYECLOSED": {
  1145. "attachment": [
  1146. { "name": null }
  1147. ]
  1148. },
  1149. "SideMOUTH": {
  1150. "attachment": [
  1151. { "name": null }
  1152. ]
  1153. }
  1154. },
  1155. "bones": {
  1156. "SideBODY": {
  1157. "rotate": [
  1158. {
  1159. "curve": [ 0.025, 0, 0.047, -1.29 ]
  1160. },
  1161. {
  1162. "time": 0.0667,
  1163. "value": -3.53,
  1164. "curve": [ 0.158, -10.99, 0.199, -38.95 ]
  1165. },
  1166. {
  1167. "time": 0.5,
  1168. "value": -38.95,
  1169. "curve": [ 0.542, -38.95, 0.625, -55.57 ]
  1170. },
  1171. {
  1172. "time": 0.6667,
  1173. "value": -55.57,
  1174. "curve": [ 0.717, -55.57, 0.817, 15.25 ]
  1175. },
  1176. {
  1177. "time": 0.8667,
  1178. "value": 15.25,
  1179. "curve": [ 0.942, 15.25, 1.092, -13.73 ]
  1180. },
  1181. {
  1182. "time": 1.1667,
  1183. "value": -13.73,
  1184. "curve": [ 1.208, -13.73, 1.292, 0 ]
  1185. },
  1186. { "time": 1.3333 }
  1187. ],
  1188. "translate": [
  1189. {
  1190. "curve": [ 0.137, 0, 0.139, -228.42, 0.137, 0, 0.139, 82.06 ]
  1191. },
  1192. {
  1193. "time": 0.5,
  1194. "x": -228.42,
  1195. "y": 82.06,
  1196. "curve": [ 0.542, -228.42, 0.625, 302.97, 0.542, 82.06, 0.625, 116.49 ]
  1197. },
  1198. {
  1199. "time": 0.6667,
  1200. "x": 302.97,
  1201. "y": 116.49,
  1202. "curve": [ 0.75, 302.97, 0.917, -155.78, 0.75, 116.49, 0.917, 34.57 ]
  1203. },
  1204. {
  1205. "time": 1,
  1206. "x": -155.78,
  1207. "y": 34.57,
  1208. "curve": [ 1.083, -155.78, 1.25, 0, 1.083, 34.57, 1.25, 0 ]
  1209. },
  1210. { "time": 1.3333 }
  1211. ]
  1212. },
  1213. "SideMOUTH": {
  1214. "rotate": [
  1215. {
  1216. "curve": [ 0.125, 0, 0.375, -3.51 ]
  1217. },
  1218. {
  1219. "time": 0.5,
  1220. "value": -3.51,
  1221. "curve": [ 0.542, -3.51, 0.518, -0.61 ]
  1222. },
  1223. {
  1224. "time": 0.6667,
  1225. "value": -0.61,
  1226. "curve": [ 0.833, -0.61, 1.167, 0 ]
  1227. },
  1228. { "time": 1.3333 }
  1229. ],
  1230. "translate": [
  1231. {
  1232. "curve": [ 0.125, 0, 0.375, -13.39, 0.125, 0, 0.375, -71.39 ]
  1233. },
  1234. {
  1235. "time": 0.5,
  1236. "x": -13.39,
  1237. "y": -71.39,
  1238. "curve": [ 0.542, -13.39, 0.518, -11.27, 0.542, -71.39, 0.518, 4.13 ]
  1239. },
  1240. {
  1241. "time": 0.6667,
  1242. "x": -11.27,
  1243. "y": 4.13,
  1244. "curve": [ 0.833, -11.27, 1.167, 0, 0.833, 4.13, 1.167, 0 ]
  1245. },
  1246. { "time": 1.3333 }
  1247. ]
  1248. },
  1249. "FrontEYECLOSED": {
  1250. "translate": [
  1251. {
  1252. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -18.66 ]
  1253. },
  1254. { "time": 0.5, "y": -18.66, "curve": "stepped" },
  1255. {
  1256. "time": 1,
  1257. "y": -18.66,
  1258. "curve": [ 1.083, 0, 1.25, 0, 1.083, -18.66, 1.25, 0 ]
  1259. },
  1260. { "time": 1.3333 }
  1261. ],
  1262. "scale": [
  1263. {
  1264. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.045 ]
  1265. },
  1266. { "time": 0.5, "y": 1.045, "curve": "stepped" },
  1267. {
  1268. "time": 1,
  1269. "y": 1.045,
  1270. "curve": [ 1.083, 1, 1.25, 1, 1.083, 1.045, 1.25, 1 ]
  1271. },
  1272. { "time": 1.3333 }
  1273. ]
  1274. },
  1275. "FrontBODY2": {
  1276. "scale": [
  1277. {
  1278. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 0.57 ]
  1279. },
  1280. { "time": 0.5, "y": 0.57, "curve": "stepped" },
  1281. {
  1282. "time": 0.6667,
  1283. "y": 0.57,
  1284. "curve": [ 0.75, 1, 0.917, 1.026, 0.75, 0.57, 0.917, 1.259 ]
  1285. },
  1286. {
  1287. "time": 1,
  1288. "x": 1.026,
  1289. "y": 1.259,
  1290. "curve": [ 1.083, 1.026, 1.25, 1, 1.083, 1.259, 1.25, 1 ]
  1291. },
  1292. { "time": 1.3333 }
  1293. ]
  1294. },
  1295. "FrontMOUTH": {
  1296. "translate": [
  1297. {
  1298. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -61.39 ]
  1299. },
  1300. { "time": 0.5, "y": -61.39, "curve": "stepped" },
  1301. {
  1302. "time": 0.6667,
  1303. "y": -61.39,
  1304. "curve": [ 0.742, 0, 0.892, 0, 0.742, -61.39, 0.892, 21.87 ]
  1305. },
  1306. {
  1307. "time": 0.9667,
  1308. "y": 21.87,
  1309. "curve": [ 1.058, 0, 1.242, 0, 1.058, 21.87, 1.242, 0 ]
  1310. },
  1311. { "time": 1.3333 }
  1312. ],
  1313. "scale": [
  1314. {
  1315. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 0.747 ]
  1316. },
  1317. { "time": 0.5, "y": 0.747, "curve": "stepped" },
  1318. {
  1319. "time": 0.6667,
  1320. "y": 0.747,
  1321. "curve": [ 0.742, 1, 0.892, 1, 0.742, 0.747, 0.892, 1.185 ]
  1322. },
  1323. {
  1324. "time": 0.9667,
  1325. "y": 1.185,
  1326. "curve": [ 1.058, 1, 1.242, 1, 1.058, 1.185, 1.242, 1 ]
  1327. },
  1328. { "time": 1.3333 }
  1329. ]
  1330. },
  1331. "FrontBODY3": {
  1332. "scale": [
  1333. {
  1334. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.099 ]
  1335. },
  1336. { "time": 0.5, "y": 1.099, "curve": "stepped" },
  1337. {
  1338. "time": 0.6667,
  1339. "y": 1.099,
  1340. "curve": [ 0.75, 1, 0.917, 0.895, 0.75, 1.099, 0.917, 0.785 ]
  1341. },
  1342. {
  1343. "time": 1,
  1344. "x": 0.895,
  1345. "y": 0.785,
  1346. "curve": [ 1.083, 0.895, 1.25, 1, 1.083, 0.785, 1.25, 1 ]
  1347. },
  1348. { "time": 1.3333 }
  1349. ]
  1350. },
  1351. "FrontBODY": {
  1352. "translate": [
  1353. {
  1354. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, 65.06 ]
  1355. },
  1356. {
  1357. "time": 0.5,
  1358. "y": 65.06,
  1359. "curve": [ 0.542, 0, 0.625, 0, 0.542, 65.06, 0.625, -277.04 ]
  1360. },
  1361. {
  1362. "time": 0.6667,
  1363. "y": -277.04,
  1364. "curve": [ 0.75, 0, 0.758, 0, 0.75, -277.04, 0.758, 104.84 ]
  1365. },
  1366. {
  1367. "time": 1,
  1368. "y": 114.89,
  1369. "curve": [ 1.083, 0, 1.25, 0, 1.083, 114.89, 1.25, 0 ]
  1370. },
  1371. { "time": 1.3333 }
  1372. ]
  1373. },
  1374. "BackBODY": {
  1375. "translate": [
  1376. {
  1377. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -74.74 ]
  1378. },
  1379. {
  1380. "time": 0.5,
  1381. "y": -74.74,
  1382. "curve": [ 0.542, 0, 0.625, 0, 0.542, -74.74, 0.625, 289.92 ]
  1383. },
  1384. {
  1385. "time": 0.6667,
  1386. "y": 289.92,
  1387. "curve": [ 0.75, 0, 0.744, 0, 0.75, 289.92, 0.744, -87.55 ]
  1388. },
  1389. {
  1390. "time": 1,
  1391. "y": -97.06,
  1392. "curve": [ 1.083, 0, 1.25, 0, 1.083, -97.06, 1.25, 0 ]
  1393. },
  1394. { "time": 1.3333 }
  1395. ]
  1396. },
  1397. "BackBODY2": {
  1398. "scale": [
  1399. {},
  1400. { "time": 0.5, "y": 0.684, "curve": "stepped" },
  1401. {
  1402. "time": 0.6667,
  1403. "y": 0.684,
  1404. "curve": [ 0.75, 1, 0.732, 1.077, 0.75, 0.684, 0.732, 1.475 ]
  1405. },
  1406. { "time": 1, "x": 1.079, "y": 1.495 },
  1407. { "time": 1.3333 }
  1408. ]
  1409. },
  1410. "BackBODY3": {
  1411. "scale": [
  1412. {
  1413. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.105 ]
  1414. },
  1415. { "time": 0.5, "y": 1.105, "curve": "stepped" },
  1416. {
  1417. "time": 0.6667,
  1418. "y": 1.105,
  1419. "curve": [ 0.75, 1, 0.732, 0.871, 0.75, 1.105, 0.732, 0.821 ]
  1420. },
  1421. {
  1422. "time": 1,
  1423. "x": 0.868,
  1424. "y": 0.814,
  1425. "curve": [ 1.083, 0.868, 1.25, 1, 1.083, 0.814, 1.25, 1 ]
  1426. },
  1427. { "time": 1.3333 }
  1428. ]
  1429. }
  1430. },
  1431. "events": [
  1432. { "time": 0.6333, "name": "OnDamaging" }
  1433. ]
  1434. },
  1435. "Front_Death": {
  1436. "slots": {
  1437. "BackBODY": {
  1438. "attachment": [
  1439. { "name": null }
  1440. ]
  1441. },
  1442. "SideBODY": {
  1443. "attachment": [
  1444. { "name": null }
  1445. ]
  1446. },
  1447. "SideEYECLOSED": {
  1448. "rgba": [
  1449. { "color": "ffffff00" },
  1450. { "time": 0.1667, "color": "ffffffff" }
  1451. ],
  1452. "attachment": [
  1453. { "name": null }
  1454. ]
  1455. },
  1456. "SideMOUTH": {
  1457. "attachment": [
  1458. { "name": null }
  1459. ]
  1460. }
  1461. },
  1462. "bones": {
  1463. "SideBODY": {
  1464. "rotate": [
  1465. {
  1466. "curve": [ 0.125, 0, 0.233, 10.19 ]
  1467. },
  1468. {
  1469. "time": 0.5,
  1470. "value": 22.04,
  1471. "curve": [ 0.612, 29.26, 0.712, 43.27 ]
  1472. },
  1473. { "time": 0.8333, "value": 43.7 },
  1474. { "time": 1.2333, "value": 47.86 }
  1475. ],
  1476. "translate": [
  1477. {
  1478. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  1479. },
  1480. {
  1481. "time": 0.5,
  1482. "x": 17.28,
  1483. "y": 300.96,
  1484. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  1485. },
  1486. {
  1487. "time": 0.8667,
  1488. "x": 17.28,
  1489. "y": -148.73,
  1490. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  1491. },
  1492. {
  1493. "time": 1.0333,
  1494. "x": 17.28,
  1495. "y": -96.36,
  1496. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  1497. },
  1498. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  1499. ]
  1500. },
  1501. "SideMOUTH": {
  1502. "rotate": [
  1503. {
  1504. "curve": [ 0.083, 0, 0.157, -11.99 ]
  1505. },
  1506. {
  1507. "time": 0.3333,
  1508. "value": -12.03,
  1509. "curve": [ 0.458, -12.03, 0.569, -0.17 ]
  1510. },
  1511. {
  1512. "time": 0.8333,
  1513. "value": -0.12,
  1514. "curve": [ 0.933, -0.12, 1.022, -11.99 ]
  1515. },
  1516. { "time": 1.2333, "value": -12.03 }
  1517. ],
  1518. "translate": [
  1519. {
  1520. "curve": [ 0.083, 0, 0.157, -19.74, 0.083, 0, 0.157, -28.74 ]
  1521. },
  1522. {
  1523. "time": 0.3333,
  1524. "x": -19.81,
  1525. "y": -28.85,
  1526. "curve": [ 0.458, -19.81, 0.569, -3.16, 0.458, -28.85, 0.569, 0.39 ]
  1527. },
  1528. {
  1529. "time": 0.8333,
  1530. "x": -3.1,
  1531. "y": 0.5,
  1532. "curve": [ 0.933, -3.1, 1.022, -19.75, 0.933, 0.5, 1.022, -28.74 ]
  1533. },
  1534. { "time": 1.2333, "x": -19.81, "y": -28.85 }
  1535. ]
  1536. },
  1537. "FrontBODY": {
  1538. "translate": [
  1539. {
  1540. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  1541. },
  1542. {
  1543. "time": 0.5,
  1544. "x": 17.28,
  1545. "y": 300.96,
  1546. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  1547. },
  1548. {
  1549. "time": 0.8667,
  1550. "x": 17.28,
  1551. "y": -148.73,
  1552. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  1553. },
  1554. {
  1555. "time": 1.0333,
  1556. "x": 17.28,
  1557. "y": -96.36,
  1558. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  1559. },
  1560. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  1561. ]
  1562. },
  1563. "BackBODY": {
  1564. "translate": [
  1565. {
  1566. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  1567. },
  1568. {
  1569. "time": 0.5,
  1570. "x": 17.28,
  1571. "y": 300.96,
  1572. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  1573. },
  1574. {
  1575. "time": 0.8667,
  1576. "x": 17.28,
  1577. "y": -148.73,
  1578. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  1579. },
  1580. {
  1581. "time": 1.0333,
  1582. "x": 17.28,
  1583. "y": -96.36,
  1584. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  1585. },
  1586. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  1587. ]
  1588. },
  1589. "FrontBODY3": {
  1590. "scale": [
  1591. {
  1592. "time": 0.3333,
  1593. "curve": [ 0.417, 1, 0.583, 0.808, 0.417, 1, 0.583, 0.596 ]
  1594. },
  1595. { "time": 0.6667, "x": 0.808, "y": 0.596 }
  1596. ]
  1597. },
  1598. "FrontBODY2": {
  1599. "scale": [
  1600. {
  1601. "time": 0.3333,
  1602. "curve": [ 0.417, 1, 0.583, 1.032, 0.417, 1, 0.583, 1.259 ]
  1603. },
  1604. { "time": 0.6667, "x": 1.032, "y": 1.259 }
  1605. ]
  1606. },
  1607. "FrontEYECLOSED": {
  1608. "translate": [
  1609. { "time": 0.3333 },
  1610. { "time": 0.6667, "y": -47.6 }
  1611. ]
  1612. },
  1613. "FrontMOUTH": {
  1614. "translate": [
  1615. {
  1616. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, -52.95 ]
  1617. },
  1618. {
  1619. "time": 0.3333,
  1620. "y": -52.95,
  1621. "curve": [ 0.417, 0, 0.583, 0, 0.417, -52.95, 0.583, 3.83 ]
  1622. },
  1623. { "time": 0.6667, "y": 3.83, "curve": "stepped" },
  1624. {
  1625. "time": 0.8333,
  1626. "y": 3.83,
  1627. "curve": [ 0.933, 0, 1.133, 0, 0.933, 3.83, 1.133, -48.82 ]
  1628. },
  1629. { "time": 1.2333, "y": -48.82 }
  1630. ]
  1631. },
  1632. "BackBODY2": {
  1633. "translate": [
  1634. {
  1635. "time": 0.3333,
  1636. "curve": [ 0.417, 0, 0.583, 0, 0.417, 0, 0.583, -36.44 ]
  1637. },
  1638. { "time": 0.6667, "y": -36.44 }
  1639. ],
  1640. "scale": [
  1641. {
  1642. "time": 0.3333,
  1643. "curve": [ 0.417, 1, 0.583, 1.141, 0.417, 1, 0.583, 1.573 ]
  1644. },
  1645. { "time": 0.6667, "x": 1.141, "y": 1.573 }
  1646. ]
  1647. },
  1648. "BackBODY3": {
  1649. "scale": [
  1650. {
  1651. "time": 0.3333,
  1652. "curve": [ 0.417, 1, 0.583, 0.872, 0.417, 1, 0.583, 0.913 ]
  1653. },
  1654. { "time": 0.6667, "x": 0.872, "y": 0.913 }
  1655. ]
  1656. }
  1657. }
  1658. },
  1659. "Front_Hurt": {
  1660. "slots": {
  1661. "BackBODY": {
  1662. "attachment": [
  1663. { "name": null }
  1664. ]
  1665. },
  1666. "FrontEYECLOSED": {
  1667. "attachment": [
  1668. { "name": null },
  1669. { "time": 0.0667, "name": "FrontEYECLOSED" },
  1670. { "time": 0.3333, "name": null }
  1671. ]
  1672. },
  1673. "SideBODY": {
  1674. "attachment": [
  1675. { "name": null }
  1676. ]
  1677. },
  1678. "SideEYECLOSED": {
  1679. "attachment": [
  1680. { "name": null }
  1681. ]
  1682. },
  1683. "SideMOUTH": {
  1684. "attachment": [
  1685. { "name": null }
  1686. ]
  1687. }
  1688. },
  1689. "bones": {
  1690. "SideBODY": {
  1691. "rotate": [
  1692. {
  1693. "curve": [ 0.042, 0, 0.031, 14.87 ]
  1694. },
  1695. {
  1696. "time": 0.1667,
  1697. "value": 15.25,
  1698. "curve": [ 0.225, 15.25, 0.342, -13.73 ]
  1699. },
  1700. {
  1701. "time": 0.4,
  1702. "value": -13.73,
  1703. "curve": [ 0.442, -13.73, 0.525, 0 ]
  1704. },
  1705. { "time": 0.5667 }
  1706. ],
  1707. "translate": [
  1708. {
  1709. "curve": [ 0.058, 0, 0.044, -151.95, 0.058, 0, 0.044, 33.72 ]
  1710. },
  1711. {
  1712. "time": 0.2333,
  1713. "x": -155.78,
  1714. "y": 34.57,
  1715. "curve": [ 0.317, -155.78, 0.483, 0, 0.317, 34.57, 0.483, 0 ]
  1716. },
  1717. { "time": 0.5667 }
  1718. ]
  1719. },
  1720. "FrontBODY": {
  1721. "translate": [
  1722. {
  1723. "curve": [ 0.058, 0, 0.056, 0, 0.058, 0, 0.056, 111.59 ]
  1724. },
  1725. {
  1726. "time": 0.2333,
  1727. "y": 114.89,
  1728. "curve": [ 0.317, 0, 0.483, 0, 0.317, 114.89, 0.483, 0 ]
  1729. },
  1730. { "time": 0.5667 }
  1731. ]
  1732. },
  1733. "FrontBODY3": {
  1734. "scale": [
  1735. {
  1736. "curve": [ 0.058, 1, 0.056, 0.898, 0.058, 1, 0.056, 0.792 ]
  1737. },
  1738. {
  1739. "time": 0.2333,
  1740. "x": 0.895,
  1741. "y": 0.785,
  1742. "curve": [ 0.317, 0.895, 0.483, 1, 0.317, 0.785, 0.483, 1 ]
  1743. },
  1744. { "time": 0.5667 }
  1745. ]
  1746. },
  1747. "FrontBODY2": {
  1748. "scale": [
  1749. {
  1750. "curve": [ 0.058, 1, 0.056, 1.026, 0.058, 1, 0.056, 1.251 ]
  1751. },
  1752. {
  1753. "time": 0.2333,
  1754. "x": 1.026,
  1755. "y": 1.259,
  1756. "curve": [ 0.317, 1.026, 0.483, 1, 0.317, 1.259, 0.483, 1 ]
  1757. },
  1758. { "time": 0.5667 }
  1759. ]
  1760. },
  1761. "FrontMOUTH": {
  1762. "translate": [
  1763. {
  1764. "curve": [ 0.05, 0, 0.048, 0, 0.05, 0, 0.048, 21.24 ]
  1765. },
  1766. {
  1767. "time": 0.2,
  1768. "y": 21.87,
  1769. "curve": [ 0.292, 0, 0.475, 0, 0.292, 21.87, 0.475, 0 ]
  1770. },
  1771. { "time": 0.5667 }
  1772. ],
  1773. "scale": [
  1774. {
  1775. "curve": [ 0.05, 1, 0.048, 1, 0.05, 1, 0.048, 1.18 ]
  1776. },
  1777. {
  1778. "time": 0.2,
  1779. "y": 1.185,
  1780. "curve": [ 0.292, 1, 0.475, 1, 0.292, 1.185, 0.475, 1 ]
  1781. },
  1782. { "time": 0.5667 }
  1783. ]
  1784. },
  1785. "BackBODY": {
  1786. "translate": [
  1787. {
  1788. "curve": [ 0.058, 0, 0.112, 0, 0.058, 0, 0.112, -106.9 ]
  1789. },
  1790. {
  1791. "time": 0.2333,
  1792. "y": -111.94,
  1793. "curve": [ 0.317, 0, 0.483, 0, 0.317, -111.94, 0.483, 0 ]
  1794. },
  1795. { "time": 0.5667 }
  1796. ]
  1797. },
  1798. "BackBODY2": {
  1799. "scale": [
  1800. {
  1801. "curve": [ 0.058, 1, 0.112, 1.076, 0.058, 1, 0.112, 1.472 ]
  1802. },
  1803. { "time": 0.2333, "x": 1.079, "y": 1.495 },
  1804. { "time": 0.5667 }
  1805. ]
  1806. },
  1807. "BackBODY3": {
  1808. "scale": [
  1809. {
  1810. "curve": [ 0.058, 1, 0.112, 0.874, 0.058, 1, 0.112, 0.822 ]
  1811. },
  1812. {
  1813. "time": 0.2333,
  1814. "x": 0.868,
  1815. "y": 0.814,
  1816. "curve": [ 0.317, 0.868, 0.483, 1, 0.317, 0.814, 0.483, 1 ]
  1817. },
  1818. { "time": 0.5667 }
  1819. ]
  1820. }
  1821. }
  1822. },
  1823. "Front_Idle": {
  1824. "slots": {
  1825. "BackBODY": {
  1826. "attachment": [
  1827. { "name": null }
  1828. ]
  1829. },
  1830. "FrontEYECLOSED": {
  1831. "attachment": [
  1832. { "name": null }
  1833. ]
  1834. },
  1835. "SideBODY": {
  1836. "attachment": [
  1837. { "name": null }
  1838. ]
  1839. },
  1840. "SideEYECLOSED": {
  1841. "attachment": [
  1842. { "name": null }
  1843. ]
  1844. },
  1845. "SideMOUTH": {
  1846. "attachment": [
  1847. { "name": null }
  1848. ]
  1849. }
  1850. },
  1851. "bones": {
  1852. "SideBODY": {
  1853. "rotate": [
  1854. {
  1855. "curve": [ 0.208, 0, 0.625, -2.71 ]
  1856. },
  1857. {
  1858. "time": 0.8333,
  1859. "value": -2.71,
  1860. "curve": [ 1.042, -2.71, 1.458, 0 ]
  1861. },
  1862. { "time": 1.6667 }
  1863. ],
  1864. "translate": [
  1865. {
  1866. "curve": [ 0.208, 0, 0.373, 9.32, 0.208, 0, 0.373, -33.77 ]
  1867. },
  1868. {
  1869. "time": 0.8333,
  1870. "x": 9.35,
  1871. "y": -33.9,
  1872. "curve": [ 1.042, 9.35, 1.206, 0.04, 1.042, -33.9, 1.206, -0.13 ]
  1873. },
  1874. { "time": 1.6667 }
  1875. ]
  1876. },
  1877. "SideMOUTH": {
  1878. "translate": [
  1879. {
  1880. "y": -5.63,
  1881. "curve": [ 0.062, 0, 0.119, 0, 0.062, -2.16, 0.119, 0 ]
  1882. },
  1883. {
  1884. "time": 0.1667,
  1885. "curve": [ 0.375, 0, 0.792, 0, 0.375, 0, 0.792, -43.25 ]
  1886. },
  1887. {
  1888. "time": 1,
  1889. "y": -43.25,
  1890. "curve": [ 1.162, 0, 1.453, 0, 1.162, -43.25, 1.453, -16.38 ]
  1891. },
  1892. { "time": 1.6667, "y": -5.63 }
  1893. ]
  1894. },
  1895. "FrontBODY": {
  1896. "translate": [
  1897. {
  1898. "curve": [ 0.208, 0, 0.625, 0, 0.208, 0, 0.625, -34.2 ]
  1899. },
  1900. {
  1901. "time": 0.8333,
  1902. "y": -34.2,
  1903. "curve": [ 1.042, 0, 1.458, 0, 1.042, -34.2, 1.458, 0 ]
  1904. },
  1905. { "time": 1.6667 }
  1906. ]
  1907. },
  1908. "FrontMOUTH": {
  1909. "translate": [
  1910. {
  1911. "y": -6.71,
  1912. "curve": [ 0.062, 0, 0.119, 0, 0.062, -2.58, 0.119, 0 ]
  1913. },
  1914. {
  1915. "time": 0.1667,
  1916. "curve": [ 0.375, 0, 0.792, 0, 0.375, 0, 0.792, -51.59 ]
  1917. },
  1918. {
  1919. "time": 1,
  1920. "y": -51.59,
  1921. "curve": [ 1.162, 0, 1.453, 0, 1.162, -51.59, 1.453, -19.53 ]
  1922. },
  1923. { "time": 1.6667, "y": -6.71 }
  1924. ]
  1925. },
  1926. "BackBODY": {
  1927. "translate": [
  1928. {
  1929. "curve": [ 0.208, 0, 0.625, 0, 0.208, 0, 0.625, -34.2 ]
  1930. },
  1931. {
  1932. "time": 0.8333,
  1933. "y": -34.2,
  1934. "curve": [ 1.042, 0, 1.458, 0, 1.042, -34.2, 1.458, 0 ]
  1935. },
  1936. { "time": 1.6667 }
  1937. ]
  1938. }
  1939. }
  1940. },
  1941. "Front_Walk": {
  1942. "slots": {
  1943. "BackBODY": {
  1944. "attachment": [
  1945. { "name": null }
  1946. ]
  1947. },
  1948. "FrontEYECLOSED": {
  1949. "attachment": [
  1950. { "name": null }
  1951. ]
  1952. },
  1953. "SideBODY": {
  1954. "attachment": [
  1955. { "name": null }
  1956. ]
  1957. },
  1958. "SideEYECLOSED": {
  1959. "attachment": [
  1960. { "name": null }
  1961. ]
  1962. },
  1963. "SideMOUTH": {
  1964. "attachment": [
  1965. { "name": null }
  1966. ]
  1967. }
  1968. },
  1969. "bones": {
  1970. "SideBODY": {
  1971. "rotate": [
  1972. {
  1973. "value": -3.98,
  1974. "curve": [ 0.024, -3.75, 0.046, -3.62 ]
  1975. },
  1976. {
  1977. "time": 0.0667,
  1978. "value": -3.62,
  1979. "curve": [ 0.233, -3.62, 0.567, -12 ]
  1980. },
  1981. {
  1982. "time": 0.7333,
  1983. "value": -12,
  1984. "curve": [ 0.88, -12, 1.16, -5.32 ]
  1985. },
  1986. { "time": 1.3333, "value": -3.98 }
  1987. ],
  1988. "translate": [
  1989. {
  1990. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, 30.39 ]
  1991. },
  1992. {
  1993. "time": 0.3333,
  1994. "y": 30.39,
  1995. "curve": [ 0.417, 0, 0.583, 0, 0.417, 30.39, 0.583, 0 ]
  1996. },
  1997. {
  1998. "time": 0.6667,
  1999. "curve": [ 0.75, 0, 0.917, 0, 0.75, 0, 0.917, 30.39 ]
  2000. },
  2001. {
  2002. "time": 1,
  2003. "y": 30.39,
  2004. "curve": [ 1.083, 0, 1.25, 0, 1.083, 30.39, 1.25, 0 ]
  2005. },
  2006. { "time": 1.3333 }
  2007. ]
  2008. },
  2009. "SideMOUTH": {
  2010. "rotate": [
  2011. {
  2012. "value": 3.85,
  2013. "curve": [ 0.167, 3.85, 0.5, 5.07 ]
  2014. },
  2015. {
  2016. "time": 0.6667,
  2017. "value": 5.07,
  2018. "curve": [ 0.833, 5.07, 1.167, 3.85 ]
  2019. },
  2020. { "time": 1.3333, "value": 3.85 }
  2021. ],
  2022. "translate": [
  2023. {
  2024. "x": 4,
  2025. "y": -27.24,
  2026. "curve": [ 0.167, 4, 0.5, 9.16, 0.167, -27.24, 0.5, -57.75 ]
  2027. },
  2028. {
  2029. "time": 0.6667,
  2030. "x": 9.16,
  2031. "y": -57.75,
  2032. "curve": [ 0.833, 9.16, 1.167, 4, 0.833, -57.75, 1.167, -27.24 ]
  2033. },
  2034. { "time": 1.3333, "x": 4, "y": -27.24 }
  2035. ]
  2036. },
  2037. "FrontBODY": {
  2038. "rotate": [
  2039. {
  2040. "value": -8.7,
  2041. "curve": [ 0.167, -8.7, 0.5, 8.02 ]
  2042. },
  2043. {
  2044. "time": 0.6667,
  2045. "value": 8.02,
  2046. "curve": [ 0.833, 8.02, 1.167, -8.7 ]
  2047. },
  2048. { "time": 1.3333, "value": -8.7 }
  2049. ],
  2050. "translate": [
  2051. {
  2052. "x": 6.62,
  2053. "y": 0.87,
  2054. "curve": [ 0.083, 6.62, 0.25, 0, 0.083, 0.87, 0.25, 24.05 ]
  2055. },
  2056. {
  2057. "time": 0.3333,
  2058. "y": 24.05,
  2059. "curve": [ 0.417, 0, 0.583, -10.27, 0.417, 24.05, 0.583, -12.84 ]
  2060. },
  2061. {
  2062. "time": 0.6667,
  2063. "x": -10.27,
  2064. "y": -12.84,
  2065. "curve": [ 0.75, -10.27, 0.917, 0, 0.75, -12.84, 0.917, 24.05 ]
  2066. },
  2067. {
  2068. "time": 1,
  2069. "y": 24.05,
  2070. "curve": [ 1.083, 0, 1.25, 6.62, 1.083, 24.05, 1.25, 0.87 ]
  2071. },
  2072. { "time": 1.3333, "x": 6.62, "y": 0.87 }
  2073. ]
  2074. },
  2075. "FrontMOUTH": {
  2076. "translate": [
  2077. {
  2078. "curve": [ 0.167, 0, 0.417, -0.83, 0.167, 0, 0.417, -8.23 ]
  2079. },
  2080. {
  2081. "time": 0.6667,
  2082. "x": -1.66,
  2083. "y": -16.46,
  2084. "curve": [ 0.917, -0.83, 1.167, 0, 0.917, -8.23, 1.167, 0 ]
  2085. },
  2086. { "time": 1.3333 }
  2087. ]
  2088. },
  2089. "BackBODY": {
  2090. "translate": [
  2091. {
  2092. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, 24.05 ]
  2093. },
  2094. {
  2095. "time": 0.3333,
  2096. "y": 24.05,
  2097. "curve": [ 0.417, 0, 0.583, 0, 0.417, 24.05, 0.583, -18.93 ]
  2098. },
  2099. {
  2100. "time": 0.6667,
  2101. "y": -18.93,
  2102. "curve": [ 0.75, 0, 0.917, 0, 0.75, -18.93, 0.917, 24.05 ]
  2103. },
  2104. {
  2105. "time": 1,
  2106. "y": 24.05,
  2107. "curve": [ 1.083, 0, 1.25, 0, 1.083, 24.05, 1.25, 0 ]
  2108. },
  2109. { "time": 1.3333 }
  2110. ]
  2111. }
  2112. }
  2113. },
  2114. "Side_Attack": {
  2115. "slots": {
  2116. "BackBODY": {
  2117. "attachment": [
  2118. { "name": null }
  2119. ]
  2120. },
  2121. "FrontBODY": {
  2122. "attachment": [
  2123. { "name": null }
  2124. ]
  2125. },
  2126. "FrontEYECLOSED": {
  2127. "attachment": [
  2128. { "name": null }
  2129. ]
  2130. },
  2131. "FrontMOUTH": {
  2132. "attachment": [
  2133. { "name": null }
  2134. ]
  2135. },
  2136. "SideEYECLOSED": {
  2137. "attachment": [
  2138. { "name": null },
  2139. { "time": 0.4333, "name": "SideEYECLOSED" },
  2140. { "time": 1.0667, "name": null }
  2141. ]
  2142. }
  2143. },
  2144. "bones": {
  2145. "SideBODY": {
  2146. "rotate": [
  2147. {
  2148. "curve": [ 0.025, 0, 0.047, -1.29 ]
  2149. },
  2150. {
  2151. "time": 0.0667,
  2152. "value": -3.53,
  2153. "curve": [ 0.158, -10.99, 0.199, -38.95 ]
  2154. },
  2155. {
  2156. "time": 0.5,
  2157. "value": -38.95,
  2158. "curve": [ 0.542, -38.95, 0.625, -55.57 ]
  2159. },
  2160. {
  2161. "time": 0.6667,
  2162. "value": -55.57,
  2163. "curve": [ 0.717, -55.57, 0.817, 15.25 ]
  2164. },
  2165. {
  2166. "time": 0.8667,
  2167. "value": 15.25,
  2168. "curve": [ 0.942, 15.25, 1.092, -13.73 ]
  2169. },
  2170. {
  2171. "time": 1.1667,
  2172. "value": -13.73,
  2173. "curve": [ 1.208, -13.73, 1.292, 0 ]
  2174. },
  2175. { "time": 1.3333 }
  2176. ],
  2177. "translate": [
  2178. {
  2179. "curve": [ 0.137, 0, 0.139, -228.42, 0.137, 0, 0.139, 82.06 ]
  2180. },
  2181. {
  2182. "time": 0.5,
  2183. "x": -228.42,
  2184. "y": 82.06,
  2185. "curve": [ 0.542, -228.42, 0.625, 302.97, 0.542, 82.06, 0.625, 116.49 ]
  2186. },
  2187. {
  2188. "time": 0.6667,
  2189. "x": 302.97,
  2190. "y": 116.49,
  2191. "curve": [ 0.75, 302.97, 0.917, -155.78, 0.75, 116.49, 0.917, 34.57 ]
  2192. },
  2193. {
  2194. "time": 1,
  2195. "x": -155.78,
  2196. "y": 34.57,
  2197. "curve": [ 1.083, -155.78, 1.25, 0, 1.083, 34.57, 1.25, 0 ]
  2198. },
  2199. { "time": 1.3333 }
  2200. ]
  2201. },
  2202. "SideMOUTH": {
  2203. "rotate": [
  2204. {
  2205. "curve": [ 0.125, 0, 0.375, -3.51 ]
  2206. },
  2207. {
  2208. "time": 0.5,
  2209. "value": -3.51,
  2210. "curve": [ 0.542, -3.51, 0.518, -0.61 ]
  2211. },
  2212. {
  2213. "time": 0.6667,
  2214. "value": -0.61,
  2215. "curve": [ 0.833, -0.61, 1.167, 0 ]
  2216. },
  2217. { "time": 1.3333 }
  2218. ],
  2219. "translate": [
  2220. {
  2221. "curve": [ 0.125, 0, 0.375, -13.39, 0.125, 0, 0.375, -71.39 ]
  2222. },
  2223. {
  2224. "time": 0.5,
  2225. "x": -13.39,
  2226. "y": -71.39,
  2227. "curve": [ 0.542, -13.39, 0.518, -11.27, 0.542, -71.39, 0.518, 4.13 ]
  2228. },
  2229. {
  2230. "time": 0.6667,
  2231. "x": -11.27,
  2232. "y": 4.13,
  2233. "curve": [ 0.833, -11.27, 1.167, 0, 0.833, 4.13, 1.167, 0 ]
  2234. },
  2235. { "time": 1.3333 }
  2236. ]
  2237. },
  2238. "FrontEYECLOSED": {
  2239. "translate": [
  2240. {
  2241. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -18.66 ]
  2242. },
  2243. { "time": 0.5, "y": -18.66, "curve": "stepped" },
  2244. {
  2245. "time": 1,
  2246. "y": -18.66,
  2247. "curve": [ 1.083, 0, 1.25, 0, 1.083, -18.66, 1.25, 0 ]
  2248. },
  2249. { "time": 1.3333 }
  2250. ],
  2251. "scale": [
  2252. {
  2253. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.045 ]
  2254. },
  2255. { "time": 0.5, "y": 1.045, "curve": "stepped" },
  2256. {
  2257. "time": 1,
  2258. "y": 1.045,
  2259. "curve": [ 1.083, 1, 1.25, 1, 1.083, 1.045, 1.25, 1 ]
  2260. },
  2261. { "time": 1.3333 }
  2262. ]
  2263. },
  2264. "FrontBODY2": {
  2265. "scale": [
  2266. {
  2267. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 0.57 ]
  2268. },
  2269. { "time": 0.5, "y": 0.57, "curve": "stepped" },
  2270. {
  2271. "time": 0.6667,
  2272. "y": 0.57,
  2273. "curve": [ 0.75, 1, 0.917, 1.026, 0.75, 0.57, 0.917, 1.259 ]
  2274. },
  2275. {
  2276. "time": 1,
  2277. "x": 1.026,
  2278. "y": 1.259,
  2279. "curve": [ 1.083, 1.026, 1.25, 1, 1.083, 1.259, 1.25, 1 ]
  2280. },
  2281. { "time": 1.3333 }
  2282. ]
  2283. },
  2284. "FrontMOUTH": {
  2285. "translate": [
  2286. {
  2287. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -61.39 ]
  2288. },
  2289. { "time": 0.5, "y": -61.39, "curve": "stepped" },
  2290. {
  2291. "time": 0.6667,
  2292. "y": -61.39,
  2293. "curve": [ 0.742, 0, 0.892, 0, 0.742, -61.39, 0.892, 21.87 ]
  2294. },
  2295. {
  2296. "time": 0.9667,
  2297. "y": 21.87,
  2298. "curve": [ 1.058, 0, 1.242, 0, 1.058, 21.87, 1.242, 0 ]
  2299. },
  2300. { "time": 1.3333 }
  2301. ],
  2302. "scale": [
  2303. {
  2304. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 0.747 ]
  2305. },
  2306. { "time": 0.5, "y": 0.747, "curve": "stepped" },
  2307. {
  2308. "time": 0.6667,
  2309. "y": 0.747,
  2310. "curve": [ 0.742, 1, 0.892, 1, 0.742, 0.747, 0.892, 1.185 ]
  2311. },
  2312. {
  2313. "time": 0.9667,
  2314. "y": 1.185,
  2315. "curve": [ 1.058, 1, 1.242, 1, 1.058, 1.185, 1.242, 1 ]
  2316. },
  2317. { "time": 1.3333 }
  2318. ]
  2319. },
  2320. "FrontBODY3": {
  2321. "scale": [
  2322. {
  2323. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.099 ]
  2324. },
  2325. { "time": 0.5, "y": 1.099, "curve": "stepped" },
  2326. {
  2327. "time": 0.6667,
  2328. "y": 1.099,
  2329. "curve": [ 0.75, 1, 0.917, 0.895, 0.75, 1.099, 0.917, 0.785 ]
  2330. },
  2331. {
  2332. "time": 1,
  2333. "x": 0.895,
  2334. "y": 0.785,
  2335. "curve": [ 1.083, 0.895, 1.25, 1, 1.083, 0.785, 1.25, 1 ]
  2336. },
  2337. { "time": 1.3333 }
  2338. ]
  2339. },
  2340. "FrontBODY": {
  2341. "translate": [
  2342. {
  2343. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, 65.06 ]
  2344. },
  2345. {
  2346. "time": 0.5,
  2347. "y": 65.06,
  2348. "curve": [ 0.542, 0, 0.625, 0, 0.542, 65.06, 0.625, -277.04 ]
  2349. },
  2350. {
  2351. "time": 0.6667,
  2352. "y": -277.04,
  2353. "curve": [ 0.75, 0, 0.758, 0, 0.75, -277.04, 0.758, 104.84 ]
  2354. },
  2355. {
  2356. "time": 1,
  2357. "y": 114.89,
  2358. "curve": [ 1.083, 0, 1.25, 0, 1.083, 114.89, 1.25, 0 ]
  2359. },
  2360. { "time": 1.3333 }
  2361. ]
  2362. },
  2363. "BackBODY": {
  2364. "translate": [
  2365. {
  2366. "curve": [ 0.125, 0, 0.375, 0, 0.125, 0, 0.375, -74.74 ]
  2367. },
  2368. {
  2369. "time": 0.5,
  2370. "y": -74.74,
  2371. "curve": [ 0.542, 0, 0.625, 0, 0.542, -74.74, 0.625, 289.92 ]
  2372. },
  2373. {
  2374. "time": 0.6667,
  2375. "y": 289.92,
  2376. "curve": [ 0.75, 0, 0.744, 0, 0.75, 289.92, 0.744, -87.55 ]
  2377. },
  2378. {
  2379. "time": 1,
  2380. "y": -97.06,
  2381. "curve": [ 1.083, 0, 1.25, 0, 1.083, -97.06, 1.25, 0 ]
  2382. },
  2383. { "time": 1.3333 }
  2384. ]
  2385. },
  2386. "BackBODY2": {
  2387. "scale": [
  2388. {},
  2389. { "time": 0.5, "y": 0.684, "curve": "stepped" },
  2390. {
  2391. "time": 0.6667,
  2392. "y": 0.684,
  2393. "curve": [ 0.75, 1, 0.732, 1.077, 0.75, 0.684, 0.732, 1.475 ]
  2394. },
  2395. { "time": 1, "x": 1.079, "y": 1.495 },
  2396. { "time": 1.3333 }
  2397. ]
  2398. },
  2399. "BackBODY3": {
  2400. "scale": [
  2401. {
  2402. "curve": [ 0.125, 1, 0.375, 1, 0.125, 1, 0.375, 1.105 ]
  2403. },
  2404. { "time": 0.5, "y": 1.105, "curve": "stepped" },
  2405. {
  2406. "time": 0.6667,
  2407. "y": 1.105,
  2408. "curve": [ 0.75, 1, 0.732, 0.871, 0.75, 1.105, 0.732, 0.821 ]
  2409. },
  2410. {
  2411. "time": 1,
  2412. "x": 0.868,
  2413. "y": 0.814,
  2414. "curve": [ 1.083, 0.868, 1.25, 1, 1.083, 0.814, 1.25, 1 ]
  2415. },
  2416. { "time": 1.3333 }
  2417. ]
  2418. }
  2419. },
  2420. "events": [
  2421. { "time": 0.6333, "name": "OnDamaging" }
  2422. ]
  2423. },
  2424. "Side_Death": {
  2425. "slots": {
  2426. "BackBODY": {
  2427. "attachment": [
  2428. { "name": null }
  2429. ]
  2430. },
  2431. "FrontBODY": {
  2432. "attachment": [
  2433. { "name": null }
  2434. ]
  2435. },
  2436. "FrontEYECLOSED": {
  2437. "attachment": [
  2438. { "name": null }
  2439. ]
  2440. },
  2441. "FrontMOUTH": {
  2442. "attachment": [
  2443. { "name": null }
  2444. ]
  2445. }
  2446. },
  2447. "bones": {
  2448. "SideBODY": {
  2449. "rotate": [
  2450. {
  2451. "curve": [ 0.125, 0, 0.233, 10.19 ]
  2452. },
  2453. {
  2454. "time": 0.5,
  2455. "value": 22.04,
  2456. "curve": [ 0.612, 29.26, 0.712, 43.27 ]
  2457. },
  2458. { "time": 0.8333, "value": 43.7 },
  2459. { "time": 1.2333, "value": 47.86 }
  2460. ],
  2461. "translate": [
  2462. {
  2463. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  2464. },
  2465. {
  2466. "time": 0.5,
  2467. "x": 17.28,
  2468. "y": 300.96,
  2469. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  2470. },
  2471. {
  2472. "time": 0.8667,
  2473. "x": 17.28,
  2474. "y": -148.73,
  2475. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  2476. },
  2477. {
  2478. "time": 1.0333,
  2479. "x": 17.28,
  2480. "y": -96.36,
  2481. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  2482. },
  2483. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  2484. ]
  2485. },
  2486. "SideMOUTH": {
  2487. "rotate": [
  2488. {
  2489. "curve": [ 0.083, 0, 0.157, -11.99 ]
  2490. },
  2491. {
  2492. "time": 0.3333,
  2493. "value": -12.03,
  2494. "curve": [ 0.458, -12.03, 0.569, -0.17 ]
  2495. },
  2496. {
  2497. "time": 0.8333,
  2498. "value": -0.12,
  2499. "curve": [ 0.933, -0.12, 1.022, -11.99 ]
  2500. },
  2501. { "time": 1.2333, "value": -12.03 }
  2502. ],
  2503. "translate": [
  2504. {
  2505. "curve": [ 0.083, 0, 0.157, -19.74, 0.083, 0, 0.157, -28.74 ]
  2506. },
  2507. {
  2508. "time": 0.3333,
  2509. "x": -19.81,
  2510. "y": -28.85,
  2511. "curve": [ 0.458, -19.81, 0.569, -3.16, 0.458, -28.85, 0.569, 0.39 ]
  2512. },
  2513. {
  2514. "time": 0.8333,
  2515. "x": -3.1,
  2516. "y": 0.5,
  2517. "curve": [ 0.933, -3.1, 1.022, -19.75, 0.933, 0.5, 1.022, -28.74 ]
  2518. },
  2519. { "time": 1.2333, "x": -19.81, "y": -28.85 }
  2520. ]
  2521. },
  2522. "FrontBODY": {
  2523. "translate": [
  2524. {
  2525. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  2526. },
  2527. {
  2528. "time": 0.5,
  2529. "x": 17.28,
  2530. "y": 300.96,
  2531. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  2532. },
  2533. {
  2534. "time": 0.8667,
  2535. "x": 17.28,
  2536. "y": -148.73,
  2537. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  2538. },
  2539. {
  2540. "time": 1.0333,
  2541. "x": 17.28,
  2542. "y": -96.36,
  2543. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  2544. },
  2545. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  2546. ]
  2547. },
  2548. "BackBODY": {
  2549. "translate": [
  2550. {
  2551. "curve": [ 0.125, 0, 0.138, 17.28, 0.125, 0, 0.138, 300.96 ]
  2552. },
  2553. {
  2554. "time": 0.5,
  2555. "x": 17.28,
  2556. "y": 300.96,
  2557. "curve": [ 0.725, 17.28, 0.733, 17.28, 0.725, 300.96, 0.733, -139.8 ]
  2558. },
  2559. {
  2560. "time": 0.8667,
  2561. "x": 17.28,
  2562. "y": -148.73,
  2563. "curve": [ 0.908, 17.28, 0.992, 17.28, 0.908, -148.73, 0.992, -96.36 ]
  2564. },
  2565. {
  2566. "time": 1.0333,
  2567. "x": 17.28,
  2568. "y": -96.36,
  2569. "curve": [ 1.083, 17.28, 1.183, 17.28, 1.083, -96.36, 1.183, -148.73 ]
  2570. },
  2571. { "time": 1.2333, "x": 17.28, "y": -148.73 }
  2572. ]
  2573. },
  2574. "FrontBODY3": {
  2575. "scale": [
  2576. {
  2577. "time": 0.3333,
  2578. "curve": [ 0.417, 1, 0.583, 0.808, 0.417, 1, 0.583, 0.596 ]
  2579. },
  2580. { "time": 0.6667, "x": 0.808, "y": 0.596 }
  2581. ]
  2582. },
  2583. "FrontBODY2": {
  2584. "scale": [
  2585. {
  2586. "time": 0.3333,
  2587. "curve": [ 0.417, 1, 0.583, 1.032, 0.417, 1, 0.583, 1.259 ]
  2588. },
  2589. { "time": 0.6667, "x": 1.032, "y": 1.259 }
  2590. ]
  2591. },
  2592. "FrontEYECLOSED": {
  2593. "translate": [
  2594. { "time": 0.3333 },
  2595. { "time": 0.6667, "y": -47.6 }
  2596. ]
  2597. },
  2598. "FrontMOUTH": {
  2599. "translate": [
  2600. {
  2601. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, -52.95 ]
  2602. },
  2603. {
  2604. "time": 0.3333,
  2605. "y": -52.95,
  2606. "curve": [ 0.417, 0, 0.583, 0, 0.417, -52.95, 0.583, 3.83 ]
  2607. },
  2608. { "time": 0.6667, "y": 3.83, "curve": "stepped" },
  2609. {
  2610. "time": 0.8333,
  2611. "y": 3.83,
  2612. "curve": [ 0.933, 0, 1.133, 0, 0.933, 3.83, 1.133, -48.82 ]
  2613. },
  2614. { "time": 1.2333, "y": -48.82 }
  2615. ]
  2616. },
  2617. "BackBODY2": {
  2618. "translate": [
  2619. {
  2620. "time": 0.3333,
  2621. "curve": [ 0.417, 0, 0.583, 0, 0.417, 0, 0.583, -36.44 ]
  2622. },
  2623. { "time": 0.6667, "y": -36.44 }
  2624. ],
  2625. "scale": [
  2626. {
  2627. "time": 0.3333,
  2628. "curve": [ 0.417, 1, 0.583, 1.141, 0.417, 1, 0.583, 1.573 ]
  2629. },
  2630. { "time": 0.6667, "x": 1.141, "y": 1.573 }
  2631. ]
  2632. },
  2633. "BackBODY3": {
  2634. "scale": [
  2635. {
  2636. "time": 0.3333,
  2637. "curve": [ 0.417, 1, 0.583, 0.872, 0.417, 1, 0.583, 0.913 ]
  2638. },
  2639. { "time": 0.6667, "x": 0.872, "y": 0.913 }
  2640. ]
  2641. }
  2642. }
  2643. },
  2644. "Side_Hurt": {
  2645. "slots": {
  2646. "BackBODY": {
  2647. "attachment": [
  2648. { "name": null }
  2649. ]
  2650. },
  2651. "FrontBODY": {
  2652. "attachment": [
  2653. { "name": null }
  2654. ]
  2655. },
  2656. "FrontEYECLOSED": {
  2657. "attachment": [
  2658. { "name": null }
  2659. ]
  2660. },
  2661. "FrontMOUTH": {
  2662. "attachment": [
  2663. { "name": null }
  2664. ]
  2665. },
  2666. "SideEYECLOSED": {
  2667. "attachment": [
  2668. { "name": null },
  2669. { "time": 0.0667, "name": "SideEYECLOSED" },
  2670. { "time": 0.3333, "name": null }
  2671. ]
  2672. }
  2673. },
  2674. "bones": {
  2675. "SideBODY": {
  2676. "rotate": [
  2677. {
  2678. "curve": [ 0.042, 0, 0.031, 14.87 ]
  2679. },
  2680. {
  2681. "time": 0.1667,
  2682. "value": 15.25,
  2683. "curve": [ 0.225, 15.25, 0.342, -13.73 ]
  2684. },
  2685. {
  2686. "time": 0.4,
  2687. "value": -13.73,
  2688. "curve": [ 0.442, -13.73, 0.525, 0 ]
  2689. },
  2690. { "time": 0.5667 }
  2691. ],
  2692. "translate": [
  2693. {
  2694. "curve": [ 0.058, 0, 0.044, -151.95, 0.058, 0, 0.044, 33.72 ]
  2695. },
  2696. {
  2697. "time": 0.2333,
  2698. "x": -155.78,
  2699. "y": 34.57,
  2700. "curve": [ 0.317, -155.78, 0.483, 0, 0.317, 34.57, 0.483, 0 ]
  2701. },
  2702. { "time": 0.5667 }
  2703. ]
  2704. },
  2705. "FrontBODY": {
  2706. "translate": [
  2707. {
  2708. "curve": [ 0.058, 0, 0.056, 0, 0.058, 0, 0.056, 111.59 ]
  2709. },
  2710. {
  2711. "time": 0.2333,
  2712. "y": 114.89,
  2713. "curve": [ 0.317, 0, 0.483, 0, 0.317, 114.89, 0.483, 0 ]
  2714. },
  2715. { "time": 0.5667 }
  2716. ]
  2717. },
  2718. "FrontBODY3": {
  2719. "scale": [
  2720. {
  2721. "curve": [ 0.058, 1, 0.056, 0.898, 0.058, 1, 0.056, 0.792 ]
  2722. },
  2723. {
  2724. "time": 0.2333,
  2725. "x": 0.895,
  2726. "y": 0.785,
  2727. "curve": [ 0.317, 0.895, 0.483, 1, 0.317, 0.785, 0.483, 1 ]
  2728. },
  2729. { "time": 0.5667 }
  2730. ]
  2731. },
  2732. "FrontBODY2": {
  2733. "scale": [
  2734. {
  2735. "curve": [ 0.058, 1, 0.056, 1.026, 0.058, 1, 0.056, 1.251 ]
  2736. },
  2737. {
  2738. "time": 0.2333,
  2739. "x": 1.026,
  2740. "y": 1.259,
  2741. "curve": [ 0.317, 1.026, 0.483, 1, 0.317, 1.259, 0.483, 1 ]
  2742. },
  2743. { "time": 0.5667 }
  2744. ]
  2745. },
  2746. "FrontMOUTH": {
  2747. "translate": [
  2748. {
  2749. "curve": [ 0.05, 0, 0.048, 0, 0.05, 0, 0.048, 21.24 ]
  2750. },
  2751. {
  2752. "time": 0.2,
  2753. "y": 21.87,
  2754. "curve": [ 0.292, 0, 0.475, 0, 0.292, 21.87, 0.475, 0 ]
  2755. },
  2756. { "time": 0.5667 }
  2757. ],
  2758. "scale": [
  2759. {
  2760. "curve": [ 0.05, 1, 0.048, 1, 0.05, 1, 0.048, 1.18 ]
  2761. },
  2762. {
  2763. "time": 0.2,
  2764. "y": 1.185,
  2765. "curve": [ 0.292, 1, 0.475, 1, 0.292, 1.185, 0.475, 1 ]
  2766. },
  2767. { "time": 0.5667 }
  2768. ]
  2769. },
  2770. "BackBODY": {
  2771. "translate": [
  2772. {
  2773. "curve": [ 0.058, 0, 0.112, 0, 0.058, 0, 0.112, -106.9 ]
  2774. },
  2775. {
  2776. "time": 0.2333,
  2777. "y": -111.94,
  2778. "curve": [ 0.317, 0, 0.483, 0, 0.317, -111.94, 0.483, 0 ]
  2779. },
  2780. { "time": 0.5667 }
  2781. ]
  2782. },
  2783. "BackBODY2": {
  2784. "scale": [
  2785. {
  2786. "curve": [ 0.058, 1, 0.112, 1.076, 0.058, 1, 0.112, 1.472 ]
  2787. },
  2788. { "time": 0.2333, "x": 1.079, "y": 1.495 },
  2789. { "time": 0.5667 }
  2790. ]
  2791. },
  2792. "BackBODY3": {
  2793. "scale": [
  2794. {
  2795. "curve": [ 0.058, 1, 0.112, 0.874, 0.058, 1, 0.112, 0.822 ]
  2796. },
  2797. {
  2798. "time": 0.2333,
  2799. "x": 0.868,
  2800. "y": 0.814,
  2801. "curve": [ 0.317, 0.868, 0.483, 1, 0.317, 0.814, 0.483, 1 ]
  2802. },
  2803. { "time": 0.5667 }
  2804. ]
  2805. }
  2806. }
  2807. },
  2808. "Side_Idle": {
  2809. "slots": {
  2810. "BackBODY": {
  2811. "attachment": [
  2812. { "name": null }
  2813. ]
  2814. },
  2815. "FrontBODY": {
  2816. "attachment": [
  2817. { "name": null }
  2818. ]
  2819. },
  2820. "FrontEYECLOSED": {
  2821. "attachment": [
  2822. { "name": null }
  2823. ]
  2824. },
  2825. "FrontMOUTH": {
  2826. "attachment": [
  2827. { "name": null }
  2828. ]
  2829. },
  2830. "SideEYECLOSED": {
  2831. "attachment": [
  2832. { "name": null }
  2833. ]
  2834. }
  2835. },
  2836. "bones": {
  2837. "SideBODY": {
  2838. "rotate": [
  2839. {
  2840. "curve": [ 0.208, 0, 0.625, -2.71 ]
  2841. },
  2842. {
  2843. "time": 0.8333,
  2844. "value": -2.71,
  2845. "curve": [ 1.042, -2.71, 1.458, 0 ]
  2846. },
  2847. { "time": 1.6667 }
  2848. ],
  2849. "translate": [
  2850. {
  2851. "curve": [ 0.208, 0, 0.373, 9.32, 0.208, 0, 0.373, -33.77 ]
  2852. },
  2853. {
  2854. "time": 0.8333,
  2855. "x": 9.35,
  2856. "y": -33.9,
  2857. "curve": [ 1.042, 9.35, 1.206, 0.04, 1.042, -33.9, 1.206, -0.13 ]
  2858. },
  2859. { "time": 1.6667 }
  2860. ]
  2861. },
  2862. "SideMOUTH": {
  2863. "translate": [
  2864. {
  2865. "y": -5.63,
  2866. "curve": [ 0.062, 0, 0.119, 0, 0.062, -2.16, 0.119, 0 ]
  2867. },
  2868. {
  2869. "time": 0.1667,
  2870. "curve": [ 0.375, 0, 0.792, 0, 0.375, 0, 0.792, -43.25 ]
  2871. },
  2872. {
  2873. "time": 1,
  2874. "y": -43.25,
  2875. "curve": [ 1.162, 0, 1.453, 0, 1.162, -43.25, 1.453, -16.38 ]
  2876. },
  2877. { "time": 1.6667, "y": -5.63 }
  2878. ]
  2879. },
  2880. "FrontBODY": {
  2881. "translate": [
  2882. {
  2883. "curve": [ 0.208, 0, 0.625, 0, 0.208, 0, 0.625, -34.2 ]
  2884. },
  2885. {
  2886. "time": 0.8333,
  2887. "y": -34.2,
  2888. "curve": [ 1.042, 0, 1.458, 0, 1.042, -34.2, 1.458, 0 ]
  2889. },
  2890. { "time": 1.6667 }
  2891. ]
  2892. },
  2893. "FrontMOUTH": {
  2894. "translate": [
  2895. {
  2896. "y": -6.71,
  2897. "curve": [ 0.062, 0, 0.119, 0, 0.062, -2.58, 0.119, 0 ]
  2898. },
  2899. {
  2900. "time": 0.1667,
  2901. "curve": [ 0.375, 0, 0.792, 0, 0.375, 0, 0.792, -51.59 ]
  2902. },
  2903. {
  2904. "time": 1,
  2905. "y": -51.59,
  2906. "curve": [ 1.162, 0, 1.453, 0, 1.162, -51.59, 1.453, -19.53 ]
  2907. },
  2908. { "time": 1.6667, "y": -6.71 }
  2909. ]
  2910. },
  2911. "BackBODY": {
  2912. "translate": [
  2913. {
  2914. "curve": [ 0.208, 0, 0.625, 0, 0.208, 0, 0.625, -34.2 ]
  2915. },
  2916. {
  2917. "time": 0.8333,
  2918. "y": -34.2,
  2919. "curve": [ 1.042, 0, 1.458, 0, 1.042, -34.2, 1.458, 0 ]
  2920. },
  2921. { "time": 1.6667 }
  2922. ]
  2923. }
  2924. }
  2925. },
  2926. "Side_Walk": {
  2927. "slots": {
  2928. "BackBODY": {
  2929. "attachment": [
  2930. { "name": null }
  2931. ]
  2932. },
  2933. "FrontBODY": {
  2934. "attachment": [
  2935. { "name": null }
  2936. ]
  2937. },
  2938. "FrontEYECLOSED": {
  2939. "attachment": [
  2940. { "name": null }
  2941. ]
  2942. },
  2943. "FrontMOUTH": {
  2944. "attachment": [
  2945. { "name": null }
  2946. ]
  2947. },
  2948. "SideEYECLOSED": {
  2949. "attachment": [
  2950. { "name": null }
  2951. ]
  2952. }
  2953. },
  2954. "bones": {
  2955. "SideBODY": {
  2956. "rotate": [
  2957. {
  2958. "value": -3.98,
  2959. "curve": [ 0.024, -3.75, 0.046, -3.62 ]
  2960. },
  2961. {
  2962. "time": 0.0667,
  2963. "value": -3.62,
  2964. "curve": [ 0.233, -3.62, 0.567, -12 ]
  2965. },
  2966. {
  2967. "time": 0.7333,
  2968. "value": -12,
  2969. "curve": [ 0.88, -12, 1.16, -5.32 ]
  2970. },
  2971. { "time": 1.3333, "value": -3.98 }
  2972. ],
  2973. "translate": [
  2974. {
  2975. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, 30.39 ]
  2976. },
  2977. {
  2978. "time": 0.3333,
  2979. "y": 30.39,
  2980. "curve": [ 0.417, 0, 0.583, 0, 0.417, 30.39, 0.583, 0 ]
  2981. },
  2982. {
  2983. "time": 0.6667,
  2984. "curve": [ 0.75, 0, 0.917, 0, 0.75, 0, 0.917, 30.39 ]
  2985. },
  2986. {
  2987. "time": 1,
  2988. "y": 30.39,
  2989. "curve": [ 1.083, 0, 1.25, 0, 1.083, 30.39, 1.25, 0 ]
  2990. },
  2991. { "time": 1.3333 }
  2992. ]
  2993. },
  2994. "SideMOUTH": {
  2995. "rotate": [
  2996. {
  2997. "value": 3.85,
  2998. "curve": [ 0.167, 3.85, 0.5, 5.07 ]
  2999. },
  3000. {
  3001. "time": 0.6667,
  3002. "value": 5.07,
  3003. "curve": [ 0.833, 5.07, 1.167, 3.85 ]
  3004. },
  3005. { "time": 1.3333, "value": 3.85 }
  3006. ],
  3007. "translate": [
  3008. {
  3009. "x": 4,
  3010. "y": -27.24,
  3011. "curve": [ 0.167, 4, 0.5, 9.16, 0.167, -27.24, 0.5, -57.75 ]
  3012. },
  3013. {
  3014. "time": 0.6667,
  3015. "x": 9.16,
  3016. "y": -57.75,
  3017. "curve": [ 0.833, 9.16, 1.167, 4, 0.833, -57.75, 1.167, -27.24 ]
  3018. },
  3019. { "time": 1.3333, "x": 4, "y": -27.24 }
  3020. ]
  3021. },
  3022. "FrontBODY": {
  3023. "translate": [
  3024. {
  3025. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, 24.05 ]
  3026. },
  3027. {
  3028. "time": 0.3333,
  3029. "y": 24.05,
  3030. "curve": [ 0.417, 0, 0.583, 0, 0.417, 24.05, 0.583, -18.93 ]
  3031. },
  3032. {
  3033. "time": 0.6667,
  3034. "y": -18.93,
  3035. "curve": [ 0.75, 0, 0.917, 0, 0.75, -18.93, 0.917, 24.05 ]
  3036. },
  3037. {
  3038. "time": 1,
  3039. "y": 24.05,
  3040. "curve": [ 1.083, 0, 1.25, 0, 1.083, 24.05, 1.25, 0 ]
  3041. },
  3042. { "time": 1.3333 }
  3043. ]
  3044. },
  3045. "FrontMOUTH": {
  3046. "translate": [
  3047. {
  3048. "curve": [ 0.167, 0, 0.5, 0, 0.167, 0, 0.5, -43.16 ]
  3049. },
  3050. {
  3051. "time": 0.6667,
  3052. "y": -43.16,
  3053. "curve": [ 0.833, 0, 1.167, 0, 0.833, -43.16, 1.167, 0 ]
  3054. },
  3055. { "time": 1.3333 }
  3056. ]
  3057. },
  3058. "BackBODY": {
  3059. "translate": [
  3060. {
  3061. "curve": [ 0.083, 0, 0.25, 0, 0.083, 0, 0.25, 24.05 ]
  3062. },
  3063. {
  3064. "time": 0.3333,
  3065. "y": 24.05,
  3066. "curve": [ 0.417, 0, 0.583, 0, 0.417, 24.05, 0.583, -18.93 ]
  3067. },
  3068. {
  3069. "time": 0.6667,
  3070. "y": -18.93,
  3071. "curve": [ 0.75, 0, 0.917, 0, 0.75, -18.93, 0.917, 24.05 ]
  3072. },
  3073. {
  3074. "time": 1,
  3075. "y": 24.05,
  3076. "curve": [ 1.083, 0, 1.25, 0, 1.083, 24.05, 1.25, 0 ]
  3077. },
  3078. { "time": 1.3333 }
  3079. ]
  3080. }
  3081. }
  3082. }
  3083. }
  3084. }