From 78dd9ecd8513f26cc7850902a0051af13d27b96f Mon Sep 17 00:00:00 2001 From: genxium Date: Sat, 19 Nov 2022 20:58:07 +0800 Subject: [PATCH] Initial commit for offline map, might break the online version. --- dragonBonesAnimProjects/SoldierElf.dbproj | Bin 0 -> 104276 bytes .../library/SoldierElf_tex.json | 1 + .../library/SoldierElf_tex.json.meta | 7 + .../library/SoldierElf_tex.png | Bin 0 -> 7280 bytes .../library/SoldierElf_tex.png.meta | 34 + .../resources/animation/SoldierElf.meta | 7 + .../animation/SoldierElf/SoldierElf_ske.json | 1 + .../SoldierElf/SoldierElf_ske.json.meta | 6 + .../animation/SoldierElf/SoldierElf_tex.json | 1 + .../SoldierElf/SoldierElf_tex.json.meta | 7 + .../animation/SoldierElf/SoldierElf_tex.png | Bin 0 -> 7280 bytes .../SoldierElf/SoldierElf_tex.png.meta | 34 + .../resources/prefabs/BulletPrefab.prefab | 309 -------- .../prefabs/BulletPrefab.prefab.meta | 8 - .../prefabs/ControlledCharacter.prefab | 652 +++++++++++++++++ ...b.meta => ControlledCharacter.prefab.meta} | 2 +- .../resources/prefabs/GuardTower.prefab | 153 ---- .../resources/prefabs/GuardTower.prefab.meta | 8 - .../prefabs/PolygonBoundaryBarrier.prefab | 118 --- .../prefabs/PolygonBoundaryShelter.prefab | 125 ---- .../PolygonBoundaryShelter.prefab.meta | 8 - .../PolygonBoundaryShelterZReducer.prefab | 125 ---- ...PolygonBoundaryShelterZReducer.prefab.meta | 8 - .../assets/resources/prefabs/TiledAnim.prefab | 132 ---- .../resources/prefabs/TiledAnim.prefab.meta | 8 - .../resources/prefabs/TrapPrefab.prefab | 157 ---- .../resources/prefabs/TrapPrefab.prefab.meta | 8 - .../resources/prefabs/TreasurePrefab.prefab | 167 ----- .../prefabs/TreasurePrefab.prefab.meta | 8 - frontend/assets/scenes/login.fire | 2 +- frontend/assets/scenes/offline_map_1.fire | 688 +++++++++--------- frontend/assets/scripts/AttackingCharacter.js | 53 ++ ...let.js.meta => AttackingCharacter.js.meta} | 2 +- .../{BasePlayer.js => BaseCharacter.js} | 45 +- ...sePlayer.js.meta => BaseCharacter.js.meta} | 0 frontend/assets/scripts/Bullet.js | 201 ----- .../{SelfPlayer.js => ControlledCharacter.js} | 21 +- ...er.js.meta => ControlledCharacter.js.meta} | 0 frontend/assets/scripts/Map.js | 78 +- frontend/assets/scripts/NPCPlayer.js | 326 --------- frontend/assets/scripts/NPCPlayer.js.meta | 9 - frontend/assets/scripts/OfflineMap.js | 105 ++- frontend/assets/scripts/Pumpkin.js | 13 - frontend/assets/scripts/Pumpkin.js.meta | 9 - frontend/assets/scripts/Treasure.js | 26 - frontend/assets/scripts/Treasure.js.meta | 9 - .../assets/scripts/TreasurePickedUpAnim.js | 84 --- .../scripts/TreasurePickedUpAnim.js.meta | 9 - frontend/assets/scripts/Type2NPCPlayer.js | 28 - .../assets/scripts/Type2NPCPlayer.js.meta | 9 - 50 files changed, 1272 insertions(+), 2539 deletions(-) create mode 100644 dragonBonesAnimProjects/SoldierElf.dbproj create mode 100644 dragonBonesAnimProjects/library/SoldierElf_tex.json create mode 100644 dragonBonesAnimProjects/library/SoldierElf_tex.json.meta create mode 100644 dragonBonesAnimProjects/library/SoldierElf_tex.png create mode 100644 dragonBonesAnimProjects/library/SoldierElf_tex.png.meta create mode 100644 frontend/assets/resources/animation/SoldierElf.meta create mode 100644 frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json create mode 100644 frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta create mode 100644 frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json create mode 100644 frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta create mode 100644 frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png create mode 100644 frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png.meta delete mode 100644 frontend/assets/resources/prefabs/BulletPrefab.prefab delete mode 100644 frontend/assets/resources/prefabs/BulletPrefab.prefab.meta create mode 100644 frontend/assets/resources/prefabs/ControlledCharacter.prefab rename frontend/assets/resources/prefabs/{PolygonBoundaryBarrier.prefab.meta => ControlledCharacter.prefab.meta} (70%) delete mode 100644 frontend/assets/resources/prefabs/GuardTower.prefab delete mode 100644 frontend/assets/resources/prefabs/GuardTower.prefab.meta delete mode 100644 frontend/assets/resources/prefabs/PolygonBoundaryBarrier.prefab delete mode 100644 frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab delete mode 100644 frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab.meta delete mode 100644 frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab delete mode 100644 frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab.meta delete mode 100644 frontend/assets/resources/prefabs/TiledAnim.prefab delete mode 100644 frontend/assets/resources/prefabs/TiledAnim.prefab.meta delete mode 100644 frontend/assets/resources/prefabs/TrapPrefab.prefab delete mode 100644 frontend/assets/resources/prefabs/TrapPrefab.prefab.meta delete mode 100644 frontend/assets/resources/prefabs/TreasurePrefab.prefab delete mode 100644 frontend/assets/resources/prefabs/TreasurePrefab.prefab.meta create mode 100644 frontend/assets/scripts/AttackingCharacter.js rename frontend/assets/scripts/{Bullet.js.meta => AttackingCharacter.js.meta} (74%) rename frontend/assets/scripts/{BasePlayer.js => BaseCharacter.js} (51%) rename frontend/assets/scripts/{BasePlayer.js.meta => BaseCharacter.js.meta} (100%) delete mode 100644 frontend/assets/scripts/Bullet.js rename frontend/assets/scripts/{SelfPlayer.js => ControlledCharacter.js} (62%) rename frontend/assets/scripts/{SelfPlayer.js.meta => ControlledCharacter.js.meta} (100%) delete mode 100644 frontend/assets/scripts/NPCPlayer.js delete mode 100644 frontend/assets/scripts/NPCPlayer.js.meta delete mode 100644 frontend/assets/scripts/Pumpkin.js delete mode 100644 frontend/assets/scripts/Pumpkin.js.meta delete mode 100644 frontend/assets/scripts/Treasure.js delete mode 100644 frontend/assets/scripts/Treasure.js.meta delete mode 100644 frontend/assets/scripts/TreasurePickedUpAnim.js delete mode 100644 frontend/assets/scripts/TreasurePickedUpAnim.js.meta delete mode 100644 frontend/assets/scripts/Type2NPCPlayer.js delete mode 100644 frontend/assets/scripts/Type2NPCPlayer.js.meta diff --git a/dragonBonesAnimProjects/SoldierElf.dbproj b/dragonBonesAnimProjects/SoldierElf.dbproj new file mode 100644 index 0000000000000000000000000000000000000000..087cf6c630ca55ff0c29f7d4ae32c4503cb3e18d GIT binary patch literal 104276 zcmeFad3==R)jm!jY$`z#P+Ki=skY(*D1sncwn=7^%p{qa%nV6LAPFQ8_AM-d><}P< zBrGDBu&>I#?+^%!C?KKQ#g=MYZL6)-w`#4v@9&&*-}lUY=eZy3`}_U=`+ooG=hIId zo_XfJ&$-TZu5+D9_Ke8sCys1Bx97;UL;EkaY}&V`Y472!#~Sv&;d2z8xxDM**@LHd zoH}}GU+aAfcK zBb!egSaR~MQ%7$mSVnnVX_0ZGlB1H+wjX@^%)xi#EiT`-oiVZA%ll5Bu)4BR_b;D1 zuWX^+9XayA*-eK}9a#C!k)!V>SaJ>>KC|(}g|pkd$(D>P`^hGYW%AJ-M>n24alUN- z`Q7K=KAAo`%HbNn>)fHk%TI1?Jihf>u4`S>?w#fCl(f7!pCkU%p8ZF2T^HZkcdUHu z(F+?7ojnPdYQldq%-?mD-(C5|$-Le!6F_>9&4|6Jv)sBimd#=8A~c8xlC;J_QF&d1GN99KJPns4&9UB`}XYhHhB znX_zYVsy$dtFy!s=NcK4`Q{s^4jn#{5?7LME6a|WQmc|z4rr^t|_f;7P`{x&U!z<72cslI6 z`xm&X`+oHOimZ=TRp*op`@@rU)geVm%i~tFr=NKE&66kI*!Si_*RsC$#ON0@tuwM? zEg9~`sg@Z&$5dB!zo>WiuWp_*%ex|d+gHa22JM8W&-|pg;mJP_gr^^Qb^dGJ{~T3m ztFzy}xo}L8>t~RT2FrZJadQ+ui%*^+D^7rdBxHkBzo` zF!0}lm-xyedWYJwziwItFM5gZ&G~V)sS~{kJC7VV)FeOs2zq)ifBOHLI%;R!czF8l zg?$H(TD7#u+c-79Pua+Sv?+4cOr2i5_4=Hj;?qArv-^MzRaMT?+@8G-tbcbgJbfd7 z`Yn5p@7jM;etHi*{TTlAJvWW$k@}|m^ef7@UH;Xxe;iZ+2lL>2)Bm}m4L*I?%ima^ zKDo$NKjTyH{=D=a?n>{HvXrIKvt22N&mKB7L^LKRwuO`EYMVPSwnWaW@Bf{;Sf`@xX7>4$gk)ftB{KrgujkUGQL!*$Fj6=*V3y z^EPI$>{+z&^Ypk{SKX52GIy0@%)2`eUOu|x!ukX9RY-!X@M=s#kvD3Avpmvy!|_n= zCl$Wnd7a+wHvRmkrM9qhM-TP*{QQo^*3eCd_XU4`ZF7;g;pM>-UpeyHn)#lR@dN*> zX8z5yt__Y&Yh%jX^KH2Y_ndCpdhqP#i;eab_K4_|e$gq}@oA2PB>XuNUA3|0mS2>2 zJ~#JNY3#Cz-j@D9js2w1RzKZy>!HV^-kSp_`uUO{y?my8fp^8!KdrbOx%Q2uU#=OvcTZ9mj94_;xf$)WvrFRad~TJX&~O>+w!&a%V}i({&jCix2XoPX!= z=8G$=^?fY%#K#@>v7QOGjI2f0ObSCaL+<~1&b9fY=6V~}&3$QD*2;-ow_im^Q)ED z?C!o%i!2>i%(&)FdOT${+{Zrm+w=d`JU3z4n4~Vx{kbm2wleqClGHlOyx0+kP8~eB z=g8U9hw5|6`lUFdUWkaDl9H0-wP2KkL*6g=?Jx4ylsHRX>J}2wD>}bEwj$%sS0DHK z`8VaU%e*(+|JMusI?b`wMSt7o^y?=g=ecSofAa2&9hyI~tQ@hiCb}ZIFfRS@)^knU zFE++jMmnRCAB%NNwq!XRu4<=iS!{Xa^DD=9weK#D4LLgZC0p*Qr88~y`@*NZm6ZHk zp{r)&^Yd?|k9w@gTmRy}$Iseaya~egl*dCOdJRc)t+MSevQ;M)xYOP|`1YIo-zv4O zh>A)c{xgR?$C(8QjNi2W{jc9V`|NaAh|N93`qKw|v%M>}9NM|$aAhXkw1ej{7LLZ7 z_T@QxPI_&e(*scrit(%tS{YjxMtm2+px6gGSo>dlo7kKMm`C?Gg@s97n zSv|Bi9?$B;w{{%ZclgwsJNKU4p@xppQQq^Xn=UwV)*sw|@ba+>TSpu^yXoYC)dz3w z_7u9eo;$Vgz@fdTPsWdgw_4D&@#fZ@7e~fqY&*91#5S+PlJ(A>WAAP|=5aYLZr*<4 zfF;S{ZF+0xwFA5MAH5WpVmp4~)M4*5cweW|v!YIU+`dD551c-`=p3Z-Je#X<>+a?Y zdk-A1KDTGjK~Ee6n31F`&Dackg3 z-%4?19k;sPg-5;YfRDdmb>4BpUrq9Dhbwx*>xjCPVz~)l=uRYj{PEO?%Rcz4!uU5K z;opL%zZT~_la%CWa=^#K%ej*Pe>Ks&3}Dn@c>1@pZ8za-x47WrPdV*PKKQFDN8?@J z*Luh>$KdJT%8qJ+uYD^5KK`iF-kbpsQ5ClV&T2C}eX}L$8hq`mPWbpM-soHL@K*)y zt$_n@9=`SsJG|8sp3JKm@K;46RygD1n&9c1t*#H?Yd6Kf$6t<#z2Swwn&i6#fe%sb z$<)Y;@U?H);p5MEGMgOmSMy@GBzdEn;OXB>bbSC{`*t*Z{Kb^W8(#RUX})uKV#KVVgXnXbt}et!v#ND zqNnI;c23X`rz<)oA`bq=DJc-|<65$#n|1%-?09=(gdL7aE&Q~W*lKvuv2iz2Er9soxl*zKuij2c zi-TV~#|ap7Bz$~RJbc!Om|S{PhpQwpWn@Hji`Q~17EZLyS za7Aar&*4m(2j9^L&o$PPJ;Mtrzyb%L#2FmEaA=ReHB5w8xYSblLdlHMlETV64mg;J zo~dI}A$}#QKdtk;!wI&I1@KU+UiDrJ@%JR zEDZvP!4AN6tNV__1uxop+m#wYcj&r@0?ey$?k|psiN&js1EFJ7`WQG9m2oNO&r=!W4w7`?a&pkhwvt8T%w=c)j=B+Ee ztG*w779wVKPSBONUs}?}eO`pe@g9gKDexwy!Hc#eFM=P99ZVhp;6yi%%1eTC&yE~i zt0p(ZiLr@O?xa|q>WOA|=;CNghXM9Thdsun24s5ocYK~qO24<9lwtNmlD;}NI})>K z9{fUMAa}4cfft#5ZFm#nBDdtkrRbxHGidPXPkQB7UVxaxt~&C>eU|Ltb3;&+N-j+(?P7>|Jq?5VUjv|4v%cn*;7laNd$|!U|lxxcH zBmm-LZxs^jWjFk2sn#iUm>e#4R^j-H@YtN~E1#VCKkElxnxwva%C*wKLA0qK!UA8r=evYG{Ns>E#1{(0d-yERs4}=| z@h-@sK!0FwL6Z58lYkPP8&yB&}yVtAqeoO8>OlnS7R zfh~B^EhFIgI-CV`t+eOM8$NdAr=NZB*I%oUjNUyV7_1ep=5o|QZ^G#?J0>|LFPTQ) zB#OQ+HTo8~HyXktMiU7=!ubLa7`Q{$Znw|%S^0VP6+9;1hF_fNxAu!MC&h)~nNLA{ zHULO5{6xdcx$dNd&n_RlXpx#)CRt+O6>83xr+63(9qJXOci%E8(MeUn#T+V;c0sLh zC&QC@6oS&VZm}IjjFlbP}W?|PKmq-7kLIm z-x2l^Y8Gt`D7_7DzdgL_%dyw7FwjMSz_};n&Y?B@+IIjN$|-Y>;Y^5>slccz15$AC zIAL*J#`1I&RXS^-(zyem=qg-=40x`w@Ex;89y_~r=eqN+p4k0{tNPwgKK|{e-+Tne zqy$k~+?$8?Ll(82yh;_tT#ghHlFqW~7k*kOG9u48?Wbh|f!B{I_=VyLb@(&PBL1TV zD(QOoEAvYFb`nHP^TPAcT?@}`a3;(P&nAe4_;SuT9cKX!w`9V1#ItIr%(orR>LsW< zAh_Q|yc!F56%Rl@y@}W102~5Pa~!Z6fcch8NSXLnlL^(XxhrMy1{^ta%3?Jj1#`+` z?OiF06>t^IDT`fqebH~+m9p4$SIS}sL`-waV&7dUi@ivajLMtL$}Oi_*HY1+e%|A% zNdt@t2}}c{+;>uJ_4!cr1E^796vP})iu1-ut5*f5g!sk+TTq%#Y(cChbhxgkz&}bU zQwO8mEjiXY?_FS2PSyCj8HJS#XVEcf8s)LWnWzBpK&9J&Sy92i-8qrx?F|35Du#&3 zYK6T8*jVBLIXzH;v04Fm-#rTlbo_8HucSRv5RJhg3Q&>Ya2`h;;}c&8*5^6^a-?O_ z0DzCPrNY-PffJ3jLWx={1>-hb5M`JZJDQ56jaxaX>xnJJKDH0*J@adWMDDElin}-cGb{dsw@WaCh@nD z6S}4{Dg}a7>s*`EGAXwG804&C9U8cj+?45TKjGq@V;8sY(q!b++b&N~8lcCAe;lf2 zWcCX0_`KoCj^!6Ve%hvj8aMzWfH)f&+cnd%{Q9T8@>N_&%tH)7>)@OdKVS7->Qx9G zt;-rWuu+}!>1$_eZfzRe+K{X-o`jG8n|f=hYQnFbw{TX)^f_gMvl*&oMxBYnbi_r*?@NP$5}DYvc})Y%ZRh$-E#QBOP)Dl1=0HvB2G6NWbIYP1M@! zenuqRW;)R!-+jN?_Rf?CIXJZiPIOMm1JL`u_V_ZS2AsjYIUB{0sGIXlK)BfIp6vY| z)G&kS_%?ie@80LGPPvcY?c~7S_Lcqg#wH9MSi{)scx#!%^n}2h@Dzvmmh6Xj&+c~r z9v`ir)Bhgh*G{PEk+2jiX{0u7b+6c$?fc79US6=IN(D>FBdp%0f~D;9f4w^BR#rz| zu*3uk7FTtTulhTeU;h(Dxi$~sUp4mSQO+BPa<;nOP>Mvx5YLnl^69th2VR}>ASW6v z0irQy(WBS@_((?WA$BHITqvChZ^QlHZyt7K^1rA$>GHQvzxnXfZ+^q8lhgn=6k8tl z^~34&k9>&$+*TKpK`4z^`0-LmtMA+$UvzsaVi*0K9daFgo36Q5HoR6P@P%F*`UlOm zvf{NWtIX}#_*{$TS|#DNDr7-abFF-Mt+KNTA*~6P48u}a4r$Kqh`j(7eFF?- z3^0`SqbQmj*YG(W;BzYDXAbE0!G?L7l$ir5v*fwB2X5`oAF4^2$&fO;JaO;deh>>a z%tIWc%x*6uHL&VCm3bgco&cCUYz&_Jl|wZ#+J-T@U^JD1YK-Qr5470cq2o)4k0bXt z49I;VBKL%4lWy+9cu(g()PZN>izhYbzI1ZN1}t@1p`L($m9Uhbd#iNrYqI2X|FUxK z-O{xv$ET&V3Nl@W1S}mdC=lKrHk&x=NeyM6+}Mv{IF) zNawy{?8uVyf9UC>b03<(AA)rn+UggKMu_p5<_@L89a=cXyWq?}9?8($p)m+M zJ*KcT74Hyd`AzOnsJkZxcg-D&!#gw^;ws`6u>z>8SLC=f^%vtgwpnDa83#&{EEqNOn@9zaSrt;5N+p;K7s8g(H_W!cRvdV zV@gfK5GjetreJj*gH?I`Fq+`eteSx$5&wTe!cRMQ{Z_!C6KoTsG&pN?|puet$~XS6g6>= z&t9X4;3qmZaH1Lam{ZcH7hPnY%4L{N2*y@tLqXdoy^J{xdQI4+tbVSg0O3kYuFO0X z#_upt16f$Gdz63Rf^=Dr#=(XE&S1LgkVaO_(QP1XjI?;c*93a2&TqTSvRk;ZU#p%awKm*{kMTg zUZ2Guf<96K*?jQ6w$yaFT}#?5C&n@6p#h&;7IIu(X2H8J zw^R;ez>N_IL+QelYI1G$3$vm+et2RkYvJ}$TDWqqtr$EIhmwQiK`H#ABz;rK$!s7r@c*!*X2Vz7cl<@nX5 zy@W)I`+V~8uRrL4fg4rEn71#hgIa90}B--;!`a;jK z{?PNL6zz)E(sI|WKxbXm3I<(;+km$7`*cd<8hu@C)Kq_~2`AQZzJkNWXOyDqDLZTrZ zfhYg)(|@tN{fvS{CFa2y+zrdXtnZlwW#9)5c=@;lB_kj~@%HTe6(X2#SdxC0s`5%T zNkf!__P`uXEJUWJynqO*Y)vdgrlzXEw4`)lEcD*Bq^!@UHuY#tEF?HQ8&kj|85%f@ zv2fv3k_b38v2gU&?CbgTK|SVc18%sg1VptS3< z167j z$+x!rC#Wvs^NnGumgFL1y zT7xl(s`Hrkt&nC2n}S+JQX#UO1_x6lL%^6}pf`n&NA(&zOmLC;DfB^H?U-j8S4W{1 zHo}x%k5*gGk| z4=Md$|4x$(L)-FqkFCFkwmcxSWGFKa?f#8`^4EW6$?zfm5XNLka$;9?kSUoO{ILvS zf1;E%FgW8c!Na~l3bEi@24TB%9L=QMNiu}}3qIE;pD+m99-GD$(>a9A2*3hMhi?$f z|MoLh;60!ec=E5^<*!`CK?O^D>;*JF55XMOk^I+&TYEjpn{PrP)=xvxUWebScbi(J zafqzO>BN_Q3US3)p_WM@^AD6pqfKAnLrO``B10G|=c^Z?3K z0~hWmEXxJSVQEu4p;gR=cV8S^GZ^`aV;31*>BD*_9InI#$U$d$gj{3{Rp3fmAXtHF zfXKm-BujGeyzQ1)vXY^JybYu!JF60z8c;`4z1{cAv3M2uSsf>x)k+aDHOgm+IfXe^ zBF>x`nE*YqTkDnh!m{DK*@${_P;JV3@=3lXgSdAh6d5osc#qWYs0)Yw_JTuSi^M8j z(fWT==O=+((R+x#wd=n2|HxJ5pA_US_d6;($yZdAx=co|eC@W>82^j~Rjz_ z%Q3p76DMXVMvFwj`r9%)T-QVHZ-1{8EOLx43nK>n60c@ptJ3LzPfpURmS3(|+3Z%e7;9lyL4qqF z_oQ0j%3P+ns=2EEW1QU z(g>EfUP!MPL6sN4zOf-fGEI#oAr$rzhs-_Ei<_%s^Pn8jxY8f8|S`irn92sThbYU?l#Tw zg_;G9@2|10eN}UOlkoU1`4e@w)Z+^Wz-C3ARmlR@kZbD&fV11a18crcQ6AGm-oe5~* zFzhRL-HPurKP1bg{PROp1xOGBgk#vR4Sk;)y;qFX06dqh_)iZc9d^^;=^5&fN#5Fv z0i8Sii>y{qcoQLCly90uAh4Sj8!UnXOu!|2z%+ygqTsDw&H#Nhm-pklUut;wnfUHq z)qQwbgU~u`C>$m@6Z}QzOP8vwj;8C*tITu-xUnfo z%G+Ira`3={)!4u*wAUq)V&f>&rNwdds2Lv_ZF0zi=DCR4)Eshb*M%2eGdtu7sCrt& zidglKlbDdGlyxm68_^(S5)-a(p)REvm9o4N!Rcd~b{$bETTAKZFiH4fdsfcHCa5Oi z6P2=l?tXl$nplVlzimAM%AaUrAyO$J%UQqHB;kiHoMEPVLMkP!p;l9F`KgpytYI&v zvQjlvifAk`YCsX%DOAePanbj;>{+B~Q!k3dKFr!LSes`U)$Ut(o5v=#sT&03XM{27 z9#S-Run%}cf0^n+tK&b^SVRI zwcww_iyx{x1Z%AU;0hzsZ%%*cBai17S<0epyh zz=*TqtdiC=^*U#8Wfw_p`$NYQ`l6bqUbr3gUq`q7kgT%(D7if_j2d2BH04%zCkSY+ z^j^$Kg$Uvpal)Ac>jwA0!9p3{4qbx=kWedyZf)L_{oDkZ2FXcdPvkKvdpPvXhDrb_z4x`)I8FwTn> zXksBs7dkIw*w-u;&e}?ax+WIlI7HaEySD40vrbQg{UW8mG-`v0-vh5hZ_<9JAuI0b(<&`dloqzgkt zSA=nCfm$JFQ53&vOj*w<9;QK3RMao|9cT%tO%A%0R*BKm>?SVN%=vypv%RXst-(N)noyi8f`2>ugdi>^WEn zw5ZCIzP4rI2r2Wm_n_jx^KXq>MOTdjr5>*Ph;akEhGCj4x-bJ>1kUs$ra9OGxfY0Q zjg+V+nTrVt4y#fksSgvoECU71uXQ0Bt6MMdj5yh6m4?Tx7|r#C1cyZ`XEc`Fc5U>M zY-AmS!!I-Gg0b6dub;rhI7nlKB+x|3G)?(Xnv5ed@#Q3PZ0}?&22UsQ$*E6AiPNEj ztO6UvxipOn$|OzoOXSV!OeFNSXsTaS->#^w!dB^zHSx=Z)$f`Gl)yCc%Yx+1#uS9G zH`Mq=79K?2Z0(2N@vNr$bz}A0c$h>SCWS#sZ5~O9G=)JbR=*2JppI{VruxOgVA-l7 zf{G@ELHTPdslYQyhE=cj!MT7{Cdsg->=odwo_Ro%4AW7^w;};W?X%RvfLkm$D^_#P zijT==z`L)=QQ`1^I*TM#(xS7d4$3Q%3SkGLLC6w81-54jLRK)7#LSB}q7dzAYGg6} zL|knYjcKgrhg{)m)$mB7y{#I|)Jj|;5HfX$6>Wj2PKc}RhxOy4e;Ty~LMA8*78Ws~ z4=Va;BG(G!&Z^(EK=mtRf)SwF1YCGMUUrt4;$9E4y3J#=t?2)i4>W@>DG#nfu`Tp_ z-oYc&qpz{W_UXSgB~mBqTTT6rl}O*SY{=vy*71zxMC#f4)(L~A{O-Lg-ULi~P znvh1)ALB9#3!BT{}>?;<)Z@3 z&`g>$6iSkQq-R>8V@`)i2&T3#1(;bn;aFrB8Y;v_96T2@rju|Xn5}Y{PSk)1wag;M zt8`-d04x&|avh%m4l9}(NIJ|cM=Bp$F(M-AFh)ea?j{-$YAi_{vS371O^wu>W0?B!>NU{-s%wfS@(tz7TMKg%7+^5ROtxN?6eZ;$gnC622!5ia- z4vQ`H8(x(YoBpvfax1qa+lgsc9J%#B1f$MnYM{+u1J+xRVGLDMtQ_y*ts0xNvVaD% zC_58!cRuK|fCgO4lPi8OJ)4y_wal9+DIh?KGpH!(h7`BAu=kZVwZxLeDk;FP$W{&j z>orX_;S}1=W>ZEQP64M%LuUM)syR)}L7{MH{u->&JwUCsSt2LOMI#Tms_yt&NGfZ9p!!N+- znkBGon*5K~U~=q8h4g1%TgBv}Bh`JnkElA)74cy8D^RVfmy@W0R=lsB$-+4kXpU+l z72$I47@M~9n&n44*%-^UIQ@sX!0h|+X z34<$YjrRr+pMf_aS4iFtE^zNOcnu&qSnGF?XFZ)CD|$KEYe3P<1wZy52EGTH+WyF~ z{36HqE=hUQPPDu!@cmrT%Sn}vM-F^BLHA{lM1W^Lsb?7Q6Qu^>gUUdsJgMimf5Oby z?g6FmE)zjyj^^#z5nNCTVuOt=2J5>!gCA06ew;E9Br6Adc2QI*itB=s0-i7vC3uSe zh%@~K-!pc&v*Q0HzljjxtV(a49ha@uPm08ZC+9j}W3qFskJs{J$p85J%ebHdO}PUnn+ATYF;Q9PP}Oe4x$s?Emy z$%O4_izvwlU-keIv`B1Ie(K1qDA;oGMX>eoqoZlbsJmtLRbk>ky)2 z!TV}D>QX-qhL0IrkQ@*lgX=pl)Ul&3OieYSW3|O5$xvCS1uB@C`SND=Y*(Yfs%$(Q zleylW?c@QnA&Rg^&M?9E;e^DUKeMvgqx71TviYA}_)2ASyuzC(>f3L)-y?Mv2bs~z zmJVGc3!?IP-taPZ7Q1u|@T*|)ZaRt*(t``WNuR@gF*KZL@Q?E=F-9|Kp9LLN`n+%C z+`T=OQIvsP@U6koB7Tvy&q5JENGfD$Uyvg0i#Mfu`g$+bG%hZowt8rUWV&au`Ua zC;9_2yB!eR*;rn7#=*lEPHuH)?mGX@spebT4yh=O$=;^h(vEIFaV+Y_IP{L3Lc$*B zj*SP7AK81@pKHOYA5EFT*BTrXvzk0vr|pH%n^XPeaQ)1!C^Ax}DG&q?D>--wSiD!k zUzuCHUr&Za@qfMa|Bvv}2Uq~+CI%l}ACmRcm|=?s7Q`c2pTmNJS{Mje;0w+(9fYbD_ zBP>dC{Z^+{8w()E6y0d3Oj;UX~wQDQ}eN6t}U+ z5M}_3X7C2IWd7zXN+DN$XQUYfc!;C{*!4y+j%YOuQN|c0@E|6ZUgB`rAWIUCDv?~J z&$6gAhV8G@%qAO|qY6B#aWcC`rRvD4Y&}n`lA{VNE(%a}0rLa{EhFAnG&ax9e8JzB z$Db8S#QTcELh8aNMmdXkUqgk5F**thQB_gyYJ&;?d^m;EfuE2~_#Gy+4Divch;{nY z3HQ#5A?1de58s4w)5KU!#Ps55{-U{N?M>AeT~+KoT?_VT2#Z!<)hXomH8KH%0M5Kfz^Y^PcXEc9_(ZqZ5yeVaz zf{OU44D?_bn8HRiHR;!j>34iBIE3^JQL_TK8F!Y>--3m~Gr~zb58i!=60H2iVs7B_ z-LAL?~i1}$}hPJQDb2{9DM=@hjQ77GZ4Q5l_4pW zB)25ihk-^f3uy`mBk^)L2S)U*B3@FIsixwkRt#k#c_AMAL5A`_tE9aRssoMZhh#}o z-<`?0pbO4|RbuP+bHm2(vVzOTmBF%;mcxszyB&#(qdG=*nlqoT5dpp$rA-j_)@m=HhdwQI;fLDN=ND? zS#1A>$nJDuWMa1DZ}=v-se|7S#@Lan>y7q^gKjZ(Q8#npMK4sXVC^Rf=QvAxbN3&jBk$*mS=N$_mDI}B z+*p9r%5A<8W|+p^1Erei>%i!{Z6(h0Z7_?zo0&>X6MbDcr}OHcXj)$reaUfb6q6IH z(U*R-WaLE0Jwj#xDki7mCjp0i$Ky2hb2{TzCl)_*O=Y{}vQs)6ZQ`6}ZT)TkjebK{ zG^w0s7FP`hPq@NLlT_ZZIG1V|O)95xuCl{KrD#&Q6B*qxUKljBUDBj-G;R&8bJE16 zCY4(;mG3@=y{2B878{vPzV-z9MyaKn-?+6Ay=7)a%Y2T}xOFCcZ7^;vknH}#ydcO8 zd-!3F$$bG#?kt_eR4GhZA7^G9=Bml!PE}~jUXsMMovdKti&Eee7Q?PlTqHKZ%9QnS zigBwXB*>{6!-bqEwGDcid2RA+6)%Z|8a=!@i&EPz(Xh)1I6mGq_64fB*otwovOa>C zz~ww!i4=f#e=Abi+#FNZt9Ds3+gX>yhscTT><#XCz2D0+_D(Dd-AH5~`kKY)-U{0( zs|IRPxM>@Tgt{lN$$wsyNp(l;vV2Z7(m<4Iydw`XS1brc7ZekeEW6)8TYC7(UZpO0>Bwoya|JNHx$O$9JE* z%EfVV%c#BxBNI33?)fzL?9wPeXKAiN44~S!J8oit`C7dSq_UvqMy~1jE_ItzDK-6F zgKA??0XqLUIWKAAYCO(AmY=7&08L!=B8yQ*{;Rkpl8MLRFbQ}Eakcnmb~`k2l~CW;cFC3}>Nr;fvk&G_5j01B|7cabL|1g+C1V&8;w39A zXoSz=n92N2JdgUqx)*;?#xA$qJ! zW}c}=mdx3<5LZEb+KV!ByJ5I!V8L14tlLBy6-Z_1aR|AN?$Ve(LH)=2Nu>50%QLd1 zR`zz!lnpEs#0ml0;Uz0vLOnDS%dFHJURE4TWoE16D7pV=K9doWzzBAl?+}|-Wly-^ zY{uVH`B0z7I2g?=cu?MbxCgJ4)C?uB2#*a~o+B$7yUv#&S$ E6e3W+qr!3h{}h@ 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 literal 0 HcmV?d00001 diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.json b/dragonBonesAnimProjects/library/SoldierElf_tex.json new file mode 100644 index 0000000..000fccb --- /dev/null +++ b/dragonBonesAnimProjects/library/SoldierElf_tex.json @@ -0,0 +1 @@ +{"width":128,"imagePath":"SoldierElf_tex.png","height":128,"name":"SoldierElf","SubTexture":[{"frameHeight":45,"y":1,"frameX":0,"width":34,"frameY":0,"height":44,"name":"cape","frameWidth":34,"x":70},{"width":10,"y":107,"height":14,"name":"shouder_l","x":74},{"width":11,"y":107,"height":14,"name":"forearm_l","x":61},{"width":15,"y":93,"height":16,"name":"hand_l","x":1},{"width":30,"y":61,"height":30,"name":"weapon_hand_l","x":1},{"width":8,"y":101,"height":11,"name":"thigh_l","x":86},{"width":12,"y":93,"height":17,"name":"calf_l","x":18},{"width":20,"y":113,"height":8,"name":"foot_l","x":39},{"width":28,"y":61,"height":31,"name":"pelvis","x":33},{"width":8,"y":88,"height":11,"name":"thigh_r","x":77},{"width":12,"y":88,"height":17,"name":"calf_r","x":63},{"width":20,"y":113,"height":8,"name":"foot_r","x":17},{"width":13,"y":94,"height":12,"name":"shouder_r","x":45},{"width":67,"y":1,"height":58,"name":"chest","x":1},{"width":11,"y":94,"height":17,"name":"forearm_r","x":32},{"width":14,"y":111,"height":13,"name":"hand_r","x":1},{"frameHeight":39,"y":47,"frameX":-2,"width":34,"frameY":0,"height":39,"name":"we_bl_4_f_1","frameWidth":36,"x":70}]} \ No newline at end of file diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.json.meta b/dragonBonesAnimProjects/library/SoldierElf_tex.json.meta new file mode 100644 index 0000000..b3fd966 --- /dev/null +++ b/dragonBonesAnimProjects/library/SoldierElf_tex.json.meta @@ -0,0 +1,7 @@ +{ + "ver": "1.0.0", + "uuid": "04d25c46-a15a-4390-89fd-7fdb22de884f", + "atlasJson": "{\"width\":128,\"imagePath\":\"SoldierElf_tex.png\",\"height\":128,\"name\":\"SoldierElf\",\"SubTexture\":[{\"frameHeight\":45,\"y\":1,\"frameX\":0,\"width\":34,\"frameY\":0,\"height\":44,\"name\":\"cape\",\"frameWidth\":34,\"x\":70},{\"width\":10,\"y\":107,\"height\":14,\"name\":\"shouder_l\",\"x\":74},{\"width\":11,\"y\":107,\"height\":14,\"name\":\"forearm_l\",\"x\":61},{\"width\":15,\"y\":93,\"height\":16,\"name\":\"hand_l\",\"x\":1},{\"width\":30,\"y\":61,\"height\":30,\"name\":\"weapon_hand_l\",\"x\":1},{\"width\":8,\"y\":101,\"height\":11,\"name\":\"thigh_l\",\"x\":86},{\"width\":12,\"y\":93,\"height\":17,\"name\":\"calf_l\",\"x\":18},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_l\",\"x\":39},{\"width\":28,\"y\":61,\"height\":31,\"name\":\"pelvis\",\"x\":33},{\"width\":8,\"y\":88,\"height\":11,\"name\":\"thigh_r\",\"x\":77},{\"width\":12,\"y\":88,\"height\":17,\"name\":\"calf_r\",\"x\":63},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_r\",\"x\":17},{\"width\":13,\"y\":94,\"height\":12,\"name\":\"shouder_r\",\"x\":45},{\"width\":67,\"y\":1,\"height\":58,\"name\":\"chest\",\"x\":1},{\"width\":11,\"y\":94,\"height\":17,\"name\":\"forearm_r\",\"x\":32},{\"width\":14,\"y\":111,\"height\":13,\"name\":\"hand_r\",\"x\":1},{\"frameHeight\":39,\"y\":47,\"frameX\":-2,\"width\":34,\"frameY\":0,\"height\":39,\"name\":\"we_bl_4_f_1\",\"frameWidth\":36,\"x\":70}]}", + "texture": "4a3aabb1-75b6-40ec-b107-241164a8ec23", + "subMetas": {} +} \ No newline at end of file diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.png b/dragonBonesAnimProjects/library/SoldierElf_tex.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2cceeaf15e38e794a3d5aef8ff738056c7a5b6 GIT binary patch literal 7280 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 KMNUMnLSTXkVCVz@ literal 0 HcmV?d00001 diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.png.meta b/dragonBonesAnimProjects/library/SoldierElf_tex.png.meta new file mode 100644 index 0000000..17273b5 --- /dev/null +++ b/dragonBonesAnimProjects/library/SoldierElf_tex.png.meta @@ -0,0 +1,34 @@ +{ + "ver": "2.3.3", + "uuid": "4a3aabb1-75b6-40ec-b107-241164a8ec23", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "platformSettings": {}, + "subMetas": { + "SoldierElf_tex": { + "ver": "1.0.4", + "uuid": "a969fc2f-5d11-4ac6-90e1-235b1e119802", + "rawTextureUuid": "4a3aabb1-75b6-40ec-b107-241164a8ec23", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -11.5, + "offsetY": 1.5, + "trimX": 1, + "trimY": 1, + "width": 103, + "height": 123, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf.meta b/frontend/assets/resources/animation/SoldierElf.meta new file mode 100644 index 0000000..e5d6765 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierElf.meta @@ -0,0 +1,7 @@ +{ + "ver": "1.0.1", + "uuid": "2202f4f4-b792-4dea-8302-633315aded66", + "isSubpackage": false, + "subpackageName": "", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json new file mode 100644 index 0000000..6efb62a --- /dev/null +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json @@ -0,0 +1 @@ +{"frameRate":25,"name":"SoldierElf","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":25,"name":"SoldierElf","aabb":{"x":-34.53,"y":-104.78,"width":86.87,"height":105.25},"bone":[{"name":"root1","transform":{"y":-11.0128}},{"inheritScale":false,"name":"effect_r","parent":"root1","transform":{"x":33.28,"y":4,"skX":-46.2343,"skY":-23.9186,"scX":2.1416,"scY":2.3753}},{"inheritScale":false,"length":3,"name":"root","parent":"root1","transform":{"x":-0.04,"y":-15.48,"skX":90.2632,"skY":90.2632}},{"inheritScale":false,"length":5,"name":"thigh_l","parent":"root","transform":{"x":1.6606,"y":-6.4628,"skX":-40.9714,"skY":-40.9714,"scX":0.9869,"scY":0.9853}},{"inheritScale":false,"length":5,"name":"thigh_r","parent":"root","transform":{"x":1.3414,"y":6.0837,"skX":3.567,"skY":3.567,"scX":0.9859,"scY":0.9981}},{"inheritScale":false,"length":3,"name":"pelvis","parent":"root","transform":{"x":-3.2028,"y":0.1015,"skX":-174.7594,"skY":-174.7594,"scX":0.9802,"scY":0.9952}},{"inheritScale":false,"length":8,"name":"chest","parent":"pelvis","transform":{"x":4,"y":-0.0016,"skX":-5.2066,"skY":-5.2246,"scX":0.9979,"scY":0.9998}},{"inheritScale":false,"length":9,"name":"calf_r","parent":"thigh_r","transform":{"x":5.704,"y":0.0016,"skX":16.144,"skY":16.1453,"scX":0.9955,"scY":0.9905}},{"inheritScale":false,"length":7,"name":"calf_l","parent":"thigh_l","transform":{"x":5.6592,"y":-0.0016,"skX":32.6682,"skY":32.6684,"scX":0.9945,"scY":0.9954}},{"inheritScale":false,"length":5,"name":"shouder_l","parent":"chest","transform":{"x":8.6578,"y":9.9632,"skX":-164.5031,"skY":-164.5031,"scX":0.9868,"scY":0.9948}},{"inheritScale":false,"length":5,"name":"shouder_r","parent":"chest","transform":{"x":10.4583,"y":-13.3897,"skX":-147.4808,"skY":-147.4808,"scX":0.9972,"scY":0.9986}},{"inheritScale":false,"name":"foot_l","parent":"calf_l","transform":{"x":15.2897,"y":1.2193,"skX":8.0381,"skY":8.0381,"scX":0.9955}},{"inheritScale":false,"name":"foot_r","parent":"calf_r","transform":{"x":14.2999,"y":-2.3357,"skX":-19.9771,"skY":-19.9771,"scX":0.9955}},{"inheritScale":false,"length":12,"name":"forearm_r","parent":"shouder_r","transform":{"x":6.0016,"y":0.0016,"skX":-38.0045,"skY":-38.0045,"scX":0.9973,"scY":0.994}},{"inheritScale":false,"length":7,"name":"forearm_l","parent":"shouder_l","transform":{"x":6.0144,"y":-0.0016,"skX":-42.3089,"skY":-42.3089,"scX":0.9979,"scY":0.987}},{"inheritScale":false,"name":"hand_r","parent":"forearm_r","transform":{"x":13.7919,"y":0.7114,"skX":3.3187,"skY":3.3187,"scX":1.0446,"scY":0.9963}},{"inheritScale":false,"name":"hand_l","parent":"forearm_l","transform":{"x":7.6912,"y":-0.0032,"skX":119.4238,"skY":119.4238,"scX":0.9894,"scY":0.9954}},{"inheritScale":false,"name":"weapon_hand_l","parent":"hand_l","transform":{"x":-8.5173,"y":-2.6264,"skX":139.1066,"skY":139.1066,"scX":0.9967,"scY":0.9984}},{"inheritRotation":false,"inheritScale":false,"name":"weapon_hand_r","parent":"hand_r","transform":{"x":1.4768,"y":-3.0184,"skX":-17.7744,"skY":-17.7744,"scX":0.9981,"scY":0.999}}],"slot":[{"name":"cape","parent":"pelvis"},{"name":"shouder_l","parent":"shouder_l"},{"name":"forearm_l","parent":"forearm_l"},{"name":"hand_l","parent":"hand_l"},{"name":"weapon_hand_l","parent":"weapon_hand_l"},{"name":"thigh_l","parent":"thigh_l"},{"name":"calf_l","parent":"calf_l"},{"name":"foot_l","parent":"foot_l"},{"name":"pelvis","parent":"pelvis"},{"name":"thigh_r","parent":"thigh_r"},{"name":"calf_r","parent":"calf_r"},{"name":"foot_r","parent":"foot_r"},{"name":"shouder_r","parent":"shouder_r"},{"name":"chest","parent":"chest"},{"name":"weapon_hand_r","parent":"weapon_hand_r"},{"name":"forearm_r","parent":"forearm_r"},{"name":"hand_r","parent":"hand_r"},{"name":"effect_r","parent":"effect_r"}],"skin":[{"slot":[{"name":"forearm_r","display":[{"name":"mecha_1004d_folder/textures/forearm_r_3","transform":{"x":6.7,"y":0.41,"skX":-87.21,"skY":-87.21},"path":"forearm_r"}]},{"name":"shouder_l","display":[{"name":"mecha_1004d_folder/textures/shouder_l_1","transform":{"x":0.4,"y":0.06,"skX":-68.92,"skY":-68.56,"scX":1.0015,"scY":0.9985},"path":"shouder_l"}]},{"name":"shouder_r","display":[{"name":"mecha_1004d_folder/textures/shouder_r_1","transform":{"x":0.46,"y":0.08,"skX":-136.05,"skY":-136.05},"path":"shouder_r"}]},{"name":"foot_r","display":[{"name":"mecha_1004d_folder/textures/foot_r_0","transform":{"x":1.06,"y":-1.31,"skX":-85.95,"skY":-85.95},"path":"foot_r"}]},{"name":"calf_l","display":[{"name":"mecha_1004d_folder/textures/calf_l_0","transform":{"x":7.16,"y":0.84,"skX":-91.2,"skY":-91.2},"path":"calf_l"}]},{"name":"hand_l","display":[{"name":"mecha_1004d_folder/textures/hand_l_2","transform":{"x":-5.62,"y":-5.3,"skX":179.52,"skY":179.52},"path":"hand_l"}]},{"name":"cape","display":[{"name":"cape","transform":{"x":10.59,"y":-16.32,"skX":84.58,"skY":84.41,"scX":1.0049,"scY":1.0201}}]},{"name":"thigh_l","display":[{"name":"mecha_1004d_folder/textures/thigh_l_0","transform":{"x":1.19,"y":0.3,"skX":-66.04,"skY":-66.04},"path":"thigh_l"}]},{"name":"hand_r","display":[{"name":"mecha_1004d_folder/textures/hand_r_2","transform":{"x":3.51,"y":-2.17,"skX":-84.89,"skY":-84.89},"path":"hand_r"}]},{"name":"effect_r","display":[{"name":"we_bl_4","transform":{"x":11.39,"y":-12.38},"path":"we_bl_4_f_1"}]},{"name":"weapon_hand_l","display":[{"name":"weapon_hand_l","transform":{"x":12.59,"y":1.83,"skX":52.1,"skY":52.1}}]},{"name":"foot_l","display":[{"name":"mecha_1004d_folder/textures/foot_l_0","transform":{"x":1.82,"y":-3.5,"skX":-90.37,"skY":-90.37},"path":"foot_l"}]},{"name":"weapon_hand_r","display":[{"name":"weapon_hand_r","transform":{"x":14.2,"y":2.01,"skX":51,"skY":51},"path":"weapon_hand_l"}]},{"name":"calf_r","display":[{"name":"mecha_1004d_folder/textures/calf_r_0","transform":{"x":5.87,"y":0.08,"skX":-91.22,"skY":-91.22},"path":"calf_r"}]},{"name":"thigh_r","display":[{"name":"mecha_1004d_folder/textures/thigh_r_0","transform":{"x":-0.65,"y":1.03,"skX":-94.6,"skY":-94.62,"scX":0.9991,"scY":0.99},"path":"thigh_r"}]},{"name":"forearm_l","display":[{"name":"mecha_1004d_folder/textures/forearm_l_2","transform":{"x":5.09,"y":0.15,"skX":-63.39,"skY":-63.39},"path":"forearm_l"}]},{"name":"chest","display":[{"name":"mecha_1004d_folder/textures/chest_0","transform":{"x":42.26,"y":-1.48,"skX":90.4,"skY":90.61},"path":"chest"}]},{"name":"pelvis","display":[{"name":"mecha_1004d_folder/textures/pelvis_0","transform":{"x":9.56,"y":-1.5,"skX":83.65,"skY":83.65},"path":"pelvis"}]}]}],"animation":[{"duration":60,"playTimes":0,"fadeInTime":0.2,"name":"Idle1","bone":[{"name":"pelvis","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.31},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.48},{"duration":0}]},{"name":"shouder_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.6,"y":-0.22},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.23,"y":0.28},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"hand_l","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.75},{"duration":0}]},{"name":"weapon_hand_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.92},{"duration":0}]},{"name":"weapon_hand_r","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-3.01},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.17,"y":0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":0.25},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.45,"y":-0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":7.53},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.97},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.75},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-10.55},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.03},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.5},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":3.03},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":58,"playTimes":0,"fadeInTime":0.2,"name":"Walking","frame":[{"duration":27},{"duration":31,"sound":"footstep"},{"duration":0,"sound":"walk"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":10,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":17,"tweenEasing":0,"x":-0.47,"y":-0.01},{"duration":8,"tweenEasing":0,"x":0.01},{"duration":5,"tweenEasing":0},{"duration":16,"tweenEasing":0,"x":-1.06,"y":0.03},{"duration":0,"x":-0.1}],"rotateFrame":[{"duration":10,"tweenEasing":0,"rotate":6.25},{"duration":2,"tweenEasing":0,"rotate":5.25},{"duration":17,"tweenEasing":0,"rotate":5},{"duration":8,"tweenEasing":0,"rotate":5.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":16,"tweenEasing":0,"rotate":5.75},{"duration":0,"rotate":6.05}],"scaleFrame":[{"duration":10,"tweenEasing":0,"x":1.01},{"duration":19,"tweenEasing":0,"x":0.98},{"duration":8,"tweenEasing":0,"x":0.98},{"duration":21}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.06,"y":0.19},{"duration":7,"tweenEasing":0,"x":-0.44,"y":0.27},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.28},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.29},{"duration":7,"tweenEasing":0,"x":1.11,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":5,"tweenEasing":0,"x":-0.28,"y":0.26},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.25},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.23},{"duration":7,"tweenEasing":0,"x":-0.05,"y":0.24},{"duration":9,"tweenEasing":0,"x":0.69,"y":0.13},{"duration":0,"x":0.33,"y":0.17}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-4.04},{"duration":7,"tweenEasing":0,"rotate":-3.46},{"duration":2,"tweenEasing":0,"rotate":-2.94},{"duration":7,"tweenEasing":0,"rotate":-3.06},{"duration":7,"tweenEasing":0,"rotate":-4.75},{"duration":3,"tweenEasing":0,"rotate":-6.6},{"duration":3,"tweenEasing":0,"rotate":-5.2},{"duration":5,"tweenEasing":0,"rotate":-3.88},{"duration":2,"tweenEasing":0,"rotate":-4.26},{"duration":3,"tweenEasing":0,"rotate":-4.62},{"duration":7,"tweenEasing":0,"rotate":-5.53},{"duration":9,"tweenEasing":0,"rotate":-7.66},{"duration":0,"rotate":-5.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":32}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-1.74,"y":8.78},{"duration":7,"tweenEasing":0,"x":-1.64,"y":8.53},{"duration":2,"tweenEasing":0,"x":-1.12,"y":6.91},{"duration":7,"tweenEasing":0,"x":-0.96,"y":6.53},{"duration":7,"tweenEasing":0,"x":-0.54,"y":5.36},{"duration":3,"tweenEasing":0,"x":-0.63,"y":4.56},{"duration":3,"tweenEasing":0,"x":-0.91,"y":5.01},{"duration":5,"tweenEasing":0,"x":-1.15,"y":5.24},{"duration":2,"tweenEasing":0,"x":-1.33,"y":6.55},{"duration":3,"tweenEasing":0,"x":-1.37,"y":6.99},{"duration":7,"tweenEasing":0,"x":-1.4,"y":7.48},{"duration":9,"tweenEasing":0,"x":-1.43,"y":8.33},{"duration":0,"x":-1.62,"y":8.69}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.52},{"duration":7,"tweenEasing":0,"rotate":-17.27},{"duration":2,"tweenEasing":0,"rotate":-10.54},{"duration":7,"tweenEasing":0,"rotate":-8.54},{"duration":7,"tweenEasing":0,"rotate":-2.29},{"duration":3,"tweenEasing":0,"rotate":2.3},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":5,"tweenEasing":0,"rotate":0.78},{"duration":2,"tweenEasing":0,"rotate":-0.48},{"duration":3,"tweenEasing":0,"rotate":-1.48},{"duration":7,"tweenEasing":0,"rotate":-2.99},{"duration":9,"tweenEasing":0,"rotate":-7.27},{"duration":0,"rotate":-17.54}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":2.41,"y":-9.55},{"duration":7,"tweenEasing":0,"x":2.28,"y":-9.45},{"duration":2,"tweenEasing":0,"x":1.84,"y":-8.13},{"duration":7,"tweenEasing":0,"x":1.7,"y":-7.82},{"duration":7,"tweenEasing":0,"x":1.34,"y":-6.83},{"duration":3,"tweenEasing":0,"x":1.5,"y":-6.26},{"duration":3,"tweenEasing":0,"x":1.76,"y":-6.59},{"duration":5,"tweenEasing":0,"x":1.99,"y":-6.82},{"duration":2,"tweenEasing":0,"x":2.13,"y":-7.95},{"duration":3,"tweenEasing":0,"x":2.15,"y":-8.36},{"duration":7,"tweenEasing":0,"x":2.16,"y":-8.77},{"duration":9,"tweenEasing":0,"x":2.12,"y":-9.35},{"duration":0,"x":2.28,"y":-9.54}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":9.06},{"duration":7,"tweenEasing":0,"rotate":8.05},{"duration":2,"tweenEasing":0,"rotate":5.76},{"duration":7,"tweenEasing":0,"rotate":4.5},{"duration":7,"tweenEasing":0,"rotate":-0.28},{"duration":3,"tweenEasing":0,"rotate":-5.21},{"duration":3,"tweenEasing":0,"rotate":-6.5},{"duration":5,"tweenEasing":0,"rotate":-5.98},{"duration":2,"tweenEasing":0,"rotate":-2.48},{"duration":3,"tweenEasing":0,"rotate":-0.98},{"duration":7,"tweenEasing":0,"rotate":1.52},{"duration":9,"tweenEasing":0,"rotate":7.27},{"duration":0,"rotate":9.53}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85},{"duration":7,"tweenEasing":0,"x":0.87},{"duration":2,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.87},{"duration":8,"tweenEasing":0,"x":0.86},{"duration":2,"tweenEasing":0,"x":0.86},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":9,"tweenEasing":0,"x":0.87},{"duration":0,"x":0.86}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.82,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.13},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.1},{"duration":7,"tweenEasing":0,"x":0.78,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.83,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.84,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.84,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.08},{"duration":7,"tweenEasing":0,"x":0.84,"y":-0.1},{"duration":9,"tweenEasing":0,"x":0.83,"y":-0.12},{"duration":0,"x":0.82,"y":-0.13}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.96},{"duration":7,"tweenEasing":0,"rotate":6.97},{"duration":2,"tweenEasing":0,"rotate":7.24},{"duration":7,"tweenEasing":0,"rotate":7.74},{"duration":7,"tweenEasing":0,"rotate":8.73},{"duration":3,"tweenEasing":0,"rotate":9.96},{"duration":3,"tweenEasing":0,"rotate":8.7},{"duration":5,"tweenEasing":0,"rotate":6.69},{"duration":2,"tweenEasing":0,"rotate":3.2},{"duration":3,"tweenEasing":0,"rotate":1.95},{"duration":7,"tweenEasing":0,"rotate":0.44},{"duration":9,"tweenEasing":0,"rotate":0.2},{"duration":0,"rotate":5.68}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95},{"duration":7,"tweenEasing":0,"x":0.96},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":7,"tweenEasing":0,"x":0.92},{"duration":9,"tweenEasing":0,"x":0.9},{"duration":0,"x":0.86,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.24,"y":0.22},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.23},{"duration":2,"tweenEasing":0,"x":1.23,"y":0.21},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.2},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.19},{"duration":3,"tweenEasing":0,"x":1.2,"y":0.2},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.2},{"duration":5,"tweenEasing":0,"x":1.2,"y":0.17},{"duration":2,"tweenEasing":0,"x":1.18,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":7,"tweenEasing":0,"x":1.19,"y":0.18},{"duration":9,"tweenEasing":0,"x":1.25,"y":0.2},{"duration":0,"x":1.23,"y":0.22}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.52},{"duration":7,"tweenEasing":0,"rotate":6.27},{"duration":2,"tweenEasing":0,"rotate":5.52},{"duration":7,"tweenEasing":0,"rotate":5.27},{"duration":7,"tweenEasing":0,"rotate":6.51},{"duration":3,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":10},{"duration":5,"tweenEasing":0,"rotate":10.25},{"duration":2,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":9.01},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":9,"tweenEasing":0,"rotate":8.53},{"duration":0,"rotate":7.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":16,"tweenEasing":0,"x":1.03},{"duration":7,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":9,"x":1.03}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.14,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.12,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.11,"y":-0.05},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.04},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.11},{"duration":5,"tweenEasing":0,"x":0.12,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":0,"x":0.14,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.5},{"duration":7,"tweenEasing":0,"rotate":-5},{"duration":2,"tweenEasing":0,"rotate":-4.5},{"duration":7,"tweenEasing":0,"rotate":-4.25},{"duration":7,"tweenEasing":0,"rotate":-5.25},{"duration":3,"tweenEasing":0,"rotate":-7.5},{"duration":3,"tweenEasing":0,"rotate":-7.25},{"duration":5,"tweenEasing":0,"rotate":-6.25},{"duration":2,"tweenEasing":0,"rotate":-1.75},{"duration":3,"tweenEasing":0,"rotate":-0.25},{"duration":7,"tweenEasing":0,"rotate":0.25},{"duration":9,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.97},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.98,"y":0.99}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.13,"y":0.09},{"duration":7,"tweenEasing":0,"x":0.09,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.12},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.1},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.13},{"duration":5,"tweenEasing":0,"x":0.04,"y":0.14},{"duration":2,"tweenEasing":0,"x":0.06,"y":0.15},{"duration":3,"tweenEasing":0,"x":0.07,"y":0.15},{"duration":7,"tweenEasing":0,"x":0.08,"y":0.14},{"duration":9,"tweenEasing":0,"x":0.1,"y":0.14},{"duration":0,"x":0.12,"y":0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.14},{"duration":7,"tweenEasing":0,"rotate":6.86},{"duration":2,"tweenEasing":0,"rotate":9.82},{"duration":7,"tweenEasing":0,"rotate":9.31},{"duration":7,"tweenEasing":0,"rotate":7.06},{"duration":3,"tweenEasing":0,"rotate":4.3},{"duration":3,"tweenEasing":0,"rotate":4.05},{"duration":5,"tweenEasing":0,"rotate":5.06},{"duration":2,"tweenEasing":0,"rotate":7.32},{"duration":3,"tweenEasing":0,"rotate":8.08},{"duration":7,"tweenEasing":0,"rotate":9.08},{"duration":9,"tweenEasing":0,"rotate":9.35},{"duration":0,"rotate":5.91}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.95},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.96},{"duration":2,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"y":0.97},{"duration":23,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":9,"tweenEasing":0,"y":0.97},{"duration":0,"y":0.96}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02},{"duration":7,"tweenEasing":0,"x":0.02},{"duration":2,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"y":0.01},{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":9,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.02,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.05},{"duration":7,"tweenEasing":0,"rotate":19.94},{"duration":2,"tweenEasing":0,"rotate":17.95},{"duration":7,"tweenEasing":0,"rotate":18.42},{"duration":7,"tweenEasing":0,"rotate":20.58},{"duration":3,"tweenEasing":0,"rotate":23.19},{"duration":3,"tweenEasing":0,"rotate":23.94},{"duration":5,"tweenEasing":0,"rotate":23.5},{"duration":2,"tweenEasing":0,"rotate":22.36},{"duration":3,"tweenEasing":0,"rotate":21.8},{"duration":7,"tweenEasing":0,"rotate":21.24},{"duration":9,"tweenEasing":0,"rotate":20.8},{"duration":0,"rotate":21.25}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.01},{"duration":7,"tweenEasing":0,"x":-0.01,"y":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":10,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"y":0.01},{"duration":9,"tweenEasing":0,"y":0.01},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-3.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":7,"tweenEasing":0,"rotate":14.4},{"duration":3,"tweenEasing":0,"rotate":18.27},{"duration":3,"tweenEasing":0,"rotate":19.78},{"duration":5,"tweenEasing":0,"rotate":21.53},{"duration":2,"tweenEasing":0,"rotate":24.53},{"duration":3,"tweenEasing":0,"rotate":24.28},{"duration":7,"tweenEasing":0,"rotate":21.78},{"duration":9,"tweenEasing":0,"rotate":12.52},{"duration":0,"rotate":-0.5}]},{"name":"root","translateFrame":[{"duration":10,"tweenEasing":0,"x":-1.63,"y":0.96},{"duration":19,"tweenEasing":0,"x":-1.48,"y":0.02},{"duration":8,"tweenEasing":0,"x":-1.63,"y":1.03},{"duration":21,"tweenEasing":0,"x":-1.79,"y":0.99},{"duration":0,"x":-1.65,"y":0.95}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.64,"y":-2.98},{"duration":2,"tweenEasing":0,"x":1.2,"y":-3.05},{"duration":5,"tweenEasing":0,"x":1.43,"y":-3.11},{"duration":2,"tweenEasing":0,"x":1.14,"y":-3.22},{"duration":7,"tweenEasing":0,"x":0.73,"y":-3.3},{"duration":7,"tweenEasing":0,"x":-0.05,"y":-3.55},{"duration":3,"tweenEasing":0,"x":0.51,"y":-3.77},{"duration":3,"tweenEasing":0,"x":1.26,"y":-3.91},{"duration":5,"tweenEasing":0,"x":1.48,"y":-3.99},{"duration":2,"tweenEasing":0,"x":1,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.45,"y":-3.93},{"duration":7,"tweenEasing":0,"x":-0.23,"y":-3.84},{"duration":9,"tweenEasing":0,"x":-0.66,"y":-3.51},{"duration":0,"x":0.16,"y":-3.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-21.02},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":5,"tweenEasing":0,"rotate":-26.04},{"duration":2,"tweenEasing":0,"rotate":-53.15},{"duration":7,"tweenEasing":0,"rotate":-58.92},{"duration":7,"tweenEasing":0,"rotate":-60.43},{"duration":3,"tweenEasing":0,"rotate":-72.97},{"duration":3,"tweenEasing":0,"rotate":-65.19},{"duration":5,"tweenEasing":0,"rotate":-68.71},{"duration":2,"tweenEasing":0,"rotate":-61.43},{"duration":3,"tweenEasing":0,"rotate":-54.4},{"duration":7,"tweenEasing":0,"rotate":-44.36},{"duration":9,"tweenEasing":0,"rotate":-31.31},{"duration":0,"rotate":-21.52}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":0,"x":1.01}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.63,"y":2.95},{"duration":7,"tweenEasing":0,"x":-0.37,"y":3},{"duration":2,"tweenEasing":0,"x":-1.12,"y":3.18},{"duration":7,"tweenEasing":0,"x":-1.64,"y":3.24},{"duration":7,"tweenEasing":0,"x":-2.57,"y":3.46},{"duration":3,"tweenEasing":0,"x":-2,"y":3.72},{"duration":3,"tweenEasing":0,"x":-1.22,"y":3.86},{"duration":2,"tweenEasing":0,"x":-0.89,"y":3.94},{"duration":3,"tweenEasing":0,"x":-0.79,"y":3.96},{"duration":2,"tweenEasing":0,"x":-0.99,"y":3.91},{"duration":3,"tweenEasing":0,"x":-1.38,"y":3.91},{"duration":7,"tweenEasing":0,"x":-1.88,"y":3.85},{"duration":9,"tweenEasing":0,"x":-2.1,"y":3.53},{"duration":0,"x":-1.12,"y":3.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.58},{"duration":7,"tweenEasing":0,"rotate":-21.34},{"duration":2,"tweenEasing":0,"rotate":-5.52},{"duration":7,"tweenEasing":0,"rotate":1.26},{"duration":7,"tweenEasing":0,"rotate":20.33},{"duration":3,"tweenEasing":0,"rotate":26.84},{"duration":3,"tweenEasing":0,"rotate":21.33},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":3,"tweenEasing":0,"rotate":16.31},{"duration":2,"tweenEasing":0,"rotate":1.76},{"duration":3,"tweenEasing":0,"rotate":-8.29},{"duration":7,"tweenEasing":0,"rotate":-15.32},{"duration":9,"tweenEasing":0,"rotate":-18.83},{"duration":0,"rotate":-19.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.98,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.04,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.03,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":9,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0,"x":0.07,"y":-0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":2,"tweenEasing":0,"rotate":58.43},{"duration":5,"tweenEasing":0,"rotate":64.7},{"duration":2,"tweenEasing":0,"rotate":80.26},{"duration":7,"tweenEasing":0,"rotate":79.51},{"duration":7,"tweenEasing":0,"rotate":56.68},{"duration":3,"tweenEasing":0,"rotate":52.2},{"duration":3,"tweenEasing":0,"rotate":42.17},{"duration":5,"tweenEasing":0,"rotate":48.44},{"duration":2,"tweenEasing":0,"rotate":48.66},{"duration":3,"tweenEasing":0,"rotate":43.64},{"duration":7,"tweenEasing":0,"rotate":35.85},{"duration":9,"tweenEasing":0,"rotate":32.07},{"duration":0,"rotate":41.6}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.98}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":9,"tweenEasing":0,"x":-0.02,"y":-0.01},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.19},{"duration":7,"tweenEasing":0,"rotate":27.35},{"duration":2,"tweenEasing":0,"rotate":23.54},{"duration":7,"tweenEasing":0,"rotate":19.51},{"duration":7,"tweenEasing":0,"rotate":10.96},{"duration":3,"tweenEasing":0,"rotate":20.49},{"duration":3,"tweenEasing":0,"rotate":36.56},{"duration":2,"tweenEasing":0,"rotate":47.6},{"duration":3,"tweenEasing":0,"rotate":54.38},{"duration":2,"tweenEasing":0,"rotate":63.92},{"duration":3,"tweenEasing":0,"rotate":66.19},{"duration":7,"tweenEasing":0,"rotate":62.92},{"duration":9,"tweenEasing":0,"rotate":43.86},{"duration":0,"rotate":24.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.24,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.15,"y":0.02},{"duration":3,"tweenEasing":0,"x":-0.16,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.17},{"duration":5,"tweenEasing":0,"x":-0.17},{"duration":2,"tweenEasing":0,"x":-0.16,"y":0.06},{"duration":3,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":7,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":9,"tweenEasing":0,"x":-0.18,"y":-0.02},{"duration":0,"x":-0.21,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.1},{"duration":2,"tweenEasing":0,"rotate":-16.61},{"duration":5,"tweenEasing":0,"rotate":-12.35},{"duration":2,"tweenEasing":0,"rotate":10.49},{"duration":7,"tweenEasing":0,"rotate":13.25},{"duration":7,"tweenEasing":0,"rotate":3.01},{"duration":3,"tweenEasing":0,"rotate":5.76},{"duration":3,"tweenEasing":0,"rotate":23.03},{"duration":5,"tweenEasing":0,"rotate":20.28},{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":10.78},{"duration":7,"tweenEasing":0,"rotate":8.52},{"duration":9,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":-16.03}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":20,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"x":0.98}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.53,"y":-0.14},{"duration":7,"tweenEasing":0,"x":1.52,"y":-0.1},{"duration":2,"tweenEasing":0,"x":1.51,"y":-0.07},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.09},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.12},{"duration":3,"tweenEasing":0,"x":1.49,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.5,"y":-0.16},{"duration":3,"tweenEasing":0,"x":1.52,"y":-0.15},{"duration":7,"tweenEasing":0,"x":1.55,"y":-0.16},{"duration":9,"tweenEasing":0,"x":1.56,"y":-0.1},{"duration":0,"x":1.54,"y":-0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-6.94},{"duration":7,"tweenEasing":0,"rotate":-7.25},{"duration":2,"tweenEasing":0,"rotate":-19},{"duration":7,"tweenEasing":0,"rotate":-21.75},{"duration":7,"tweenEasing":0,"rotate":-31.28},{"duration":3,"tweenEasing":0,"rotate":-44.59},{"duration":3,"tweenEasing":0,"rotate":-49.88},{"duration":2,"tweenEasing":0,"rotate":-47.9},{"duration":3,"tweenEasing":0,"rotate":-44.39},{"duration":2,"tweenEasing":0,"rotate":-31.6},{"duration":3,"tweenEasing":0,"rotate":-20.56},{"duration":7,"tweenEasing":0,"rotate":-18.8},{"duration":9,"tweenEasing":0,"rotate":-26.94},{"duration":0,"rotate":-13.54}],"scaleFrame":[{"duration":19,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":10,"tweenEasing":0,"y":0.99},{"duration":7,"tweenEasing":0,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":58,"value":-1}]}]},{"duration":66,"fadeInTime":0.1,"name":"Dying","bone":[{"name":"pelvis","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.36,"y":-0.17},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":3,"tweenEasing":0,"x":-0.06,"y":-0.16},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.64,"y":-0.33},{"duration":9,"tweenEasing":0,"x":0.17,"y":-0.32},{"duration":0,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":17.28},{"duration":4,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-5.5},{"duration":10,"tweenEasing":0,"rotate":-6},{"duration":10,"tweenEasing":0,"rotate":1.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-7},{"duration":3,"tweenEasing":0,"rotate":-10.51},{"duration":3,"tweenEasing":0,"rotate":6.51},{"duration":2,"tweenEasing":0,"rotate":20.04},{"duration":3,"tweenEasing":0,"rotate":41.37},{"duration":4,"tweenEasing":0,"rotate":82.99},{"duration":3,"tweenEasing":0,"rotate":84},{"duration":9,"tweenEasing":0,"rotate":87.25},{"duration":0,"rotate":85}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":9,"x":1.03}]},{"name":"chest","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.71},{"duration":3,"tweenEasing":0,"x":-0.03,"y":0.28},{"tweenEasing":0,"x":0.05,"y":0.48},{"duration":2,"tweenEasing":0,"x":-0.2,"y":0.86},{"duration":10,"tweenEasing":0,"x":-0.27,"y":0.94},{"duration":10,"tweenEasing":0,"x":-0.12,"y":0.54},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.35},{"duration":2,"tweenEasing":0,"x":-0.12,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.19,"y":0.43},{"duration":4,"tweenEasing":0,"x":-0.13,"y":0.39},{"duration":3,"tweenEasing":0,"x":-0.1,"y":0.23},{"duration":4,"tweenEasing":0,"x":-0.1,"y":0.26},{"duration":5,"tweenEasing":0,"x":-0.12,"y":0.53},{"duration":0,"x":-0.07,"y":0.25}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":44.35},{"duration":3,"tweenEasing":0,"rotate":24.74},{"tweenEasing":0,"rotate":10.26},{"duration":2,"tweenEasing":0,"rotate":8.29},{"duration":10,"tweenEasing":0,"rotate":4.32},{"duration":10,"tweenEasing":0,"rotate":1.32},{"duration":5,"tweenEasing":0,"rotate":1.88},{"duration":2,"tweenEasing":0,"rotate":-2.13},{"duration":3,"tweenEasing":0,"rotate":-0.44},{"duration":3,"tweenEasing":0,"rotate":15.76},{"duration":2,"tweenEasing":0,"rotate":37.03},{"duration":3,"tweenEasing":0,"rotate":17.21},{"duration":4,"tweenEasing":0,"rotate":-25.71},{"duration":3,"tweenEasing":0,"rotate":15.88},{"duration":4,"tweenEasing":0,"rotate":-3.38},{"duration":5,"tweenEasing":0,"rotate":12.65},{"duration":0,"rotate":15.67}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.93},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0},{"duration":5,"x":1.01}]},{"name":"shouder_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.6,"y":7.58},{"duration":3,"tweenEasing":0,"x":1.4,"y":8.29},{"tweenEasing":0,"x":3.2,"y":6.9},{"duration":2,"tweenEasing":0,"x":1.67,"y":5.49},{"duration":10,"tweenEasing":0,"x":-0.81,"y":4.98},{"duration":10,"tweenEasing":0,"x":-1.99,"y":5.37},{"duration":5,"tweenEasing":0,"x":0.57,"y":5.79},{"duration":2,"tweenEasing":0,"x":0.83,"y":4.7},{"duration":3,"tweenEasing":0,"x":0.91,"y":3.96},{"duration":3,"tweenEasing":0,"x":-0.44,"y":2.83},{"duration":2,"tweenEasing":0,"x":-3.08,"y":4.1},{"duration":3,"tweenEasing":0,"x":-1.24,"y":6.75},{"duration":4,"tweenEasing":0,"x":-3.48,"y":14.35},{"duration":3,"tweenEasing":0,"x":-0.97,"y":13.13},{"duration":4,"tweenEasing":0,"x":-1.45,"y":13.55},{"duration":5,"tweenEasing":0,"x":-0.61,"y":12.94},{"duration":0,"x":-0.52,"y":12.96}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-81.03},{"duration":3,"tweenEasing":0,"rotate":69.12},{"tweenEasing":0,"rotate":70.36},{"duration":2,"tweenEasing":0,"rotate":7.92},{"duration":10,"tweenEasing":0,"rotate":-7.21},{"duration":10,"tweenEasing":0,"rotate":6.38},{"duration":5,"tweenEasing":0,"rotate":-12.29},{"duration":2,"tweenEasing":0,"rotate":32.33},{"duration":3,"tweenEasing":0,"rotate":78.92},{"duration":3,"tweenEasing":0,"rotate":23.95},{"duration":2,"tweenEasing":0,"rotate":-17.09},{"duration":3,"tweenEasing":0,"rotate":-30.39},{"duration":4,"tweenEasing":0,"rotate":-8.51},{"duration":3,"tweenEasing":0,"rotate":-68.19},{"duration":4,"tweenEasing":0,"rotate":-62.93},{"duration":5,"tweenEasing":0,"rotate":-55.67},{"duration":0,"rotate":-55.92}]},{"name":"shouder_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":1.86,"y":-11.59},{"duration":2,"tweenEasing":0,"x":-0.92,"y":-12.92},{"duration":3,"tweenEasing":0,"x":-1.4,"y":-12.54},{"tweenEasing":0,"x":-0.47,"y":-9.24},{"duration":2,"tweenEasing":0,"x":0.23,"y":-7.51},{"duration":10,"tweenEasing":0,"x":2.02,"y":-4.95},{"duration":10,"tweenEasing":0,"x":4.02,"y":-5.5},{"duration":5,"tweenEasing":0,"x":1.57,"y":-6.9},{"duration":2,"tweenEasing":0,"x":1.38,"y":-5.55},{"duration":3,"tweenEasing":0,"x":1.22,"y":-4.68},{"duration":3,"tweenEasing":0,"x":2,"y":-3.25},{"duration":2,"tweenEasing":0,"x":3.13,"y":-4.25},{"duration":3,"tweenEasing":0,"x":1.42,"y":-8.87},{"duration":4,"tweenEasing":0,"x":2.96,"y":-16.32},{"duration":3,"tweenEasing":0,"x":-0.25,"y":-14.02},{"duration":4,"tweenEasing":0,"x":0.16,"y":-14.36},{"duration":5,"tweenEasing":0,"x":-0.56,"y":-13.82},{"duration":0,"x":-0.59,"y":-13.92}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-106.06},{"duration":2,"tweenEasing":0,"rotate":-8.75},{"duration":3,"tweenEasing":0,"rotate":3.7},{"tweenEasing":0,"rotate":16.47},{"duration":2,"tweenEasing":0,"rotate":17.43},{"duration":10,"tweenEasing":0,"rotate":16.36},{"duration":10,"tweenEasing":0,"rotate":1.1},{"duration":5,"tweenEasing":0,"rotate":25.08},{"duration":2,"tweenEasing":0,"rotate":27.28},{"duration":3,"tweenEasing":0,"rotate":21},{"duration":3,"tweenEasing":0,"rotate":-9.44},{"duration":2,"tweenEasing":0,"rotate":-30.15},{"duration":3,"tweenEasing":0,"rotate":1.96},{"duration":4,"tweenEasing":0,"rotate":-20.8},{"duration":3,"tweenEasing":0,"rotate":-28.08},{"duration":4,"tweenEasing":0,"rotate":-20.04},{"duration":5,"tweenEasing":0,"rotate":-19.34},{"duration":0,"rotate":-19.1}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.08,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.09,"y":0.99},{"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.01},{"duration":5,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.86,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.81,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.78,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.82},{"duration":4,"tweenEasing":0,"x":0.72,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.19},{"duration":4,"tweenEasing":0,"x":1.18},{"duration":5,"tweenEasing":0,"x":1.2},{"duration":0,"x":1.15}]},{"name":"forearm_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.08,"y":0.1},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.19},{"duration":3,"tweenEasing":0,"x":-0.3,"y":-0.21},{"tweenEasing":0,"x":-0.21,"y":-0.26},{"duration":2,"tweenEasing":0,"x":-0.15,"y":-0.27},{"duration":10,"tweenEasing":0,"x":-0.08,"y":-0.24},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.15},{"duration":5,"tweenEasing":0,"x":-0.16,"y":-0.27},{"duration":2,"tweenEasing":0,"x":-0.02,"y":-0.22},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.12},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.13},{"duration":4,"tweenEasing":0,"x":0.03,"y":-0.06},{"duration":3,"tweenEasing":0,"x":-0.24,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.27,"y":-0.04},{"duration":0,"x":-0.24,"y":-0.05}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-1.88},{"duration":2,"tweenEasing":0,"rotate":-14.52},{"duration":3,"tweenEasing":0,"rotate":-11.52},{"tweenEasing":0,"rotate":-12.78},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":10,"tweenEasing":0,"rotate":-7.79},{"duration":10,"tweenEasing":0,"rotate":11.55},{"duration":5,"tweenEasing":0,"rotate":1.93},{"duration":2,"tweenEasing":0,"rotate":4.68},{"duration":3,"tweenEasing":0,"rotate":5.43},{"duration":3,"tweenEasing":0,"rotate":4.15},{"duration":2,"tweenEasing":0,"rotate":-0.93},{"duration":3,"tweenEasing":0,"rotate":5.3},{"duration":4,"tweenEasing":0,"rotate":40.88},{"duration":3,"tweenEasing":0,"rotate":36.08},{"duration":4,"tweenEasing":0,"rotate":29.81},{"duration":5,"tweenEasing":0,"rotate":39.09},{"duration":0,"rotate":40.61}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.87,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.86,"y":1.01},{"tweenEasing":0,"x":0.83},{"duration":2,"tweenEasing":0,"x":0.83},{"duration":10,"tweenEasing":0,"x":0.85},{"duration":10,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.76,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.75,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.7,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.66},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":3,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":5,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":0,"x":0.76,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.11,"y":0.24},{"duration":3,"tweenEasing":0,"x":-1.38,"y":0.34},{"tweenEasing":0,"x":-2.98,"y":0.44},{"duration":2,"tweenEasing":0,"x":-2.4,"y":0.55},{"duration":10,"tweenEasing":0,"x":0.17,"y":0.4},{"duration":10,"tweenEasing":0,"x":-0.15,"y":0.44},{"duration":5,"tweenEasing":0,"x":0.08,"y":0.4},{"duration":2,"tweenEasing":0,"x":0.6,"y":0.37},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.3},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.28},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.24},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.23},{"duration":4,"tweenEasing":0,"x":-3.42,"y":0.06},{"duration":3,"tweenEasing":0,"x":-2.78,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-2.47,"y":-0.01},{"duration":5,"tweenEasing":0,"x":-3.04},{"duration":0,"x":-2.96,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-10.55},{"duration":3,"tweenEasing":0,"rotate":-146.71},{"tweenEasing":0,"rotate":-125.63},{"duration":2,"tweenEasing":0,"rotate":-48.42},{"duration":10,"tweenEasing":0,"rotate":-26.84},{"duration":10,"tweenEasing":0,"rotate":-54.95},{"duration":5,"tweenEasing":0,"rotate":13.27},{"duration":2,"tweenEasing":0,"rotate":-4.33},{"duration":3,"tweenEasing":0,"rotate":-41.41},{"duration":3,"tweenEasing":0,"rotate":4.18},{"duration":2,"tweenEasing":0,"rotate":-9.62},{"duration":3,"tweenEasing":0,"rotate":-4.1},{"duration":4,"tweenEasing":0,"rotate":-31.67},{"duration":3,"tweenEasing":0,"rotate":-4.85},{"duration":4,"tweenEasing":0,"rotate":12.72},{"duration":5,"tweenEasing":0,"rotate":-9.87},{"duration":0,"rotate":-12.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.89,"y":0.99},{"tweenEasing":0,"x":0.82,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.77,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.9,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.92},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.67},{"duration":3,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.74},{"duration":3,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.74,"y":0.99},{"duration":5,"x":0.72,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.2},{"tweenEasing":0,"x":-0.19,"y":-0.2},{"duration":2,"tweenEasing":0,"x":-0.25,"y":-0.08},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.02},{"duration":10,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.15},{"duration":3,"tweenEasing":0,"x":-0.05,"y":0.29},{"duration":3,"tweenEasing":0,"x":0.13,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.03},{"duration":3,"tweenEasing":0,"x":0.13},{"duration":4,"tweenEasing":0,"x":0.25,"y":-0.14},{"duration":3,"tweenEasing":0,"x":0.24,"y":-0.17},{"duration":4,"tweenEasing":0,"x":0.24,"y":-0.19},{"duration":5,"tweenEasing":0,"x":0.24,"y":-0.16},{"duration":0,"x":0.23,"y":-0.17}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":4.03},{"duration":3,"tweenEasing":0,"rotate":-12.06},{"tweenEasing":0,"rotate":152.64},{"duration":2,"tweenEasing":0,"rotate":130.33},{"duration":10,"tweenEasing":0,"rotate":134.36},{"duration":10,"tweenEasing":0,"rotate":144.41},{"duration":5,"tweenEasing":0,"rotate":90.23},{"duration":2,"tweenEasing":0,"rotate":79.72},{"duration":3,"tweenEasing":0,"rotate":71.89},{"duration":3,"tweenEasing":0,"rotate":59.63},{"duration":2,"tweenEasing":0,"rotate":110.84},{"duration":3,"tweenEasing":0,"rotate":121.36},{"duration":4,"tweenEasing":0,"rotate":146.89},{"duration":3,"tweenEasing":0,"rotate":155.42},{"duration":4,"tweenEasing":0,"rotate":148.64},{"duration":5,"tweenEasing":0,"rotate":148.89},{"duration":0,"rotate":149.89}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.65,"y":0.99},{"tweenEasing":0,"x":0.69},{"duration":2,"tweenEasing":0},{"duration":27,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":12,"x":0.97}]},{"name":"hand_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.12,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.06},{"tweenEasing":0,"x":0.13},{"duration":2,"tweenEasing":0,"x":0.16,"y":0.02},{"duration":10,"tweenEasing":0,"x":0.16,"y":0.05},{"duration":10,"tweenEasing":0,"x":0.09,"y":0.05},{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.21,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.11},{"duration":3,"tweenEasing":0,"x":0.06,"y":0.2},{"duration":2,"tweenEasing":0,"x":-1.02,"y":0.24},{"duration":3,"tweenEasing":0,"x":-3.04,"y":0.06},{"duration":4,"tweenEasing":0,"x":-0.37,"y":0.04},{"duration":3,"tweenEasing":0,"x":-0.44,"y":0.03},{"duration":4,"tweenEasing":0,"x":-0.44,"y":0.05},{"duration":5,"tweenEasing":0,"x":-0.19,"y":0.01},{"duration":0,"x":-0.01,"y":0.04}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":3.25},{"duration":2,"tweenEasing":0,"rotate":15.58},{"duration":3,"tweenEasing":0,"rotate":32.47},{"tweenEasing":0,"rotate":59.31},{"duration":2,"tweenEasing":0,"rotate":63.85},{"duration":10,"tweenEasing":0,"rotate":64.64},{"duration":10,"tweenEasing":0,"rotate":35.73},{"duration":5,"tweenEasing":0,"rotate":26.18},{"duration":2,"tweenEasing":0,"rotate":7.62},{"duration":3,"tweenEasing":0,"rotate":4.93},{"duration":3,"tweenEasing":0,"rotate":12.32},{"duration":2,"tweenEasing":0,"rotate":37.9},{"duration":3,"tweenEasing":0,"rotate":48.02},{"duration":4,"tweenEasing":0,"rotate":51.68},{"duration":3,"tweenEasing":0,"rotate":13.57},{"duration":4,"tweenEasing":0,"rotate":27.35},{"duration":5,"tweenEasing":0,"rotate":3.06},{"duration":0,"rotate":-0.06}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.92},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.91},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":5,"tweenEasing":0,"x":0.96,"y":0.86},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.83},{"duration":3,"tweenEasing":0,"x":0.96,"y":0.82},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.75},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.75},{"duration":4,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":5,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0,"x":1.01,"y":1.02}]},{"name":"weapon_hand_l","translateFrame":[{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":10,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":23,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":16,"x":0.01}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":4.42},{"duration":2,"tweenEasing":0,"rotate":24.72},{"duration":3,"tweenEasing":0,"rotate":16.51},{"tweenEasing":0,"rotate":9.6},{"duration":2,"tweenEasing":0,"rotate":9.71},{"duration":10,"tweenEasing":0,"rotate":11.52},{"duration":10,"tweenEasing":0,"rotate":25.31},{"duration":5,"tweenEasing":0,"rotate":20.24},{"duration":2,"tweenEasing":0,"rotate":29.56},{"duration":3,"tweenEasing":0,"rotate":31.39},{"duration":3,"tweenEasing":0,"rotate":27.05},{"duration":2,"tweenEasing":0,"rotate":-4.88},{"duration":3,"tweenEasing":0,"rotate":-52.41},{"duration":4,"tweenEasing":0,"rotate":-105.87},{"duration":3,"tweenEasing":0,"rotate":-81.38},{"duration":4,"tweenEasing":0,"rotate":-80.53},{"duration":5,"tweenEasing":0,"rotate":-79.97},{"duration":0,"rotate":-80.88}]},{"name":"weapon_hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":16,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.02},{"duration":3,"tweenEasing":0,"rotate":93.01},{"tweenEasing":0,"rotate":105.4},{"duration":2,"tweenEasing":0,"rotate":104.02},{"duration":27,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":121.04},{"duration":2,"tweenEasing":0,"rotate":155.41},{"duration":3,"tweenEasing":0,"rotate":159.93},{"duration":4,"tweenEasing":0,"rotate":-179.75},{"duration":12,"rotate":-159.98}]},{"name":"root","translateFrame":[{"duration":6,"tweenEasing":0,"x":-9.14,"y":0.61},{"duration":4,"tweenEasing":0,"x":-16.58,"y":-0.55},{"duration":2,"tweenEasing":0,"x":-16.78,"y":-1.59},{"duration":10,"tweenEasing":0,"x":-15.62,"y":-0.25},{"duration":10,"tweenEasing":0,"x":-16.44,"y":0.69},{"duration":5,"tweenEasing":0,"x":-13.75,"y":-0.25},{"duration":2,"tweenEasing":0,"x":-5.66,"y":0.3},{"duration":6,"tweenEasing":0,"x":-2.27,"y":6.86},{"duration":5,"tweenEasing":0,"x":0.44,"y":7.93},{"duration":16,"tweenEasing":0,"x":3.54,"y":12.17},{"duration":0,"x":4.14,"y":13.02}]},{"name":"thigh_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.35,"y":-2.89},{"duration":3,"tweenEasing":0,"x":0.66,"y":-3.94},{"tweenEasing":0,"x":0.86,"y":-2.65},{"duration":2,"tweenEasing":0,"x":1.14,"y":-2.48},{"duration":10,"tweenEasing":0,"x":1.27,"y":-2},{"duration":10,"tweenEasing":0,"x":1.19,"y":-2.51},{"duration":5,"tweenEasing":0,"x":1.51,"y":-3.51},{"duration":2,"tweenEasing":0,"x":1.57,"y":-3.25},{"duration":3,"tweenEasing":0,"x":1.55,"y":-2.85},{"duration":3,"tweenEasing":0,"x":0.72,"y":-1.7},{"duration":2,"tweenEasing":0,"x":-0.09,"y":-2.67},{"duration":3,"tweenEasing":0,"x":0.79,"y":-4.22},{"duration":4,"tweenEasing":0,"x":2.11,"y":-4.38},{"duration":3,"tweenEasing":0,"x":0.93,"y":-4.52},{"duration":4,"tweenEasing":0,"x":1.04,"y":-4.38},{"duration":5,"tweenEasing":0,"x":1.3,"y":-4.05},{"duration":0,"x":1.36,"y":-3.69}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-44.61},{"duration":3,"tweenEasing":0,"rotate":-48.38},{"tweenEasing":0,"rotate":-43.86},{"duration":2,"tweenEasing":0,"rotate":-43.35},{"duration":10,"tweenEasing":0,"rotate":-54.15},{"duration":10,"tweenEasing":0,"rotate":-64.69},{"duration":5,"tweenEasing":0,"rotate":-42.6},{"duration":2,"tweenEasing":0,"rotate":-29.05},{"duration":3,"tweenEasing":0,"rotate":-2.5},{"duration":3,"tweenEasing":0,"rotate":2},{"duration":2,"tweenEasing":0,"rotate":14.27},{"duration":3,"tweenEasing":0,"rotate":37.86},{"duration":4,"tweenEasing":0,"rotate":71.48},{"duration":3,"tweenEasing":0,"rotate":61.96},{"duration":4,"tweenEasing":0,"rotate":63.96},{"duration":5,"tweenEasing":0,"rotate":67.22},{"duration":0,"rotate":63.46}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":16,"x":1.02,"y":0.99}]},{"name":"thigh_l","translateFrame":[{"tweenEasing":0,"x":-0.35,"y":2.85},{"duration":5,"tweenEasing":0,"x":-0.32,"y":4.22},{"duration":3,"tweenEasing":0,"x":-0.64,"y":3.87},{"tweenEasing":0,"x":-1.17,"y":3.12},{"duration":2,"tweenEasing":0,"x":-1.12,"y":2.45},{"duration":10,"tweenEasing":0,"x":-1.24,"y":1.98},{"duration":10,"tweenEasing":0,"x":-1.16,"y":2.48},{"duration":5,"tweenEasing":0,"x":-1.47,"y":3.46},{"duration":2,"tweenEasing":0,"x":-1.54,"y":3.21},{"duration":3,"tweenEasing":0,"x":-1.52,"y":2.82},{"duration":3,"tweenEasing":0,"x":-0.02,"y":1.35},{"duration":2,"tweenEasing":0,"x":0.09,"y":2.61},{"duration":3,"tweenEasing":0,"x":-0.91,"y":3.82},{"duration":4,"tweenEasing":0,"x":-2.08,"y":4.29},{"duration":3,"tweenEasing":0,"x":-2.18,"y":3.8},{"duration":4,"tweenEasing":0,"x":-0.69,"y":3.67},{"duration":5,"tweenEasing":0,"x":-0.67,"y":3.66},{"duration":0,"x":-1.32,"y":3.62}],"rotateFrame":[{"tweenEasing":0,"rotate":-23.85},{"duration":5,"tweenEasing":0,"rotate":39},{"duration":3,"tweenEasing":0,"rotate":-6.78},{"tweenEasing":0,"rotate":12.3},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":10,"tweenEasing":0,"rotate":16.07},{"duration":10,"tweenEasing":0,"rotate":-1.5},{"duration":5,"tweenEasing":0,"rotate":32.36},{"duration":2,"tweenEasing":0,"rotate":36.86},{"duration":3,"tweenEasing":0,"rotate":49.37},{"duration":3,"tweenEasing":0,"rotate":66.15},{"duration":2,"tweenEasing":0,"rotate":87.74},{"duration":3,"tweenEasing":0,"rotate":100.55},{"duration":4,"tweenEasing":0,"rotate":114.09},{"duration":3,"tweenEasing":0,"rotate":118.87},{"duration":4,"tweenEasing":0,"rotate":120.64},{"duration":5,"tweenEasing":0,"rotate":117.35},{"duration":0,"rotate":116.86}],"scaleFrame":[{"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.77,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":10,"tweenEasing":0,"x":0.9},{"duration":5,"tweenEasing":0,"x":0.86,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.81,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.92,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.73,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":0,"x":0.79,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":10,"tweenEasing":0,"x":-0.06,"y":-0.02},{"duration":10,"tweenEasing":0,"x":-0.04,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":-0.06},{"duration":0,"x":0.02,"y":-0.03}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":31.33},{"duration":3,"tweenEasing":0,"rotate":45.37},{"tweenEasing":0,"rotate":32.33},{"duration":2,"tweenEasing":0,"rotate":30.83},{"duration":10,"tweenEasing":0,"rotate":51.13},{"duration":10,"tweenEasing":0,"rotate":64.19},{"duration":5,"tweenEasing":0,"rotate":57.91},{"duration":2,"tweenEasing":0,"rotate":66.96},{"duration":3,"tweenEasing":0,"rotate":78.23},{"duration":3,"tweenEasing":0,"rotate":63.48},{"duration":2,"tweenEasing":0,"rotate":50.96},{"duration":3,"tweenEasing":0,"rotate":43.38},{"duration":4,"tweenEasing":0,"rotate":39.35},{"duration":3,"tweenEasing":0,"rotate":31.56},{"duration":4,"tweenEasing":0,"rotate":15.28},{"duration":5,"tweenEasing":0,"rotate":10.01},{"duration":0,"rotate":16.53}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":10,"tweenEasing":0,"x":1.02},{"duration":10,"tweenEasing":0,"x":1.03},{"duration":5,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.05},{"duration":4,"tweenEasing":0,"x":1.05},{"duration":5,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.05}]},{"name":"calf_l","translateFrame":[{"tweenEasing":0,"x":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.12},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.03},{"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":10,"tweenEasing":0,"x":0.07,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.03,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.12},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.06},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":3,"tweenEasing":0,"x":-0.05,"y":-0.07},{"duration":4,"tweenEasing":0,"x":-0.05,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.08},{"duration":4,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":5,"tweenEasing":0,"x":-0.06,"y":-0.05},{"duration":0,"x":-0.05,"y":-0.06}],"rotateFrame":[{"tweenEasing":0,"rotate":41.36},{"duration":5,"tweenEasing":0,"rotate":16.91},{"duration":3,"tweenEasing":0,"rotate":40.79},{"tweenEasing":0,"rotate":14.94},{"duration":2,"tweenEasing":0,"rotate":6.91},{"duration":10,"tweenEasing":0,"rotate":24.2},{"duration":10,"tweenEasing":0,"rotate":45.3},{"duration":5,"tweenEasing":0,"rotate":8.15},{"duration":2,"tweenEasing":0,"rotate":22.24},{"duration":3,"tweenEasing":0,"rotate":48.05},{"duration":3,"tweenEasing":0,"rotate":31.31},{"duration":2,"tweenEasing":0,"rotate":16.24},{"duration":3,"tweenEasing":0,"rotate":5.93},{"duration":4,"tweenEasing":0,"rotate":-6.36},{"duration":3,"tweenEasing":0,"rotate":16.85},{"duration":4,"tweenEasing":0,"rotate":10.27},{"duration":5,"tweenEasing":0,"rotate":-5.17},{"duration":0,"rotate":-6.69}],"scaleFrame":[{"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":5,"x":1.03}]},{"name":"foot_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.18,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.21,"y":-0.01},{"tweenEasing":0,"x":-0.21,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":10,"tweenEasing":0,"x":-0.21,"y":-0.06},{"duration":10,"tweenEasing":0,"x":-0.2,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.22},{"duration":2,"tweenEasing":0,"x":-0.21},{"duration":3,"tweenEasing":0,"x":-0.21,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.25},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.25,"y":0.02},{"duration":4,"tweenEasing":0,"x":-0.18,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.19,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":5,"tweenEasing":0,"x":-0.22,"y":0.03},{"duration":0,"x":-0.22,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":13.28},{"duration":3,"tweenEasing":0,"rotate":3.76},{"tweenEasing":0,"rotate":12.78},{"duration":2,"tweenEasing":0,"rotate":14.03},{"duration":10,"tweenEasing":0,"rotate":3.51},{"duration":10,"tweenEasing":0,"rotate":0.75},{"duration":5,"tweenEasing":0,"rotate":-15.05},{"duration":2,"tweenEasing":0,"rotate":48.6},{"duration":3,"tweenEasing":0,"rotate":27.29},{"duration":3,"tweenEasing":0,"rotate":49.32},{"duration":2,"tweenEasing":0,"rotate":65.14},{"duration":3,"tweenEasing":0,"rotate":51.39},{"duration":4,"tweenEasing":0,"rotate":12.5},{"duration":3,"tweenEasing":0,"rotate":53.41},{"duration":4,"tweenEasing":0,"rotate":38.58},{"duration":5,"tweenEasing":0,"rotate":35.06},{"duration":0,"rotate":35.57}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.92},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":0,"y":0.99}]},{"name":"foot_l","translateFrame":[{"tweenEasing":0,"x":1.51,"y":-0.15},{"duration":5,"tweenEasing":0,"x":1.38,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.4,"y":-0.19},{"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.44,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.41,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":5,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.39,"y":-0.16},{"duration":2,"tweenEasing":0,"x":1.37,"y":-0.13},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.13},{"duration":4,"tweenEasing":0,"x":1.37,"y":-0.14},{"duration":3,"tweenEasing":0,"x":1.42,"y":-0.12},{"duration":4,"tweenEasing":0,"x":1.4,"y":-0.11},{"duration":5,"tweenEasing":0,"x":1.37,"y":-0.12},{"duration":0,"x":1.38,"y":-0.1}],"rotateFrame":[{"tweenEasing":0,"rotate":-17.55},{"duration":5,"tweenEasing":0,"rotate":-55.87},{"duration":3,"tweenEasing":0,"rotate":-34.03},{"tweenEasing":0,"rotate":-27.28},{"duration":2,"tweenEasing":0,"rotate":-26.79},{"duration":10,"tweenEasing":0,"rotate":-40.34},{"duration":10,"tweenEasing":0,"rotate":-43.84},{"duration":5,"tweenEasing":0,"rotate":-40.58},{"duration":2,"tweenEasing":0,"rotate":27.58},{"duration":3,"tweenEasing":0,"rotate":-2.01},{"duration":3,"tweenEasing":0,"rotate":25.82},{"duration":2,"tweenEasing":0,"rotate":8.52},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":4,"tweenEasing":0,"rotate":5.03},{"duration":3,"tweenEasing":0,"rotate":-6.71},{"duration":4,"tweenEasing":0,"rotate":13.13},{"duration":5,"tweenEasing":0,"rotate":1.29},{"duration":0,"rotate":2.29}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":8,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":5,"x":1.03,"y":0.99}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":66,"value":-1}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk1","frame":[{"duration":4},{"duration":0,"sound":"200025"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.01},{"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.29,"y":0.01},{"duration":4,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.2,"y":-0.1}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-5.75},{"tweenEasing":0,"rotate":0.25},{"duration":2,"tweenEasing":0,"rotate":13.52},{"duration":2,"tweenEasing":0,"rotate":22.3},{"duration":4,"tweenEasing":0,"rotate":24.3},{"duration":0,"rotate":17.78}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.96}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.21},{"tweenEasing":0,"x":-0.16,"y":0.02},{"duration":2,"tweenEasing":0,"x":-0.29,"y":0.58},{"duration":2,"tweenEasing":0,"x":-0.3,"y":0.68},{"duration":4,"tweenEasing":0,"x":-0.3,"y":0.59},{"duration":0,"x":-0.23,"y":0.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.96},{"tweenEasing":0,"rotate":7.79},{"duration":2,"tweenEasing":0,"rotate":10.03},{"duration":2,"tweenEasing":0,"rotate":1.45},{"duration":4,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":1.89}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"shouder_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":1.25,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.89,"y":0.04},{"tweenEasing":0,"x":1.32,"y":1.4},{"duration":4,"tweenEasing":0,"x":-0.3,"y":4.43},{"duration":4,"x":-0.3,"y":4.43},{"duration":0,"x":1.2,"y":6.31}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-129.6},{"duration":3,"tweenEasing":0,"rotate":167.8},{"tweenEasing":0,"rotate":176.6},{"duration":2,"tweenEasing":0,"rotate":-74.75},{"duration":2,"tweenEasing":0,"rotate":-56.5},{"duration":4,"tweenEasing":0,"rotate":-60.7},{"duration":0,"rotate":-54.25}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.34,"y":-0.34},{"tweenEasing":0,"x":-1.39,"y":-5.16},{"duration":2,"tweenEasing":0,"x":4.2,"y":-17.25},{"duration":2,"tweenEasing":0,"x":3.45,"y":-17.67},{"duration":4,"x":3.47,"y":-17.23},{"duration":0,"x":3.77,"y":-12.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-48.37},{"tweenEasing":0,"rotate":1.39},{"duration":2,"tweenEasing":0,"rotate":24.27},{"duration":2,"tweenEasing":0,"rotate":24.73},{"duration":4,"tweenEasing":0,"rotate":26.04},{"duration":0,"rotate":13.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.99},{"tweenEasing":0,"x":0.67},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.06},{"duration":4,"tweenEasing":0,"x":1.06},{"duration":0,"x":1.04}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.17,"y":0.16},{"tweenEasing":0,"x":0.24,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.64,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.59,"y":-0.05},{"duration":4,"tweenEasing":0,"x":0.59,"y":-0.04},{"duration":0,"x":0.32,"y":1.15}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":12.19},{"tweenEasing":0,"rotate":-34.07},{"duration":2,"tweenEasing":0,"rotate":5.44},{"duration":2,"tweenEasing":0,"rotate":28.28},{"duration":4,"tweenEasing":0,"rotate":24.27},{"duration":0,"rotate":1.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.78,"y":1.01},{"tweenEasing":0,"x":0.95,"y":1.01},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.25,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.13,"y":1.01},{"duration":0,"x":1.15,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.87,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.88,"y":0.13},{"tweenEasing":0,"x":1.07,"y":0.14},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.25},{"duration":2,"tweenEasing":0,"x":1.16,"y":0.19},{"duration":4,"tweenEasing":0,"x":1.08,"y":0.23},{"duration":0,"x":0.2,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":12.78},{"tweenEasing":0,"rotate":-15.8},{"duration":2,"tweenEasing":0,"rotate":0.41},{"duration":2,"tweenEasing":0,"rotate":-14.66},{"duration":4,"tweenEasing":0,"rotate":14.63},{"duration":0,"rotate":2.97}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":0,"x":1.02}]},{"name":"hand_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.08,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.07},{"tweenEasing":0,"x":0.19,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.06},{"duration":4,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":0,"x":-0.55,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":3,"tweenEasing":0,"rotate":6.75},{"tweenEasing":0,"rotate":-2.5},{"duration":2,"tweenEasing":0,"rotate":76.22},{"duration":2,"tweenEasing":0,"rotate":58.71},{"duration":4,"tweenEasing":0,"rotate":41.93},{"duration":0,"rotate":38.08}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.17},{"duration":3,"tweenEasing":0,"x":1.17},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.17},{"tweenEasing":0,"x":-0.1,"y":0.22},{"duration":2,"tweenEasing":0,"x":-2.59,"y":-0.13},{"duration":2,"tweenEasing":0,"x":-2.74,"y":-0.17},{"duration":4,"tweenEasing":0,"x":-2.7,"y":-0.17},{"duration":0,"x":-3,"y":-0.12}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-2.57},{"tweenEasing":0,"rotate":4.32},{"duration":2,"tweenEasing":0,"rotate":-19.52},{"duration":2,"tweenEasing":0,"rotate":-14.64},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":0,"rotate":14.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"y":0.96},{"tweenEasing":0,"y":0.96},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.07,"y":1.19},{"duration":4,"tweenEasing":0,"x":1.02,"y":1.05},{"duration":0,"x":1.02,"y":1.03}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":0,"x":0.01,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":3.1},{"tweenEasing":0,"rotate":32.41},{"duration":2,"tweenEasing":0,"rotate":6.87},{"duration":2,"tweenEasing":0,"rotate":-13.06},{"duration":4,"tweenEasing":0,"rotate":-13.08},{"duration":0,"rotate":-8.52}]},{"name":"weapon_hand_r","translateFrame":[{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-96.78},{"duration":3,"tweenEasing":0,"rotate":-156.22},{"tweenEasing":0,"clockwise":1,"rotate":-179.75},{"duration":2,"tweenEasing":0,"rotate":38.81},{"duration":2,"tweenEasing":0,"rotate":39.31},{"duration":4,"tweenEasing":0,"rotate":29.29},{"duration":0,"rotate":15.52}]},{"name":"effect_r","translateFrame":[{"duration":12},{"tweenEasing":0,"x":23.95,"y":-15.22},{"x":40.96,"y":-23.57}],"rotateFrame":[{"duration":12},{"tweenEasing":0,"rotate":-9.42},{"rotate":-15.64}],"scaleFrame":[{"duration":11},{"tweenEasing":0,"x":1.21,"y":1.22},{"tweenEasing":0},{"x":0.7,"y":0.7}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":3.76,"y":-0.07},{"tweenEasing":0,"x":1.45,"y":3.01},{"duration":4,"tweenEasing":0,"x":0.54,"y":4.31},{"duration":4,"tweenEasing":0,"x":1,"y":4.59},{"duration":0,"x":0.67,"y":3.07}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.14,"y":0.38},{"tweenEasing":0,"x":1.11,"y":-3.46},{"duration":2,"tweenEasing":0,"x":2.01,"y":-7.84},{"duration":2,"tweenEasing":0,"x":2.72,"y":-8.01},{"duration":4,"tweenEasing":0,"x":2.67,"y":-7.55},{"duration":0,"x":1.77,"y":-5.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":4.5},{"tweenEasing":0,"rotate":-0.5},{"duration":2,"tweenEasing":0,"rotate":27.82},{"duration":2,"tweenEasing":0,"rotate":29.32},{"duration":4,"tweenEasing":0,"rotate":26.56},{"duration":0,"rotate":17.58}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.14,"y":-0.41},{"tweenEasing":0,"x":-1.09,"y":3.38},{"duration":2,"tweenEasing":0,"x":-1.98,"y":7.68},{"duration":2,"tweenEasing":0,"x":-2.11,"y":7.9},{"duration":4,"tweenEasing":0,"x":-2.64,"y":7.4},{"duration":0,"x":-1.77,"y":4.93}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":15.06},{"tweenEasing":0,"rotate":-33.12},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":4,"tweenEasing":0,"rotate":-7.03},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"x":0.98,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.01},{"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.07,"y":-1.21}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.3},{"tweenEasing":0,"rotate":39.9},{"duration":2,"tweenEasing":0,"rotate":19.86},{"duration":2,"tweenEasing":0,"rotate":22.62},{"duration":4,"tweenEasing":0,"rotate":26.38},{"duration":0,"rotate":25.1}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.99,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":0.01},{"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":4,"tweenEasing":0,"x":-0.03,"y":-0.01},{"duration":0,"x":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.94},{"tweenEasing":0,"rotate":32.87},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":4,"tweenEasing":0,"rotate":-32.1},{"duration":0,"rotate":-21.33}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96},{"tweenEasing":0,"x":0.93},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":1.21},{"duration":0,"x":1.14}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.19,"y":-0.02},{"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":4,"tweenEasing":0,"x":-0.22},{"duration":0,"x":-0.27,"y":0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-4.04},{"tweenEasing":0,"rotate":-35.15},{"duration":2,"tweenEasing":0,"rotate":-47.69},{"duration":2,"tweenEasing":0,"rotate":-52.7},{"duration":4,"tweenEasing":0,"rotate":-54.2},{"duration":0,"rotate":-43.45}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":1.01},{"duration":8}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.07,"y":0.02},{"tweenEasing":0,"x":1.55,"y":-0.04},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.06},{"duration":2,"tweenEasing":0,"x":1.48,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.08,"y":-0.06},{"duration":0,"x":-0.42,"y":-0.31}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-21.05},{"tweenEasing":0,"rotate":0.19},{"duration":2,"tweenEasing":0,"rotate":42.16},{"duration":2,"tweenEasing":0,"rotate":42.15},{"duration":4,"tweenEasing":0,"rotate":39.26},{"duration":0,"rotate":26.17}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":6,"value":-1},{"duration":8}],"colorFrame":[{"duration":6},{"duration":5},{"value":{"aM":62}},{"value":{"aM":23}},{"value":{"aM":6}}]}]},{"duration":48,"fadeInTime":0.2,"name":"Atk3","frame":[{"duration":33},{"sound":"200029"},{"duration":0,"events":[{"name":"onTimeStart"}]}],"bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":35,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.14},{"duration":3,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":23.05},{"duration":31,"tweenEasing":0,"rotate":7.25},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":2,"tweenEasing":0,"rotate":23.8},{"duration":4,"tweenEasing":0,"rotate":49.66},{"duration":3,"tweenEasing":0,"rotate":39.11},{"duration":3,"tweenEasing":0,"rotate":24.81},{"duration":0,"rotate":12.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":0,"x":0.99}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.15,"y":0.08},{"duration":31,"tweenEasing":0,"x":-0.04,"y":0.16},{"duration":2,"tweenEasing":0,"x":-0.24,"y":1.07},{"duration":2,"tweenEasing":0,"x":-0.28,"y":-0.38},{"duration":4,"tweenEasing":0,"x":-0.8,"y":-1.94},{"duration":3,"tweenEasing":0,"x":-0.88,"y":-2.45},{"duration":3,"tweenEasing":0,"x":-0.55,"y":-2.06},{"duration":0,"x":-0.14,"y":-1.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.69},{"duration":31,"tweenEasing":0,"rotate":-3.4},{"duration":2,"tweenEasing":0,"rotate":1.59},{"duration":2,"tweenEasing":0,"rotate":47.72},{"duration":4,"tweenEasing":0,"rotate":23.57},{"duration":3,"tweenEasing":0,"rotate":30.93},{"duration":3,"tweenEasing":0,"rotate":22.58},{"duration":0,"rotate":11.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":0,"x":0.99}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-2.16,"y":6.54},{"duration":2,"tweenEasing":0,"x":-0.78,"y":6.22},{"duration":29,"tweenEasing":0,"x":-1.47,"y":6.73},{"duration":2,"tweenEasing":0,"x":-0.62,"y":7.1},{"duration":2,"tweenEasing":0,"x":-3.24,"y":11.37},{"duration":4,"tweenEasing":0,"x":-3.25,"y":11.5},{"duration":3,"tweenEasing":0,"x":-3.43,"y":10.87},{"duration":3,"tweenEasing":0,"x":-1.26,"y":7.59},{"duration":0,"x":-0.88,"y":6.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-32.21},{"duration":2,"tweenEasing":0,"rotate":-26.21},{"duration":29,"tweenEasing":0,"rotate":-56.66},{"duration":2,"tweenEasing":0,"rotate":-179.92},{"duration":2,"tweenEasing":0,"rotate":-100.73},{"duration":4,"tweenEasing":0,"rotate":-102.06},{"duration":3,"tweenEasing":0,"rotate":-113.23},{"duration":3,"tweenEasing":0,"rotate":-70.65},{"duration":0,"rotate":-31.81}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":4.9,"y":-9.52},{"duration":2,"tweenEasing":0,"x":2.89,"y":-7.56},{"duration":29,"tweenEasing":0,"x":2.64,"y":-7.28},{"duration":2,"tweenEasing":0,"x":1.37,"y":-7.87},{"duration":2,"tweenEasing":0,"x":4.56,"y":-11.44},{"duration":4,"tweenEasing":0,"x":3.7,"y":-11.38},{"duration":3,"tweenEasing":0,"x":4.77,"y":-11.2},{"duration":3,"tweenEasing":0,"x":4.44,"y":-9.48},{"duration":0,"x":2.47,"y":-6.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-2.11},{"duration":2,"tweenEasing":0,"rotate":-7.16},{"duration":29,"tweenEasing":0,"rotate":-40.37},{"duration":2,"tweenEasing":0,"rotate":-126.51},{"duration":2,"tweenEasing":0,"rotate":-54.13},{"duration":4,"tweenEasing":0,"rotate":-56.46},{"duration":3,"tweenEasing":0,"rotate":-59.88},{"duration":3,"tweenEasing":0,"rotate":-43.84},{"duration":0,"rotate":-21.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":29,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":0,"x":0.99}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.81},{"duration":29,"tweenEasing":0,"x":0.79,"y":0.1},{"duration":2,"tweenEasing":0,"x":0.95,"y":-0.19},{"duration":2,"tweenEasing":0,"x":0.75,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.71,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.71,"y":0.02},{"duration":3,"tweenEasing":0,"x":0.73,"y":-0.01},{"duration":0,"x":0.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-10.87},{"duration":2,"tweenEasing":0,"rotate":-22.37},{"duration":29,"tweenEasing":0,"rotate":-31.14},{"duration":2,"tweenEasing":0,"rotate":-41.66},{"duration":2,"tweenEasing":0,"rotate":-36.65},{"duration":4,"tweenEasing":0,"rotate":-42.16},{"duration":3,"tweenEasing":0,"rotate":-37.89},{"duration":3,"tweenEasing":0,"rotate":-5.03},{"duration":0,"rotate":-2.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":29,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":0,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.1,"y":0.18},{"duration":2,"tweenEasing":0,"x":0.85,"y":0.22},{"duration":29,"tweenEasing":0,"x":0.25,"y":0.04},{"duration":2,"tweenEasing":0,"x":1.33,"y":0.2},{"duration":2,"tweenEasing":0,"x":1.22,"y":0.18},{"duration":4,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.16},{"duration":3,"tweenEasing":0,"x":1.24,"y":0.21},{"duration":0,"x":1.03,"y":0.18}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.79},{"duration":2,"tweenEasing":0,"rotate":-33.15},{"duration":29,"tweenEasing":0,"rotate":-45.42},{"duration":2,"tweenEasing":0,"rotate":12.03},{"duration":2,"tweenEasing":0,"rotate":-11.34},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":3,"tweenEasing":0,"rotate":6.95},{"duration":3,"tweenEasing":0,"rotate":-7.3},{"duration":0,"rotate":-9.52}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":0,"x":1.02,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.16,"y":-0.24},{"duration":29,"tweenEasing":0,"x":0.37,"y":-0.22},{"duration":2,"tweenEasing":0,"x":0.15,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.2,"y":-0.07},{"duration":4,"tweenEasing":0,"x":0.17,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.16,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.02},{"duration":0,"x":0.09,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":12.01},{"duration":2,"tweenEasing":0,"rotate":18.07},{"duration":29,"tweenEasing":0,"rotate":18.27},{"duration":2,"tweenEasing":0,"rotate":-6.26},{"duration":2,"tweenEasing":0,"rotate":48.15},{"duration":4,"tweenEasing":0,"rotate":37.86},{"duration":3,"tweenEasing":0,"rotate":44.89},{"duration":3,"tweenEasing":0,"rotate":46.12},{"duration":0,"rotate":34.82}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":6,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":0.11},{"duration":2,"tweenEasing":0,"x":-0.01,"y":0.19},{"duration":29,"tweenEasing":0,"x":-0.01,"y":0.07},{"duration":2,"tweenEasing":0,"x":0.34,"y":0.28},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.14},{"duration":4,"tweenEasing":0,"x":-0.04,"y":0.12},{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":-0.02,"y":0.11},{"duration":0,"y":0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":11.13},{"duration":2,"tweenEasing":0,"rotate":14.81},{"duration":29,"tweenEasing":0,"rotate":13.5},{"duration":2,"tweenEasing":0,"rotate":-0.66},{"duration":2,"tweenEasing":0,"rotate":51.14},{"duration":4,"tweenEasing":0,"rotate":57.16},{"duration":3,"tweenEasing":0,"rotate":59.68},{"duration":3,"tweenEasing":0,"rotate":39.57},{"duration":0,"rotate":19.81}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.93},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":29,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":1.11,"y":1.34},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.98},{"duration":0,"x":1.01,"y":0.99}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":29,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.01,"y":0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.59},{"duration":2,"tweenEasing":0,"rotate":19.03},{"duration":29,"tweenEasing":0,"rotate":16.97},{"duration":2,"tweenEasing":0,"rotate":13.9},{"duration":6,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":17.86},{"duration":0,"rotate":9.1}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":29,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"duration":0,"y":0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":31.29},{"duration":2,"tweenEasing":0,"rotate":-28.61},{"duration":29,"tweenEasing":0,"rotate":-69.47},{"duration":2,"tweenEasing":0,"rotate":176.49},{"duration":2,"tweenEasing":0,"rotate":21.15},{"duration":4,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":28.28},{"duration":0,"rotate":32.29}]},{"name":"effect_r","translateFrame":[{"duration":5,"x":-26.3,"y":-41.21},{"duration":28,"tweenEasing":0,"x":-26.3,"y":-41.21},{"duration":3,"x":-26.78,"y":-51.93},{"duration":4,"tweenEasing":0,"x":-1.03,"y":1.03},{"duration":3,"x":-1.03,"y":1.03},{"tweenEasing":0,"x":10.17,"y":6.63},{"duration":4,"x":30.97,"y":5.03}],"rotateFrame":[{"duration":33,"rotate":35.08},{"duration":3,"rotate":35.08},{"duration":12,"rotate":7.52}],"scaleFrame":[{"duration":33,"x":0.18,"y":0.16},{"duration":3,"x":0.18,"y":0.16},{"duration":4,"tweenEasing":0,"x":1.21,"y":1.09},{"duration":2,"x":1.68,"y":1.51},{"tweenEasing":0,"x":1.87,"y":1.68},{"tweenEasing":0,"x":1.63,"y":1.47},{"duration":4,"x":0.93,"y":0.84}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-3.02,"y":5.91},{"duration":31,"tweenEasing":0,"x":6.06,"y":-12.9},{"duration":2,"tweenEasing":0,"x":7.94,"y":-22.23},{"duration":2,"tweenEasing":0,"x":2.9,"y":6.9},{"duration":7,"tweenEasing":0,"x":2.76,"y":6.68},{"duration":3,"tweenEasing":0,"x":2.3,"y":6.53},{"duration":0,"x":1.15,"y":3.27}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-2.17},{"duration":31,"tweenEasing":0,"x":-0.6,"y":-2.49},{"duration":2,"tweenEasing":0,"x":0.34,"y":-3.43},{"duration":2,"tweenEasing":0,"x":1.02,"y":-3.12},{"duration":4,"tweenEasing":0,"x":1.01,"y":-3.39},{"duration":3,"tweenEasing":0,"x":2.54,"y":-3.36},{"duration":3,"tweenEasing":0,"x":0.96,"y":-3.47},{"duration":0,"x":-0.89,"y":-1.82}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-63.19},{"duration":31,"tweenEasing":0,"rotate":-33.31},{"duration":2,"tweenEasing":0,"rotate":-11.76},{"duration":2,"tweenEasing":0,"rotate":-0.5},{"duration":4,"tweenEasing":0,"rotate":1},{"duration":3,"tweenEasing":0,"rotate":-1.59},{"duration":3,"tweenEasing":0,"rotate":5.01},{"duration":0,"rotate":5.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":31,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":4,"tweenEasing":0,"x":0.91},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":0,"x":0.92}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.74,"y":2.15},{"duration":2,"tweenEasing":0,"x":0.6,"y":2.43},{"duration":29,"tweenEasing":0,"x":-1.05,"y":1.09},{"duration":2,"tweenEasing":0,"x":-0.33,"y":3.36},{"duration":2,"tweenEasing":0,"x":-1,"y":3.07},{"duration":4,"tweenEasing":0,"x":-0.98,"y":3.3},{"duration":3,"tweenEasing":0,"x":0.2,"y":3.03},{"duration":3,"tweenEasing":0,"x":-0.93,"y":3.4},{"duration":0,"x":-0.48,"y":1.71}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-43.89},{"duration":2,"tweenEasing":0,"rotate":37.86},{"duration":29,"tweenEasing":0,"rotate":-63.16},{"duration":2,"tweenEasing":0,"rotate":-39.39},{"duration":2,"tweenEasing":0,"rotate":-61.15},{"duration":4,"tweenEasing":0,"rotate":-63.15},{"duration":3,"tweenEasing":0,"rotate":-78.7},{"duration":3,"tweenEasing":0,"rotate":-66.92},{"duration":0,"rotate":-33.58}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":29,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.9,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":31,"tweenEasing":0,"x":0.04,"y":-0.11},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":0,"x":0.01,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":97.06},{"duration":31,"tweenEasing":0,"rotate":81.5},{"duration":2,"tweenEasing":0,"rotate":11.26},{"duration":2,"tweenEasing":0,"rotate":58.17},{"duration":4,"tweenEasing":0,"rotate":56.18},{"duration":3,"tweenEasing":0,"rotate":65.16},{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":0,"rotate":13.54}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":31,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":0,"x":0.95,"y":0.99}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":29,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.1},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"y":-0.06},{"duration":0,"x":-0.95}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":17.05},{"duration":2,"tweenEasing":0,"rotate":-17.87},{"duration":29,"tweenEasing":0,"rotate":103.48},{"duration":2,"tweenEasing":0,"rotate":56.4},{"duration":2,"tweenEasing":0,"rotate":68.88},{"duration":4,"tweenEasing":0,"rotate":69.4},{"duration":3,"tweenEasing":0,"rotate":82.2},{"duration":3,"tweenEasing":0,"rotate":71.17},{"duration":0,"rotate":35.8}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":29,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.81},{"duration":3,"tweenEasing":0,"x":0.85},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.02,"y":-0.02},{"duration":31,"tweenEasing":0,"x":-0.06,"y":-0.06},{"duration":2,"tweenEasing":0,"x":-0.02,"y":0.03},{"duration":2,"tweenEasing":0,"x":-0.2},{"duration":4,"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.19},{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.03,"y":-0.04}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-33.88},{"duration":31,"tweenEasing":0,"rotate":13},{"duration":2,"tweenEasing":0,"rotate":43.62},{"duration":2,"tweenEasing":0,"rotate":-56.95},{"duration":4,"tweenEasing":0,"rotate":-56.21},{"duration":3,"tweenEasing":0,"rotate":-62.46},{"duration":3,"tweenEasing":0,"rotate":-51.69},{"duration":0,"rotate":-17.16}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":31,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":12}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.02},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.08},{"duration":29,"tweenEasing":0,"x":1.84,"y":-0.11},{"duration":2,"tweenEasing":0,"x":1.76,"y":-0.03},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.01},{"duration":4,"tweenEasing":0,"x":1.6,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.58,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.72,"y":-0.03}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.83},{"duration":2,"tweenEasing":0,"rotate":8.27},{"duration":29,"tweenEasing":0,"rotate":-20.08},{"duration":2,"tweenEasing":0,"rotate":4.75},{"duration":2,"tweenEasing":0,"rotate":-7.97},{"duration":4,"tweenEasing":0,"rotate":-6.42},{"duration":3,"tweenEasing":0,"rotate":-3.63},{"duration":3,"tweenEasing":0,"rotate":-4.23},{"duration":0,"rotate":-2.27}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":29,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":12}]}],"slot":[{"name":"effect_r","colorFrame":[{"duration":34,"value":{"aM":0}},{"duration":2,"value":{"aM":0}},{"duration":5},{},{"value":{"aM":44}},{"duration":2,"value":{"aM":10}},{"duration":3,"value":{"aM":6}}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk2","frame":[{"duration":5},{"duration":0,"sound":"200026"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":0.01},{"duration":7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-1},{"duration":7,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-0.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.98},{"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":0,"x":1.01}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":-0.11,"y":0.14},{"duration":7,"tweenEasing":0,"x":-0.13,"y":0.33},{"duration":0,"x":-0.1,"y":0.27}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":-1.49},{"duration":7,"tweenEasing":0,"rotate":-0.49},{"duration":0,"rotate":-0.3}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0},{"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":0.94},{"duration":0,"x":0.96}]},{"name":"shouder_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":-0.76},{"tweenEasing":0,"x":0.16,"y":-0.38},{"tweenEasing":0,"x":-0.99,"y":5.26},{"duration":7,"tweenEasing":0,"x":-0.51,"y":17.06},{"duration":0,"x":-0.41,"y":16.28}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":44.91},{"tweenEasing":0,"rotate":45.66},{"tweenEasing":0,"rotate":61.1},{"duration":7,"tweenEasing":0,"rotate":-91.96},{"duration":0,"rotate":-79.76}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.35,"y":-0.86},{"tweenEasing":0,"x":0.45,"y":-0.79},{"tweenEasing":0,"x":1.88,"y":-6.43},{"duration":7,"tweenEasing":0,"x":3.48,"y":-19.49},{"duration":0,"x":3.13,"y":-18.3}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-19.79},{"tweenEasing":0,"rotate":-18.04},{"tweenEasing":0,"rotate":23.73},{"duration":7,"tweenEasing":0,"rotate":44.71},{"duration":0,"rotate":42.09}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.97,"y":1.01},{"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.96},{"duration":7,"tweenEasing":0,"x":1.05},{"duration":0,"x":1.02}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.8},{"tweenEasing":0,"x":0.77,"y":0.01},{"tweenEasing":0,"x":0.74,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.72,"y":-0.07},{"duration":0,"x":0.69,"y":-0.14}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.8},{"tweenEasing":0,"rotate":-8.57},{"tweenEasing":0,"rotate":-24.34},{"duration":7,"tweenEasing":0,"rotate":-18.82},{"duration":0,"rotate":-26.6}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.93,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.84,"y":1.01},{"duration":0,"x":0.85,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"tweenEasing":0,"x":0.18,"y":-0.02},{"tweenEasing":0,"x":0.92,"y":0.12},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.22},{"duration":0,"x":1.24,"y":0.19}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.9},{"tweenEasing":0,"rotate":-10.41},{"tweenEasing":0,"rotate":-62.21},{"duration":7,"tweenEasing":0,"rotate":3.51},{"duration":0,"rotate":2.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":0,"x":1.02,"y":1.01}]},{"name":"hand_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03},{"tweenEasing":0,"y":-0.03},{"tweenEasing":0,"x":0.1,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.19,"y":-0.08},{"duration":0,"x":0.16,"y":-0.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.03},{"tweenEasing":0,"rotate":-22.3},{"tweenEasing":0,"rotate":3.75},{"duration":7,"tweenEasing":0,"rotate":95.26},{"duration":0,"rotate":83.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":0.99},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.99}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.04,"y":0.04},{"tweenEasing":0,"x":0.02,"y":0.08},{"tweenEasing":0,"x":0.06,"y":0.16},{"duration":7,"tweenEasing":0,"x":0.3,"y":-0.05},{"duration":0,"x":0.26,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":0.5},{"tweenEasing":0,"rotate":-2.27},{"tweenEasing":0,"rotate":-12.92},{"duration":7,"tweenEasing":0,"rotate":-20.48},{"duration":0,"rotate":-23.94}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":1.02},{"tweenEasing":0,"x":1.01,"y":1.03},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":7,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":0,"x":0.96,"y":0.81}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":7,"x":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":13.43},{"tweenEasing":0,"rotate":14.56},{"tweenEasing":0,"rotate":26.23},{"duration":7,"tweenEasing":0,"rotate":23.18},{"duration":0,"rotate":32.77}]},{"name":"weapon_hand_r","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":-0.01},{"tweenEasing":0},{"duration":7,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":19.53},{"tweenEasing":0,"rotate":26.53},{"tweenEasing":0,"rotate":13.24},{"duration":7,"tweenEasing":0,"rotate":19.02},{"duration":0,"rotate":17.77}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":2,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":7,"x":-0.86,"y":3.5}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.97,"y":-2.63},{"duration":7,"tweenEasing":0,"x":1.17,"y":-5.6},{"duration":0,"x":0.74,"y":-4.76}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-8.25},{"duration":7,"tweenEasing":0,"rotate":12.27},{"duration":0,"rotate":7.26}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.89},{"tweenEasing":0,"x":0.89},{"tweenEasing":0},{"duration":7,"x":1.02}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.9,"y":2.62},{"duration":7,"tweenEasing":0,"x":-1.15,"y":5.52},{"duration":0,"x":-0.73,"y":4.7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-26.1},{"duration":7,"tweenEasing":0,"rotate":-8.29},{"duration":0,"rotate":-31.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"x":0.05,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":40.63},{"duration":7,"tweenEasing":0,"rotate":27.65},{"duration":0,"rotate":29.9}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.98,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":0,"x":1.02,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":17.59},{"duration":7,"tweenEasing":0,"rotate":-32.13},{"duration":0,"rotate":6.8}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.89},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":-0.2,"y":-0.05},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.03},{"duration":0,"x":-0.17,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-32.38},{"duration":7,"tweenEasing":0,"rotate":-39.91},{"duration":0,"rotate":-37.15}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":1.55,"y":-0.03},{"duration":7,"tweenEasing":0,"x":1.47,"y":-0.05},{"duration":0,"x":1.51,"y":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":8.43},{"duration":7,"tweenEasing":0,"rotate":40.37},{"duration":0,"rotate":24.52}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":14,"value":-1}]}]},{"duration":28,"playTimes":0,"fadeInTime":0.2,"name":"Idle2","bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":11,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6},{"duration":11,"tweenEasing":0,"rotate":-8},{"duration":2,"tweenEasing":0,"rotate":-8.25},{"duration":6,"tweenEasing":0,"rotate":-5.64},{"duration":6,"tweenEasing":0,"rotate":-2.97},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.05,"y":0.31},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.32},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.34},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.32},{"duration":6,"tweenEasing":0,"x":-0.13,"y":0.07},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":2.34},{"duration":11,"tweenEasing":0,"rotate":7.01},{"duration":2,"tweenEasing":0,"rotate":7.26},{"duration":6,"tweenEasing":0,"rotate":5.79},{"duration":6,"tweenEasing":0,"rotate":2.25},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":12}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.43,"y":-0.55},{"duration":11,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":2,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":6,"tweenEasing":0,"x":1.35,"y":0.25},{"duration":6,"tweenEasing":0,"x":0.54,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":24.66},{"duration":11,"tweenEasing":0,"rotate":-127.17},{"duration":2,"tweenEasing":0,"rotate":-127.17},{"duration":6,"tweenEasing":0,"rotate":-102.81},{"duration":6,"tweenEasing":0,"rotate":-44.58},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.96,"y":-0.15},{"duration":11,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":2,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":6,"tweenEasing":0,"x":0.08,"y":-1.12},{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.65},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-24.49},{"duration":11,"tweenEasing":0,"rotate":-7.86},{"duration":2,"tweenEasing":0,"rotate":18.69},{"duration":6,"tweenEasing":0,"rotate":19.28},{"duration":6,"tweenEasing":0,"rotate":9.77},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.91},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01,"y":0.06},{"duration":11,"tweenEasing":0,"x":0.01,"y":0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.09},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.94},{"duration":11,"tweenEasing":0,"rotate":9.46},{"duration":2,"tweenEasing":0,"rotate":-12.33},{"duration":6,"tweenEasing":0,"rotate":-14.34},{"duration":6,"tweenEasing":0,"rotate":-8.3},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":6,"tweenEasing":0,"x":0.92},{"duration":6,"tweenEasing":0,"x":1.02},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.18,"y":-0.05},{"duration":11,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":1.11,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":16.97},{"duration":11,"tweenEasing":0,"rotate":3.95},{"duration":2,"tweenEasing":0,"rotate":3.95},{"duration":6,"tweenEasing":0,"rotate":-2.5},{"duration":6,"tweenEasing":0,"rotate":-0.84},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.12},{"duration":11,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":2,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":6,"tweenEasing":0,"x":0.36,"y":-0.29},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-3.52},{"duration":2,"tweenEasing":0,"rotate":-3.52},{"duration":6,"tweenEasing":0,"rotate":-4.04},{"duration":6,"tweenEasing":0,"rotate":-3.04},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.18},{"duration":6,"tweenEasing":0,"x":0.09,"y":0.19},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-0.23},{"duration":2,"tweenEasing":0,"rotate":9.23},{"duration":6,"tweenEasing":0,"rotate":8.42},{"duration":6,"tweenEasing":0,"rotate":3.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":11,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":6,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":6}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-11.56},{"duration":11,"tweenEasing":0,"rotate":35.02},{"duration":2,"tweenEasing":0,"rotate":34.46},{"duration":6,"tweenEasing":0,"rotate":35.98},{"duration":6,"tweenEasing":0,"rotate":26.72},{"duration":0}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.47},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":3.92,"y":-3.23},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":72.69},{"tweenEasing":0,"rotate":-95.52},{"tweenEasing":0,"rotate":-151.72},{"tweenEasing":0,"rotate":124.8},{"tweenEasing":0,"rotate":63.15},{"tweenEasing":0,"rotate":5.26},{"tweenEasing":0,"rotate":-57.46},{"tweenEasing":0,"rotate":-116.85},{"tweenEasing":0,"rotate":-174.24},{"tweenEasing":0,"rotate":123.54},{"tweenEasing":0,"rotate":64.15},{"tweenEasing":0,"rotate":6.51},{"tweenEasing":0,"rotate":-55.46},{"tweenEasing":0,"rotate":-104.3},{"duration":6,"tweenEasing":0,"rotate":-96.77},{"duration":6,"tweenEasing":0,"rotate":-55.71},{"duration":0}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.78,"y":2.3},{"duration":11,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":2,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":6,"tweenEasing":0,"x":0.33,"y":1.37},{"duration":6,"tweenEasing":0,"x":0.17,"y":0.69},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.09,"y":-0.24},{"duration":11,"tweenEasing":0,"x":0.76,"y":-0.66},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.66},{"duration":6,"tweenEasing":0,"x":0.72,"y":-0.54},{"duration":6,"tweenEasing":0,"x":0.56,"y":-0.15},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-22.27},{"duration":11,"tweenEasing":0,"rotate":3},{"duration":2,"tweenEasing":0,"rotate":2.75},{"duration":6,"tweenEasing":0,"rotate":-11.76},{"duration":6,"tweenEasing":0,"rotate":-8.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":11,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":0.93},{"duration":6,"tweenEasing":0,"x":0.95},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.09,"y":0.23},{"duration":11,"tweenEasing":0,"x":-0.74,"y":0.62},{"duration":2,"tweenEasing":0,"x":-0.77,"y":0.62},{"duration":6,"tweenEasing":0,"x":-0.72,"y":0.49},{"duration":6,"tweenEasing":0,"x":-0.24,"y":0.33},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.58},{"duration":11,"tweenEasing":0,"rotate":3.01},{"duration":2,"tweenEasing":0,"rotate":3.51},{"duration":6,"tweenEasing":0,"rotate":-9.54},{"duration":6,"tweenEasing":0,"rotate":-6.03},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":11,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":11,"tweenEasing":0,"x":0.03},{"duration":2,"tweenEasing":0,"x":0.03},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":33.01},{"duration":11,"tweenEasing":0,"rotate":9.04},{"duration":2,"tweenEasing":0,"rotate":9.54},{"duration":6,"tweenEasing":0,"rotate":27.29},{"duration":6,"tweenEasing":0,"rotate":17.02},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":0.94},{"duration":6,"tweenEasing":0,"x":0.96},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.06},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":20.59},{"duration":11,"tweenEasing":0,"rotate":-0.02},{"duration":2,"tweenEasing":0,"rotate":-0.77},{"duration":6,"tweenEasing":0,"rotate":13.3},{"duration":6,"tweenEasing":0,"rotate":8.28},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.9},{"duration":11,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"foot_r","translateFrame":[{"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":11,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"tweenEasing":0,"rotate":-10.78},{"duration":2,"tweenEasing":0,"rotate":-11.2},{"duration":11,"tweenEasing":0,"rotate":-12.04},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":6,"tweenEasing":0,"rotate":-15.55},{"duration":6,"tweenEasing":0,"rotate":-8.53},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-1.08},{"duration":11,"tweenEasing":0,"rotate":-2.98},{"duration":2,"tweenEasing":0,"rotate":-2.73},{"duration":6,"tweenEasing":0,"rotate":-3.76},{"duration":6,"tweenEasing":0,"rotate":-2.26},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":28,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta new file mode 100644 index 0000000..a5dff6c --- /dev/null +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta @@ -0,0 +1,6 @@ +{ + "ver": "1.0.0", + "uuid": "affcd973-4743-48e5-9bcd-339180a6101b", + "dragonBonesJson": "{\"frameRate\":25,\"name\":\"SoldierElf\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":25,\"name\":\"SoldierElf\",\"aabb\":{\"x\":-34.53,\"y\":-104.78,\"width\":86.87,\"height\":105.25},\"bone\":[{\"name\":\"root1\",\"transform\":{\"y\":-11.0128}},{\"inheritScale\":false,\"name\":\"effect_r\",\"parent\":\"root1\",\"transform\":{\"x\":33.28,\"y\":4,\"skX\":-46.2343,\"skY\":-23.9186,\"scX\":2.1416,\"scY\":2.3753}},{\"inheritScale\":false,\"length\":3,\"name\":\"root\",\"parent\":\"root1\",\"transform\":{\"x\":-0.04,\"y\":-15.48,\"skX\":90.2632,\"skY\":90.2632}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_l\",\"parent\":\"root\",\"transform\":{\"x\":1.6606,\"y\":-6.4628,\"skX\":-40.9714,\"skY\":-40.9714,\"scX\":0.9869,\"scY\":0.9853}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_r\",\"parent\":\"root\",\"transform\":{\"x\":1.3414,\"y\":6.0837,\"skX\":3.567,\"skY\":3.567,\"scX\":0.9859,\"scY\":0.9981}},{\"inheritScale\":false,\"length\":3,\"name\":\"pelvis\",\"parent\":\"root\",\"transform\":{\"x\":-3.2028,\"y\":0.1015,\"skX\":-174.7594,\"skY\":-174.7594,\"scX\":0.9802,\"scY\":0.9952}},{\"inheritScale\":false,\"length\":8,\"name\":\"chest\",\"parent\":\"pelvis\",\"transform\":{\"x\":4,\"y\":-0.0016,\"skX\":-5.2066,\"skY\":-5.2246,\"scX\":0.9979,\"scY\":0.9998}},{\"inheritScale\":false,\"length\":9,\"name\":\"calf_r\",\"parent\":\"thigh_r\",\"transform\":{\"x\":5.704,\"y\":0.0016,\"skX\":16.144,\"skY\":16.1453,\"scX\":0.9955,\"scY\":0.9905}},{\"inheritScale\":false,\"length\":7,\"name\":\"calf_l\",\"parent\":\"thigh_l\",\"transform\":{\"x\":5.6592,\"y\":-0.0016,\"skX\":32.6682,\"skY\":32.6684,\"scX\":0.9945,\"scY\":0.9954}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_l\",\"parent\":\"chest\",\"transform\":{\"x\":8.6578,\"y\":9.9632,\"skX\":-164.5031,\"skY\":-164.5031,\"scX\":0.9868,\"scY\":0.9948}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_r\",\"parent\":\"chest\",\"transform\":{\"x\":10.4583,\"y\":-13.3897,\"skX\":-147.4808,\"skY\":-147.4808,\"scX\":0.9972,\"scY\":0.9986}},{\"inheritScale\":false,\"name\":\"foot_l\",\"parent\":\"calf_l\",\"transform\":{\"x\":15.2897,\"y\":1.2193,\"skX\":8.0381,\"skY\":8.0381,\"scX\":0.9955}},{\"inheritScale\":false,\"name\":\"foot_r\",\"parent\":\"calf_r\",\"transform\":{\"x\":14.2999,\"y\":-2.3357,\"skX\":-19.9771,\"skY\":-19.9771,\"scX\":0.9955}},{\"inheritScale\":false,\"length\":12,\"name\":\"forearm_r\",\"parent\":\"shouder_r\",\"transform\":{\"x\":6.0016,\"y\":0.0016,\"skX\":-38.0045,\"skY\":-38.0045,\"scX\":0.9973,\"scY\":0.994}},{\"inheritScale\":false,\"length\":7,\"name\":\"forearm_l\",\"parent\":\"shouder_l\",\"transform\":{\"x\":6.0144,\"y\":-0.0016,\"skX\":-42.3089,\"skY\":-42.3089,\"scX\":0.9979,\"scY\":0.987}},{\"inheritScale\":false,\"name\":\"hand_r\",\"parent\":\"forearm_r\",\"transform\":{\"x\":13.7919,\"y\":0.7114,\"skX\":3.3187,\"skY\":3.3187,\"scX\":1.0446,\"scY\":0.9963}},{\"inheritScale\":false,\"name\":\"hand_l\",\"parent\":\"forearm_l\",\"transform\":{\"x\":7.6912,\"y\":-0.0032,\"skX\":119.4238,\"skY\":119.4238,\"scX\":0.9894,\"scY\":0.9954}},{\"inheritScale\":false,\"name\":\"weapon_hand_l\",\"parent\":\"hand_l\",\"transform\":{\"x\":-8.5173,\"y\":-2.6264,\"skX\":139.1066,\"skY\":139.1066,\"scX\":0.9967,\"scY\":0.9984}},{\"inheritRotation\":false,\"inheritScale\":false,\"name\":\"weapon_hand_r\",\"parent\":\"hand_r\",\"transform\":{\"x\":1.4768,\"y\":-3.0184,\"skX\":-17.7744,\"skY\":-17.7744,\"scX\":0.9981,\"scY\":0.999}}],\"slot\":[{\"name\":\"cape\",\"parent\":\"pelvis\"},{\"name\":\"shouder_l\",\"parent\":\"shouder_l\"},{\"name\":\"forearm_l\",\"parent\":\"forearm_l\"},{\"name\":\"hand_l\",\"parent\":\"hand_l\"},{\"name\":\"weapon_hand_l\",\"parent\":\"weapon_hand_l\"},{\"name\":\"thigh_l\",\"parent\":\"thigh_l\"},{\"name\":\"calf_l\",\"parent\":\"calf_l\"},{\"name\":\"foot_l\",\"parent\":\"foot_l\"},{\"name\":\"pelvis\",\"parent\":\"pelvis\"},{\"name\":\"thigh_r\",\"parent\":\"thigh_r\"},{\"name\":\"calf_r\",\"parent\":\"calf_r\"},{\"name\":\"foot_r\",\"parent\":\"foot_r\"},{\"name\":\"shouder_r\",\"parent\":\"shouder_r\"},{\"name\":\"chest\",\"parent\":\"chest\"},{\"name\":\"weapon_hand_r\",\"parent\":\"weapon_hand_r\"},{\"name\":\"forearm_r\",\"parent\":\"forearm_r\"},{\"name\":\"hand_r\",\"parent\":\"hand_r\"},{\"name\":\"effect_r\",\"parent\":\"effect_r\"}],\"skin\":[{\"slot\":[{\"name\":\"forearm_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_r_3\",\"transform\":{\"x\":6.7,\"y\":0.41,\"skX\":-87.21,\"skY\":-87.21},\"path\":\"forearm_r\"}]},{\"name\":\"shouder_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_l_1\",\"transform\":{\"x\":0.4,\"y\":0.06,\"skX\":-68.92,\"skY\":-68.56,\"scX\":1.0015,\"scY\":0.9985},\"path\":\"shouder_l\"}]},{\"name\":\"shouder_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_r_1\",\"transform\":{\"x\":0.46,\"y\":0.08,\"skX\":-136.05,\"skY\":-136.05},\"path\":\"shouder_r\"}]},{\"name\":\"foot_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_r_0\",\"transform\":{\"x\":1.06,\"y\":-1.31,\"skX\":-85.95,\"skY\":-85.95},\"path\":\"foot_r\"}]},{\"name\":\"calf_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_l_0\",\"transform\":{\"x\":7.16,\"y\":0.84,\"skX\":-91.2,\"skY\":-91.2},\"path\":\"calf_l\"}]},{\"name\":\"hand_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_l_2\",\"transform\":{\"x\":-5.62,\"y\":-5.3,\"skX\":179.52,\"skY\":179.52},\"path\":\"hand_l\"}]},{\"name\":\"cape\",\"display\":[{\"name\":\"cape\",\"transform\":{\"x\":10.59,\"y\":-16.32,\"skX\":84.58,\"skY\":84.41,\"scX\":1.0049,\"scY\":1.0201}}]},{\"name\":\"thigh_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_l_0\",\"transform\":{\"x\":1.19,\"y\":0.3,\"skX\":-66.04,\"skY\":-66.04},\"path\":\"thigh_l\"}]},{\"name\":\"hand_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_r_2\",\"transform\":{\"x\":3.51,\"y\":-2.17,\"skX\":-84.89,\"skY\":-84.89},\"path\":\"hand_r\"}]},{\"name\":\"effect_r\",\"display\":[{\"name\":\"we_bl_4\",\"transform\":{\"x\":11.39,\"y\":-12.38},\"path\":\"we_bl_4_f_1\"}]},{\"name\":\"weapon_hand_l\",\"display\":[{\"name\":\"weapon_hand_l\",\"transform\":{\"x\":12.59,\"y\":1.83,\"skX\":52.1,\"skY\":52.1}}]},{\"name\":\"foot_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_l_0\",\"transform\":{\"x\":1.82,\"y\":-3.5,\"skX\":-90.37,\"skY\":-90.37},\"path\":\"foot_l\"}]},{\"name\":\"weapon_hand_r\",\"display\":[{\"name\":\"weapon_hand_r\",\"transform\":{\"x\":14.2,\"y\":2.01,\"skX\":51,\"skY\":51},\"path\":\"weapon_hand_l\"}]},{\"name\":\"calf_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_r_0\",\"transform\":{\"x\":5.87,\"y\":0.08,\"skX\":-91.22,\"skY\":-91.22},\"path\":\"calf_r\"}]},{\"name\":\"thigh_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_r_0\",\"transform\":{\"x\":-0.65,\"y\":1.03,\"skX\":-94.6,\"skY\":-94.62,\"scX\":0.9991,\"scY\":0.99},\"path\":\"thigh_r\"}]},{\"name\":\"forearm_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_l_2\",\"transform\":{\"x\":5.09,\"y\":0.15,\"skX\":-63.39,\"skY\":-63.39},\"path\":\"forearm_l\"}]},{\"name\":\"chest\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/chest_0\",\"transform\":{\"x\":42.26,\"y\":-1.48,\"skX\":90.4,\"skY\":90.61},\"path\":\"chest\"}]},{\"name\":\"pelvis\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/pelvis_0\",\"transform\":{\"x\":9.56,\"y\":-1.5,\"skX\":83.65,\"skY\":83.65},\"path\":\"pelvis\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle1\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.31},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":0}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.6,\"y\":-0.22},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.23,\"y\":0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.92},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.45,\"y\":-0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":7.53},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.5},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":3.03},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":58,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Walking\",\"frame\":[{\"duration\":27},{\"duration\":31,\"sound\":\"footstep\"},{\"duration\":0,\"sound\":\"walk\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":17,\"tweenEasing\":0,\"x\":-0.47,\"y\":-0.01},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01},{\"duration\":5,\"tweenEasing\":0},{\"duration\":16,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.03},{\"duration\":0,\"x\":-0.1}],\"rotateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.25},{\"duration\":17,\"tweenEasing\":0,\"rotate\":5},{\"duration\":8,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":16,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":0,\"rotate\":6.05}],\"scaleFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":19,\"tweenEasing\":0,\"x\":0.98},{\"duration\":8,\"tweenEasing\":0,\"x\":0.98},{\"duration\":21}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":0.19},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.28},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.29},{\"duration\":7,\"tweenEasing\":0,\"x\":1.11,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28,\"y\":0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.25},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.23},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.69,\"y\":0.13},{\"duration\":0,\"x\":0.33,\"y\":0.17}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.2},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-3.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.62},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.66},{\"duration\":0,\"rotate\":-5.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":32}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-1.74,\"y\":8.78},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":8.53},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":6.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.96,\"y\":6.53},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.54,\"y\":5.36},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":4.56},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":5.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.33,\"y\":6.55},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.37,\"y\":6.99},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.4,\"y\":7.48},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.43,\"y\":8.33},{\"duration\":0,\"x\":-1.62,\"y\":8.69}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-17.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.48},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.27},{\"duration\":0,\"rotate\":-17.54}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":2.41,\"y\":-9.55},{\"duration\":7,\"tweenEasing\":0,\"x\":2.28,\"y\":-9.45},{\"duration\":2,\"tweenEasing\":0,\"x\":1.84,\"y\":-8.13},{\"duration\":7,\"tweenEasing\":0,\"x\":1.7,\"y\":-7.82},{\"duration\":7,\"tweenEasing\":0,\"x\":1.34,\"y\":-6.83},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-6.26},{\"duration\":3,\"tweenEasing\":0,\"x\":1.76,\"y\":-6.59},{\"duration\":5,\"tweenEasing\":0,\"x\":1.99,\"y\":-6.82},{\"duration\":2,\"tweenEasing\":0,\"x\":2.13,\"y\":-7.95},{\"duration\":3,\"tweenEasing\":0,\"x\":2.15,\"y\":-8.36},{\"duration\":7,\"tweenEasing\":0,\"x\":2.16,\"y\":-8.77},{\"duration\":9,\"tweenEasing\":0,\"x\":2.12,\"y\":-9.35},{\"duration\":0,\"x\":2.28,\"y\":-9.54}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.98},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.27},{\"duration\":0,\"rotate\":9.53}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":7,\"tweenEasing\":0,\"x\":0.87},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87},{\"duration\":8,\"tweenEasing\":0,\"x\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":9,\"tweenEasing\":0,\"x\":0.87},{\"duration\":0,\"x\":0.86}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.82,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.08},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.12},{\"duration\":0,\"x\":0.82,\"y\":-0.13}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.96},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.74},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.73},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.7},{\"duration\":5,\"tweenEasing\":0,\"rotate\":6.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.44},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.2},{\"duration\":0,\"rotate\":5.68}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":7,\"tweenEasing\":0,\"x\":0.92},{\"duration\":9,\"tweenEasing\":0,\"x\":0.9},{\"duration\":0,\"x\":0.86,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.22},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":1.23,\"y\":0.21},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.2},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":0.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":1.18,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":7,\"tweenEasing\":0,\"x\":1.19,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":0.2},{\"duration\":0,\"x\":1.23,\"y\":0.22}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":5.27},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.01},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.53},{\"duration\":0,\"rotate\":7.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":16,\"tweenEasing\":0,\"x\":1.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":9,\"x\":1.03}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":0,\"x\":0.14,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.25},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.98,\"y\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":0.09,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.13},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":0.08,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":0.1,\"y\":0.14},{\"duration\":0,\"x\":0.12,\"y\":0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.14},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.82},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.31},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.05},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.08},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":9.35},{\"duration\":0,\"rotate\":5.91}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"y\":0.97},{\"duration\":23,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":0.97},{\"duration\":0,\"y\":0.96}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.02,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.05},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":18.42},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.94},{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.8},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.8},{\"duration\":0,\"rotate\":21.25}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"y\":0.01},{\"duration\":9,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":7,\"tweenEasing\":0,\"rotate\":14.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":19.78},{\"duration\":5,\"tweenEasing\":0,\"rotate\":21.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.53},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.28},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.78},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.52},{\"duration\":0,\"rotate\":-0.5}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":-1.63,\"y\":0.96},{\"duration\":19,\"tweenEasing\":0,\"x\":-1.48,\"y\":0.02},{\"duration\":8,\"tweenEasing\":0,\"x\":-1.63,\"y\":1.03},{\"duration\":21,\"tweenEasing\":0,\"x\":-1.79,\"y\":0.99},{\"duration\":0,\"x\":-1.65,\"y\":0.95}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.64,\"y\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"x\":1.2,\"y\":-3.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.43,\"y\":-3.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-3.22},{\"duration\":7,\"tweenEasing\":0,\"x\":0.73,\"y\":-3.3},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":-3.55},{\"duration\":3,\"tweenEasing\":0,\"x\":0.51,\"y\":-3.77},{\"duration\":3,\"tweenEasing\":0,\"x\":1.26,\"y\":-3.91},{\"duration\":5,\"tweenEasing\":0,\"x\":1.48,\"y\":-3.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":-3.93},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.23,\"y\":-3.84},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.66,\"y\":-3.51},{\"duration\":0,\"x\":0.16,\"y\":-3.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-21.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-26.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-53.15},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-58.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-60.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-72.97},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-68.71},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-54.4},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-44.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.31},{\"duration\":0,\"rotate\":-21.52}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":2.95},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.37,\"y\":3},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":3.18},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":3.24},{\"duration\":7,\"tweenEasing\":0,\"x\":-2.57,\"y\":3.46},{\"duration\":3,\"tweenEasing\":0,\"x\":-2,\"y\":3.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.22,\"y\":3.86},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.89,\"y\":3.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.79,\"y\":3.96},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.99,\"y\":3.91},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":3.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.88,\"y\":3.85},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":3.53},{\"duration\":0,\"x\":-1.12,\"y\":3.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.58},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.34},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-15.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.83},{\"duration\":0,\"rotate\":-19.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0,\"x\":0.07,\"y\":-0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.43},{\"duration\":5,\"tweenEasing\":0,\"rotate\":64.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":80.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":79.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":56.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":52.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":42.17},{\"duration\":5,\"tweenEasing\":0,\"rotate\":48.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.64},{\"duration\":7,\"tweenEasing\":0,\"rotate\":35.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":32.07},{\"duration\":0,\"rotate\":41.6}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.98}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.01},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":10.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.49},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.56},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":54.38},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":62.92},{\"duration\":9,\"tweenEasing\":0,\"rotate\":43.86},{\"duration\":0,\"rotate\":24.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.02},{\"duration\":0,\"x\":-0.21,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.1},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-16.61},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":13.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.03},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10.78},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":-16.03}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":20,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"x\":0.98}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.53,\"y\":-0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":1.49,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.5,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":1.55,\"y\":-0.16},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":-0.1},{\"duration\":0,\"x\":1.54,\"y\":-0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-31.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-49.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-31.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.56},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-26.94},{\"duration\":0,\"rotate\":-13.54}],\"scaleFrame\":[{\"duration\":19,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":10,\"tweenEasing\":0,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":58,\"value\":-1}]}]},{\"duration\":66,\"fadeInTime\":0.1,\"name\":\"Dying\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.16},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":-0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.32},{\"duration\":0,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-6},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":20.04},{\"duration\":3,\"tweenEasing\":0,\"rotate\":41.37},{\"duration\":4,\"tweenEasing\":0,\"rotate\":82.99},{\"duration\":3,\"tweenEasing\":0,\"rotate\":84},{\"duration\":9,\"tweenEasing\":0,\"rotate\":87.25},{\"duration\":0,\"rotate\":85}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":9,\"x\":1.03}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.28},{\"tweenEasing\":0,\"x\":0.05,\"y\":0.48},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.27,\"y\":0.94},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.54},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.35},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.43},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.26},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.53},{\"duration\":0,\"x\":-0.07,\"y\":0.25}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":44.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.74},{\"tweenEasing\":0,\"rotate\":10.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.32},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.21},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-25.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-3.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.65},{\"duration\":0,\"rotate\":15.67}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.93},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":5,\"x\":1.01}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.6,\"y\":7.58},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":8.29},{\"tweenEasing\":0,\"x\":3.2,\"y\":6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.67,\"y\":5.49},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.81,\"y\":4.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.99,\"y\":5.37},{\"duration\":5,\"tweenEasing\":0,\"x\":0.57,\"y\":5.79},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83,\"y\":4.7},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":3.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":2.83},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.08,\"y\":4.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.24,\"y\":6.75},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.48,\"y\":14.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":13.13},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.45,\"y\":13.55},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.61,\"y\":12.94},{\"duration\":0,\"x\":-0.52,\"y\":12.96}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-81.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":69.12},{\"tweenEasing\":0,\"rotate\":70.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.92},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.21},{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-8.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-68.19},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-62.93},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.67},{\"duration\":0,\"rotate\":-55.92}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.86,\"y\":-11.59},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.92,\"y\":-12.92},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.4,\"y\":-12.54},{\"tweenEasing\":0,\"x\":-0.47,\"y\":-9.24},{\"duration\":2,\"tweenEasing\":0,\"x\":0.23,\"y\":-7.51},{\"duration\":10,\"tweenEasing\":0,\"x\":2.02,\"y\":-4.95},{\"duration\":10,\"tweenEasing\":0,\"x\":4.02,\"y\":-5.5},{\"duration\":5,\"tweenEasing\":0,\"x\":1.57,\"y\":-6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.38,\"y\":-5.55},{\"duration\":3,\"tweenEasing\":0,\"x\":1.22,\"y\":-4.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2,\"y\":-3.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.13,\"y\":-4.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-8.87},{\"duration\":4,\"tweenEasing\":0,\"x\":2.96,\"y\":-16.32},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":-14.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.16,\"y\":-14.36},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.56,\"y\":-13.82},{\"duration\":0,\"x\":-0.59,\"y\":-13.92}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-106.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.7},{\"tweenEasing\":0,\"rotate\":16.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.43},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":5,\"tweenEasing\":0,\"rotate\":25.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-30.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.04},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.34},{\"duration\":0,\"rotate\":-19.1}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.08,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.09,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.82},{\"duration\":4,\"tweenEasing\":0,\"x\":0.72,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.18},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2},{\"duration\":0,\"x\":1.15}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.27},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.24},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.27,\"y\":-0.04},{\"duration\":0,\"x\":-0.24,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.52},{\"tweenEasing\":0,\"rotate\":-12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.93},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":40.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.81},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39.09},{\"duration\":0,\"rotate\":40.61}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.83},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83},{\"duration\":10,\"tweenEasing\":0,\"x\":0.85},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.76,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":5,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":0,\"x\":0.76,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.11,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":0.34},{\"tweenEasing\":0,\"x\":-2.98,\"y\":0.44},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.55},{\"duration\":10,\"tweenEasing\":0,\"x\":0.17,\"y\":0.4},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.44},{\"duration\":5,\"tweenEasing\":0,\"x\":0.08,\"y\":0.4},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":0.37},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.42,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.78,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.47,\"y\":-0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-3.04},{\"duration\":0,\"x\":-2.96,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-146.71},{\"tweenEasing\":0,\"rotate\":-125.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-48.42},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-26.84},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.95},{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-9.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-31.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.72},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-9.87},{\"duration\":0,\"rotate\":-12.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74},{\"duration\":3,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74,\"y\":0.99},{\"duration\":5,\"x\":0.72,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.2},{\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.25,\"y\":-0.08},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.29},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.19},{\"duration\":5,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.16},{\"duration\":0,\"x\":0.23,\"y\":-0.17}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.06},{\"tweenEasing\":0,\"rotate\":152.64},{\"duration\":2,\"tweenEasing\":0,\"rotate\":130.33},{\"duration\":10,\"tweenEasing\":0,\"rotate\":134.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":144.41},{\"duration\":5,\"tweenEasing\":0,\"rotate\":90.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":79.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":110.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.36},{\"duration\":4,\"tweenEasing\":0,\"rotate\":146.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":155.42},{\"duration\":4,\"tweenEasing\":0,\"rotate\":148.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":148.89},{\"duration\":0,\"rotate\":149.89}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.69},{\"duration\":2,\"tweenEasing\":0},{\"duration\":27,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":12,\"x\":0.97}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"tweenEasing\":0,\"x\":0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":0.16,\"y\":0.05},{\"duration\":10,\"tweenEasing\":0,\"x\":0.09,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.21,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.11},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.02,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.04,\"y\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.37,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.01},{\"duration\":0,\"x\":-0.01,\"y\":0.04}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":3.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.47},{\"tweenEasing\":0,\"rotate\":59.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.85},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.64},{\"duration\":10,\"tweenEasing\":0,\"rotate\":35.73},{\"duration\":5,\"tweenEasing\":0,\"rotate\":26.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.02},{\"duration\":4,\"tweenEasing\":0,\"rotate\":51.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":4,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.06},{\"duration\":0,\"rotate\":-0.06}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.91},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.82},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.75},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.75},{\"duration\":4,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":5,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0,\"x\":1.01,\"y\":1.02}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":23,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":16,\"x\":0.01}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":4.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.51},{\"tweenEasing\":0,\"rotate\":9.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.71},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.52},{\"duration\":10,\"tweenEasing\":0,\"rotate\":25.31},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.24},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.56},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-52.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-81.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-80.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-79.97},{\"duration\":0,\"rotate\":-80.88}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":16,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":93.01},{\"tweenEasing\":0,\"rotate\":105.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":104.02},{\"duration\":27,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":155.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":159.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-179.75},{\"duration\":12,\"rotate\":-159.98}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-9.14,\"y\":0.61},{\"duration\":4,\"tweenEasing\":0,\"x\":-16.58,\"y\":-0.55},{\"duration\":2,\"tweenEasing\":0,\"x\":-16.78,\"y\":-1.59},{\"duration\":10,\"tweenEasing\":0,\"x\":-15.62,\"y\":-0.25},{\"duration\":10,\"tweenEasing\":0,\"x\":-16.44,\"y\":0.69},{\"duration\":5,\"tweenEasing\":0,\"x\":-13.75,\"y\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-5.66,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.27,\"y\":6.86},{\"duration\":5,\"tweenEasing\":0,\"x\":0.44,\"y\":7.93},{\"duration\":16,\"tweenEasing\":0,\"x\":3.54,\"y\":12.17},{\"duration\":0,\"x\":4.14,\"y\":13.02}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.35,\"y\":-2.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":-3.94},{\"tweenEasing\":0,\"x\":0.86,\"y\":-2.65},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-2.48},{\"duration\":10,\"tweenEasing\":0,\"x\":1.27,\"y\":-2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.19,\"y\":-2.51},{\"duration\":5,\"tweenEasing\":0,\"x\":1.51,\"y\":-3.51},{\"duration\":2,\"tweenEasing\":0,\"x\":1.57,\"y\":-3.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.55,\"y\":-2.85},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":-1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.09,\"y\":-2.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.79,\"y\":-4.22},{\"duration\":4,\"tweenEasing\":0,\"x\":2.11,\"y\":-4.38},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93,\"y\":-4.52},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04,\"y\":-4.38},{\"duration\":5,\"tweenEasing\":0,\"x\":1.3,\"y\":-4.05},{\"duration\":0,\"x\":1.36,\"y\":-3.69}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.61},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-48.38},{\"tweenEasing\":0,\"rotate\":-43.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-43.35},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.15},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-64.69},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-29.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":4,\"tweenEasing\":0,\"rotate\":71.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":61.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":63.96},{\"duration\":5,\"tweenEasing\":0,\"rotate\":67.22},{\"duration\":0,\"rotate\":63.46}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":16,\"x\":1.02,\"y\":0.99}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.35,\"y\":2.85},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.32,\"y\":4.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":3.87},{\"tweenEasing\":0,\"x\":-1.17,\"y\":3.12},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":2.45},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.24,\"y\":1.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.16,\"y\":2.48},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.47,\"y\":3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.54,\"y\":3.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.52,\"y\":2.82},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":1.35},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":2.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":3.82},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.08,\"y\":4.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.18,\"y\":3.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.69,\"y\":3.67},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.67,\"y\":3.66},{\"duration\":0,\"x\":-1.32,\"y\":3.62}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-23.85},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.78},{\"tweenEasing\":0,\"rotate\":12.3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.07},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":32.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":36.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.37},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":87.74},{\"duration\":3,\"tweenEasing\":0,\"rotate\":100.55},{\"duration\":4,\"tweenEasing\":0,\"rotate\":114.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":118.87},{\"duration\":4,\"tweenEasing\":0,\"rotate\":120.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":117.35},{\"duration\":0,\"rotate\":116.86}],\"scaleFrame\":[{\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.77,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9},{\"duration\":5,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.92,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":0,\"x\":0.79,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.06},{\"duration\":0,\"x\":0.02,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":45.37},{\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":30.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":51.13},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":57.91},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":63.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":50.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.56},{\"duration\":4,\"tweenEasing\":0,\"rotate\":15.28},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.01},{\"duration\":0,\"rotate\":16.53}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02},{\"duration\":10,\"tweenEasing\":0,\"x\":1.03},{\"duration\":5,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.05}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":10,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.12},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.08},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.05},{\"duration\":0,\"x\":-0.05,\"y\":-0.06}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":41.36},{\"duration\":5,\"tweenEasing\":0,\"rotate\":16.91},{\"duration\":3,\"tweenEasing\":0,\"rotate\":40.79},{\"tweenEasing\":0,\"rotate\":14.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":5,\"tweenEasing\":0,\"rotate\":8.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":16.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":10.27},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":0,\"rotate\":-6.69}],\"scaleFrame\":[{\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":5,\"x\":1.03}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.03},{\"duration\":0,\"x\":-0.22,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.76},{\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.03},{\"duration\":10,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":10,\"tweenEasing\":0,\"rotate\":0.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":65.14},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":53.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":38.58},{\"duration\":5,\"tweenEasing\":0,\"rotate\":35.06},{\"duration\":0,\"rotate\":35.57}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.92},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":0,\"y\":0.99}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":1.51,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":1.38,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.19},{\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.44,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.41,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.39,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-0.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.12},{\"duration\":0,\"x\":1.38,\"y\":-0.1}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-17.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-34.03},{\"tweenEasing\":0,\"rotate\":-27.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-40.34},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-40.58},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":13.13},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.29},{\"duration\":0,\"rotate\":2.29}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":5,\"x\":1.03,\"y\":0.99}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk1\",\"frame\":[{\"duration\":4},{\"duration\":0,\"sound\":\"200025\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.29,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.2,\"y\":-0.1}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.75},{\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.3},{\"duration\":0,\"rotate\":17.78}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.96}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.16,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.29,\"y\":0.58},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.68},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.59},{\"duration\":0,\"x\":-0.23,\"y\":0.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.96},{\"tweenEasing\":0,\"rotate\":7.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.45},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":1.89}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.89,\"y\":0.04},{\"tweenEasing\":0,\"x\":1.32,\"y\":1.4},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":4.43},{\"duration\":4,\"x\":-0.3,\"y\":4.43},{\"duration\":0,\"x\":1.2,\"y\":6.31}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-129.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":167.8},{\"tweenEasing\":0,\"rotate\":176.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-74.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-60.7},{\"duration\":0,\"rotate\":-54.25}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.34},{\"tweenEasing\":0,\"x\":-1.39,\"y\":-5.16},{\"duration\":2,\"tweenEasing\":0,\"x\":4.2,\"y\":-17.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.45,\"y\":-17.67},{\"duration\":4,\"x\":3.47,\"y\":-17.23},{\"duration\":0,\"x\":3.77,\"y\":-12.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-48.37},{\"tweenEasing\":0,\"rotate\":1.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.04},{\"duration\":0,\"rotate\":13.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.99},{\"tweenEasing\":0,\"x\":0.67},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.06},{\"duration\":4,\"tweenEasing\":0,\"x\":1.06},{\"duration\":0,\"x\":1.04}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.16},{\"tweenEasing\":0,\"x\":0.24,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.64,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.04},{\"duration\":0,\"x\":0.32,\"y\":1.15}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.19},{\"tweenEasing\":0,\"rotate\":-34.07},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":0,\"rotate\":1.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.78,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.13,\"y\":1.01},{\"duration\":0,\"x\":1.15,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.88,\"y\":0.13},{\"tweenEasing\":0,\"x\":1.07,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":1.16,\"y\":0.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.08,\"y\":0.23},{\"duration\":0,\"x\":0.2,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.78},{\"tweenEasing\":0,\"rotate\":-15.8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.66},{\"duration\":4,\"tweenEasing\":0,\"rotate\":14.63},{\"duration\":0,\"rotate\":2.97}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0,\"x\":1.02}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.19,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":0,\"x\":-0.55,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.75},{\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":76.22},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":41.93},{\"duration\":0,\"rotate\":38.08}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.17},{\"tweenEasing\":0,\"x\":-0.1,\"y\":0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.59,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.74,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.7,\"y\":-0.17},{\"duration\":0,\"x\":-3,\"y\":-0.12}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-2.57},{\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.64},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":0,\"rotate\":14.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"y\":0.96},{\"tweenEasing\":0,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.07,\"y\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":1.05},{\"duration\":0,\"x\":1.02,\"y\":1.03}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":0,\"x\":0.01,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.1},{\"tweenEasing\":0,\"rotate\":32.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-13.06},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-13.08},{\"duration\":0,\"rotate\":-8.52}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-96.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-156.22},{\"tweenEasing\":0,\"clockwise\":1,\"rotate\":-179.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":38.81},{\"duration\":2,\"tweenEasing\":0,\"rotate\":39.31},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.29},{\"duration\":0,\"rotate\":15.52}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"x\":23.95,\"y\":-15.22},{\"x\":40.96,\"y\":-23.57}],\"rotateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"rotate\":-9.42},{\"rotate\":-15.64}],\"scaleFrame\":[{\"duration\":11},{\"tweenEasing\":0,\"x\":1.21,\"y\":1.22},{\"tweenEasing\":0},{\"x\":0.7,\"y\":0.7}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":3.76,\"y\":-0.07},{\"tweenEasing\":0,\"x\":1.45,\"y\":3.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.54,\"y\":4.31},{\"duration\":4,\"tweenEasing\":0,\"x\":1,\"y\":4.59},{\"duration\":0,\"x\":0.67,\"y\":3.07}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.14,\"y\":0.38},{\"tweenEasing\":0,\"x\":1.11,\"y\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":2.01,\"y\":-7.84},{\"duration\":2,\"tweenEasing\":0,\"x\":2.72,\"y\":-8.01},{\"duration\":4,\"tweenEasing\":0,\"x\":2.67,\"y\":-7.55},{\"duration\":0,\"x\":1.77,\"y\":-5.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":4.5},{\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.32},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.56},{\"duration\":0,\"rotate\":17.58}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.14,\"y\":-0.41},{\"tweenEasing\":0,\"x\":-1.09,\"y\":3.38},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.98,\"y\":7.68},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.11,\"y\":7.9},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.64,\"y\":7.4},{\"duration\":0,\"x\":-1.77,\"y\":4.93}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":15.06},{\"tweenEasing\":0,\"rotate\":-33.12},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-7.03},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"x\":0.98,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.07,\"y\":-1.21}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.3},{\"tweenEasing\":0,\"rotate\":39.9},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.62},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":0,\"rotate\":25.1}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.01},{\"duration\":0,\"x\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.94},{\"tweenEasing\":0,\"rotate\":32.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-32.1},{\"duration\":0,\"rotate\":-21.33}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"tweenEasing\":0,\"x\":0.93},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21},{\"duration\":0,\"x\":1.14}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":0,\"x\":-0.27,\"y\":0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-4.04},{\"tweenEasing\":0,\"rotate\":-35.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-52.7},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-54.2},{\"duration\":0,\"rotate\":-43.45}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":1.01},{\"duration\":8}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.07,\"y\":0.02},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.06},{\"duration\":0,\"x\":-0.42,\"y\":-0.31}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-21.05},{\"tweenEasing\":0,\"rotate\":0.19},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.26},{\"duration\":0,\"rotate\":26.17}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":8}],\"colorFrame\":[{\"duration\":6},{\"duration\":5},{\"value\":{\"aM\":62}},{\"value\":{\"aM\":23}},{\"value\":{\"aM\":6}}]}]},{\"duration\":48,\"fadeInTime\":0.2,\"name\":\"Atk3\",\"frame\":[{\"duration\":33},{\"sound\":\"200029\"},{\"duration\":0,\"events\":[{\"name\":\"onTimeStart\"}]}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":35,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.14},{\"duration\":3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.05},{\"duration\":31,\"tweenEasing\":0,\"rotate\":7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.8},{\"duration\":4,\"tweenEasing\":0,\"rotate\":49.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.81},{\"duration\":0,\"rotate\":12.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.08},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":1.07},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.28,\"y\":-0.38},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.8,\"y\":-1.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.88,\"y\":-2.45},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":-2.06},{\"duration\":0,\"x\":-0.14,\"y\":-1.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.69},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.72},{\"duration\":4,\"tweenEasing\":0,\"rotate\":23.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":30.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.58},{\"duration\":0,\"rotate\":11.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-2.16,\"y\":6.54},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.78,\"y\":6.22},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.47,\"y\":6.73},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.62,\"y\":7.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.24,\"y\":11.37},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.25,\"y\":11.5},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.43,\"y\":10.87},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.26,\"y\":7.59},{\"duration\":0,\"x\":-0.88,\"y\":6.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-32.21},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.21},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-56.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-179.92},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-100.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-102.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-113.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-70.65},{\"duration\":0,\"rotate\":-31.81}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":4.9,\"y\":-9.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.89,\"y\":-7.56},{\"duration\":29,\"tweenEasing\":0,\"x\":2.64,\"y\":-7.28},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-7.87},{\"duration\":2,\"tweenEasing\":0,\"x\":4.56,\"y\":-11.44},{\"duration\":4,\"tweenEasing\":0,\"x\":3.7,\"y\":-11.38},{\"duration\":3,\"tweenEasing\":0,\"x\":4.77,\"y\":-11.2},{\"duration\":3,\"tweenEasing\":0,\"x\":4.44,\"y\":-9.48},{\"duration\":0,\"x\":2.47,\"y\":-6.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.16},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-40.37},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-126.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-54.13},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-59.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":0,\"rotate\":-21.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0,\"x\":0.99}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.81},{\"duration\":29,\"tweenEasing\":0,\"x\":0.79,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":-0.19},{\"duration\":2,\"tweenEasing\":0,\"x\":0.75,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.71,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.71,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":-0.01},{\"duration\":0,\"x\":0.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.37},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-31.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-41.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.65},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-42.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-37.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.03},{\"duration\":0,\"rotate\":-2.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":0.85,\"y\":0.22},{\"duration\":29,\"tweenEasing\":0,\"x\":0.25,\"y\":0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.33,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.22,\"y\":0.18},{\"duration\":4,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.21},{\"duration\":0,\"x\":1.03,\"y\":0.18}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-33.15},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-45.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.95},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.3},{\"duration\":0,\"rotate\":-9.52}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":0,\"x\":1.02,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.24},{\"duration\":29,\"tweenEasing\":0,\"x\":0.37,\"y\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.2,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.02},{\"duration\":0,\"x\":0.09,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.07},{\"duration\":29,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-6.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":44.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":46.12},{\"duration\":0,\"rotate\":34.82}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.19},{\"duration\":29,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.14},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.11},{\"duration\":0,\"y\":0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":11.13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.81},{\"duration\":29,\"tweenEasing\":0,\"rotate\":13.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":51.14},{\"duration\":4,\"tweenEasing\":0,\"rotate\":57.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.57},{\"duration\":0,\"rotate\":19.81}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.93},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.11,\"y\":1.34},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.98},{\"duration\":0,\"x\":1.01,\"y\":0.99}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":29,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.01,\"y\":0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.03},{\"duration\":29,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.9},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":0,\"rotate\":9.1}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":29,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":0,\"y\":0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-28.61},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-69.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":176.49},{\"duration\":2,\"tweenEasing\":0,\"rotate\":21.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":0,\"rotate\":32.29}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":5,\"x\":-26.3,\"y\":-41.21},{\"duration\":28,\"tweenEasing\":0,\"x\":-26.3,\"y\":-41.21},{\"duration\":3,\"x\":-26.78,\"y\":-51.93},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.03,\"y\":1.03},{\"duration\":3,\"x\":-1.03,\"y\":1.03},{\"tweenEasing\":0,\"x\":10.17,\"y\":6.63},{\"duration\":4,\"x\":30.97,\"y\":5.03}],\"rotateFrame\":[{\"duration\":33,\"rotate\":35.08},{\"duration\":3,\"rotate\":35.08},{\"duration\":12,\"rotate\":7.52}],\"scaleFrame\":[{\"duration\":33,\"x\":0.18,\"y\":0.16},{\"duration\":3,\"x\":0.18,\"y\":0.16},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21,\"y\":1.09},{\"duration\":2,\"x\":1.68,\"y\":1.51},{\"tweenEasing\":0,\"x\":1.87,\"y\":1.68},{\"tweenEasing\":0,\"x\":1.63,\"y\":1.47},{\"duration\":4,\"x\":0.93,\"y\":0.84}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":5.91},{\"duration\":31,\"tweenEasing\":0,\"x\":6.06,\"y\":-12.9},{\"duration\":2,\"tweenEasing\":0,\"x\":7.94,\"y\":-22.23},{\"duration\":2,\"tweenEasing\":0,\"x\":2.9,\"y\":6.9},{\"duration\":7,\"tweenEasing\":0,\"x\":2.76,\"y\":6.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2.3,\"y\":6.53},{\"duration\":0,\"x\":1.15,\"y\":3.27}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-2.17},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.6,\"y\":-2.49},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":-3.43},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":-3.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":2.54,\"y\":-3.36},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":-3.47},{\"duration\":0,\"x\":-0.89,\"y\":-1.82}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-63.19},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-33.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.01},{\"duration\":0,\"rotate\":5.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":0,\"x\":0.92}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.74,\"y\":2.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":2.43},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.05,\"y\":1.09},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.33,\"y\":3.36},{\"duration\":2,\"tweenEasing\":0,\"x\":-1,\"y\":3.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.98,\"y\":3.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.2,\"y\":3.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.93,\"y\":3.4},{\"duration\":0,\"x\":-0.48,\"y\":1.71}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.89},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-63.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-39.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-63.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-78.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-66.92},{\"duration\":0,\"rotate\":-33.58}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":31,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":0,\"x\":0.01,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":97.06},{\"duration\":31,\"tweenEasing\":0,\"rotate\":81.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":11.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.17},{\"duration\":4,\"tweenEasing\":0,\"rotate\":56.18},{\"duration\":3,\"tweenEasing\":0,\"rotate\":65.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":0,\"rotate\":13.54}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":0,\"x\":0.95,\"y\":0.99}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":29,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.1},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":0,\"x\":-0.95}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.87},{\"duration\":29,\"tweenEasing\":0,\"rotate\":103.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":56.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":68.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":69.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":82.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.17},{\"duration\":0,\"rotate\":35.8}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":29,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.81},{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.02},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.03,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":31,\"tweenEasing\":0,\"rotate\":13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":43.62},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.95},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-51.69},{\"duration\":0,\"rotate\":-17.16}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":12}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.08},{\"duration\":29,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.76,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.6,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.58,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.72,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.83},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.27},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-20.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.97},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.42},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.63},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.23},{\"duration\":0,\"rotate\":-2.27}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect_r\",\"colorFrame\":[{\"duration\":34,\"value\":{\"aM\":0}},{\"duration\":2,\"value\":{\"aM\":0}},{\"duration\":5},{},{\"value\":{\"aM\":44}},{\"duration\":2,\"value\":{\"aM\":10}},{\"duration\":3,\"value\":{\"aM\":6}}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk2\",\"frame\":[{\"duration\":5},{\"duration\":0,\"sound\":\"200026\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"duration\":7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-0.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.11,\"y\":0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.33},{\"duration\":0,\"x\":-0.1,\"y\":0.27}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":-1.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.49},{\"duration\":0,\"rotate\":-0.3}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94},{\"duration\":0,\"x\":0.96}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":-0.76},{\"tweenEasing\":0,\"x\":0.16,\"y\":-0.38},{\"tweenEasing\":0,\"x\":-0.99,\"y\":5.26},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.51,\"y\":17.06},{\"duration\":0,\"x\":-0.41,\"y\":16.28}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":44.91},{\"tweenEasing\":0,\"rotate\":45.66},{\"tweenEasing\":0,\"rotate\":61.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-91.96},{\"duration\":0,\"rotate\":-79.76}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.35,\"y\":-0.86},{\"tweenEasing\":0,\"x\":0.45,\"y\":-0.79},{\"tweenEasing\":0,\"x\":1.88,\"y\":-6.43},{\"duration\":7,\"tweenEasing\":0,\"x\":3.48,\"y\":-19.49},{\"duration\":0,\"x\":3.13,\"y\":-18.3}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.79},{\"tweenEasing\":0,\"rotate\":-18.04},{\"tweenEasing\":0,\"rotate\":23.73},{\"duration\":7,\"tweenEasing\":0,\"rotate\":44.71},{\"duration\":0,\"rotate\":42.09}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.96},{\"duration\":7,\"tweenEasing\":0,\"x\":1.05},{\"duration\":0,\"x\":1.02}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.8},{\"tweenEasing\":0,\"x\":0.77,\"y\":0.01},{\"tweenEasing\":0,\"x\":0.74,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.07},{\"duration\":0,\"x\":0.69,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.8},{\"tweenEasing\":0,\"rotate\":-8.57},{\"tweenEasing\":0,\"rotate\":-24.34},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.82},{\"duration\":0,\"rotate\":-26.6}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.93,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":1.01},{\"duration\":0,\"x\":0.85,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"tweenEasing\":0,\"x\":0.18,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.92,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.22},{\"duration\":0,\"x\":1.24,\"y\":0.19}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.9},{\"tweenEasing\":0,\"rotate\":-10.41},{\"tweenEasing\":0,\"rotate\":-62.21},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":0,\"rotate\":2.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03},{\"tweenEasing\":0,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.1,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.19,\"y\":-0.08},{\"duration\":0,\"x\":0.16,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.03},{\"tweenEasing\":0,\"rotate\":-22.3},{\"tweenEasing\":0,\"rotate\":3.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":95.26},{\"duration\":0,\"rotate\":83.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"tweenEasing\":0,\"x\":0.02,\"y\":0.08},{\"tweenEasing\":0,\"x\":0.06,\"y\":0.16},{\"duration\":7,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.05},{\"duration\":0,\"x\":0.26,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.5},{\"tweenEasing\":0,\"rotate\":-2.27},{\"tweenEasing\":0,\"rotate\":-12.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-20.48},{\"duration\":0,\"rotate\":-23.94}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.03},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":0,\"x\":0.96,\"y\":0.81}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":7,\"x\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.43},{\"tweenEasing\":0,\"rotate\":14.56},{\"tweenEasing\":0,\"rotate\":26.23},{\"duration\":7,\"tweenEasing\":0,\"rotate\":23.18},{\"duration\":0,\"rotate\":32.77}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":-0.01},{\"tweenEasing\":0},{\"duration\":7,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":19.53},{\"tweenEasing\":0,\"rotate\":26.53},{\"tweenEasing\":0,\"rotate\":13.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.02},{\"duration\":0,\"rotate\":17.77}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":7,\"x\":-0.86,\"y\":3.5}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.97,\"y\":-2.63},{\"duration\":7,\"tweenEasing\":0,\"x\":1.17,\"y\":-5.6},{\"duration\":0,\"x\":0.74,\"y\":-4.76}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":12.27},{\"duration\":0,\"rotate\":7.26}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0},{\"duration\":7,\"x\":1.02}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.9,\"y\":2.62},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.52},{\"duration\":0,\"x\":-0.73,\"y\":4.7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-26.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":0,\"rotate\":-31.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"x\":0.05,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":40.63},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.65},{\"duration\":0,\"rotate\":29.9}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":17.59},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-32.13},{\"duration\":0,\"rotate\":6.8}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.89},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.03},{\"duration\":0,\"x\":-0.17,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-32.38},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-39.91},{\"duration\":0,\"rotate\":-37.15}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.05},{\"duration\":0,\"x\":1.51,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":8.43},{\"duration\":7,\"tweenEasing\":0,\"rotate\":40.37},{\"duration\":0,\"rotate\":24.52}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":14,\"value\":-1}]}]},{\"duration\":28,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle2\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.64},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.97},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.31},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.32},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.34},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.07},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.34},{\"duration\":11,\"tweenEasing\":0,\"rotate\":7.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":6,\"tweenEasing\":0,\"rotate\":5.79},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.25},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":12}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.43,\"y\":-0.55},{\"duration\":11,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":6,\"tweenEasing\":0,\"x\":1.35,\"y\":0.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.54,\"y\":0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.66},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-102.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.58},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.96,\"y\":-0.15},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":6,\"tweenEasing\":0,\"x\":0.08,\"y\":-1.12},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.65},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-24.49},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-7.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.69},{\"duration\":6,\"tweenEasing\":0,\"rotate\":19.28},{\"duration\":6,\"tweenEasing\":0,\"rotate\":9.77},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.91},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.06},{\"duration\":11,\"tweenEasing\":0,\"x\":0.01,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.94},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.33},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-14.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.3},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":0.92},{\"duration\":6,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.05},{\"duration\":11,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":1.11,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.84},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.12},{\"duration\":11,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.29},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.04},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.18},{\"duration\":6,\"tweenEasing\":0,\"x\":0.09,\"y\":0.19},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.23},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.42},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":6}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.56},{\"duration\":11,\"tweenEasing\":0,\"rotate\":35.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":34.46},{\"duration\":6,\"tweenEasing\":0,\"rotate\":35.98},{\"duration\":6,\"tweenEasing\":0,\"rotate\":26.72},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.47},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":3.92,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":72.69},{\"tweenEasing\":0,\"rotate\":-95.52},{\"tweenEasing\":0,\"rotate\":-151.72},{\"tweenEasing\":0,\"rotate\":124.8},{\"tweenEasing\":0,\"rotate\":63.15},{\"tweenEasing\":0,\"rotate\":5.26},{\"tweenEasing\":0,\"rotate\":-57.46},{\"tweenEasing\":0,\"rotate\":-116.85},{\"tweenEasing\":0,\"rotate\":-174.24},{\"tweenEasing\":0,\"rotate\":123.54},{\"tweenEasing\":0,\"rotate\":64.15},{\"tweenEasing\":0,\"rotate\":6.51},{\"tweenEasing\":0,\"rotate\":-55.46},{\"tweenEasing\":0,\"rotate\":-104.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-96.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-55.71},{\"duration\":0}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.78,\"y\":2.3},{\"duration\":11,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":2,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":0.33,\"y\":1.37},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":0.69},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.24},{\"duration\":11,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.54},{\"duration\":6,\"tweenEasing\":0,\"x\":0.56,\"y\":-0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-22.27},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":2.75},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.93},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.23},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.74,\"y\":0.62},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.77,\"y\":0.62},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.72,\"y\":0.49},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.24,\"y\":0.33},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.58},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.03},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":11,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":33.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.02},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.06},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.59},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.9},{\"duration\":11,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-10.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.2},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-15.55},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.53},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.08},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.73},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.26},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":28,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json new file mode 100644 index 0000000..000fccb --- /dev/null +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json @@ -0,0 +1 @@ +{"width":128,"imagePath":"SoldierElf_tex.png","height":128,"name":"SoldierElf","SubTexture":[{"frameHeight":45,"y":1,"frameX":0,"width":34,"frameY":0,"height":44,"name":"cape","frameWidth":34,"x":70},{"width":10,"y":107,"height":14,"name":"shouder_l","x":74},{"width":11,"y":107,"height":14,"name":"forearm_l","x":61},{"width":15,"y":93,"height":16,"name":"hand_l","x":1},{"width":30,"y":61,"height":30,"name":"weapon_hand_l","x":1},{"width":8,"y":101,"height":11,"name":"thigh_l","x":86},{"width":12,"y":93,"height":17,"name":"calf_l","x":18},{"width":20,"y":113,"height":8,"name":"foot_l","x":39},{"width":28,"y":61,"height":31,"name":"pelvis","x":33},{"width":8,"y":88,"height":11,"name":"thigh_r","x":77},{"width":12,"y":88,"height":17,"name":"calf_r","x":63},{"width":20,"y":113,"height":8,"name":"foot_r","x":17},{"width":13,"y":94,"height":12,"name":"shouder_r","x":45},{"width":67,"y":1,"height":58,"name":"chest","x":1},{"width":11,"y":94,"height":17,"name":"forearm_r","x":32},{"width":14,"y":111,"height":13,"name":"hand_r","x":1},{"frameHeight":39,"y":47,"frameX":-2,"width":34,"frameY":0,"height":39,"name":"we_bl_4_f_1","frameWidth":36,"x":70}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta new file mode 100644 index 0000000..c591815 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta @@ -0,0 +1,7 @@ +{ + "ver": "1.0.0", + "uuid": "24d7bb8f-577c-4e5d-b730-56613ca8685d", + "atlasJson": "{\"width\":128,\"imagePath\":\"SoldierElf_tex.png\",\"height\":128,\"name\":\"SoldierElf\",\"SubTexture\":[{\"frameHeight\":45,\"y\":1,\"frameX\":0,\"width\":34,\"frameY\":0,\"height\":44,\"name\":\"cape\",\"frameWidth\":34,\"x\":70},{\"width\":10,\"y\":107,\"height\":14,\"name\":\"shouder_l\",\"x\":74},{\"width\":11,\"y\":107,\"height\":14,\"name\":\"forearm_l\",\"x\":61},{\"width\":15,\"y\":93,\"height\":16,\"name\":\"hand_l\",\"x\":1},{\"width\":30,\"y\":61,\"height\":30,\"name\":\"weapon_hand_l\",\"x\":1},{\"width\":8,\"y\":101,\"height\":11,\"name\":\"thigh_l\",\"x\":86},{\"width\":12,\"y\":93,\"height\":17,\"name\":\"calf_l\",\"x\":18},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_l\",\"x\":39},{\"width\":28,\"y\":61,\"height\":31,\"name\":\"pelvis\",\"x\":33},{\"width\":8,\"y\":88,\"height\":11,\"name\":\"thigh_r\",\"x\":77},{\"width\":12,\"y\":88,\"height\":17,\"name\":\"calf_r\",\"x\":63},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_r\",\"x\":17},{\"width\":13,\"y\":94,\"height\":12,\"name\":\"shouder_r\",\"x\":45},{\"width\":67,\"y\":1,\"height\":58,\"name\":\"chest\",\"x\":1},{\"width\":11,\"y\":94,\"height\":17,\"name\":\"forearm_r\",\"x\":32},{\"width\":14,\"y\":111,\"height\":13,\"name\":\"hand_r\",\"x\":1},{\"frameHeight\":39,\"y\":47,\"frameX\":-2,\"width\":34,\"frameY\":0,\"height\":39,\"name\":\"we_bl_4_f_1\",\"frameWidth\":36,\"x\":70}]}", + "texture": "050fb016-1a1f-4341-8367-283bfeddc4a8", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png new file mode 100644 index 0000000000000000000000000000000000000000..2d2cceeaf15e38e794a3d5aef8ff738056c7a5b6 GIT binary patch literal 7280 zcmV-$9FOCPP)rd$F4v6~iWXMc4;iwH`WJmlmVkJPEtqmSKoN%s5aGD4l&JAjhPB?Fd0M6mMAFCCaIJ$uh2F%CU_*4^{wO`SDpZEkw;@r^MA;4fU#$kwg;`!yoL zpxZLE^&Nfw9y0+S00p#w_wv%a4{zlm?*%vfS&|G8<0IEC${-8n%CcCAZ_zKMZ2Hx| zy)09|am{r%5eN8-4{bzAe9|8X+CSuj(=P=Sz$yd38!|u?m5-!8k)avbd!9uAgUAlh@d;!vq zY!`H&U*_HdZ{zq1YLA@5s(S|l8sN{Izum7|^MAM&h@_`RJNh|!|3>!i>5Wn4-D)Iz z_<(PfDl8@N^Bbj7Wd0MDK;emBbBbSB7lqT>3L)x;Hh*y*RFG@{r>3qh0zbVe$)f5 zoImaZIs`x}Q2)Sy>PJPIN2SO-DaS1DJ^*ww`fYiXkpj6a&6c75RMi!`f66;|mtEd3 zz?Fsse2sp^MF1rAANkQ)huddr5tp*80#k7dKiIN zvQrQM`Skr7H}L$)`;WZr!50aZFM7)o;5V_Aed1;NT-#~A1AVU7;HP#61v;Q8j86r7S4 zV8xYB*Hyu{>wT3`b$TE_qme##qr6ye0GBzRk!}G`#YKV>7H;1H9};xahMqsmn=UAZ zrIQq!k|}eX%BM6x`jsx30-k#sxyUN351T(PPPuwHr4t3>_^I6h$dWGwcq%PLf==4d zmuHT;Xpd!pkK)w9lq^zgDnDr&;dVP$dCS08J}Xt8O(UMyHk(d92;7MUz>)KH#_OgN zm;&9Wc@p#m%ytXqB?}aiGOf15R*^QYdD!N)@pg6!DJ#{E)C$6vYul6;SG(FJKpyz2 z#{*q-ZAs8BRz1(pp$W<;15q7KNh!4-QlmXjs!pbeRNH)-$kh%3m>N}&mA>pMzJQ3) zBEde5mwFCr)dEoh!FI~WQJC+jy_Q1#bKP8fpCJW)C!=5OrfuyIAk`O@<>mVhe`l#f z=t;mCLRHLqmahnWKrI7a9ZxBzo3s?zKFyc^>iUuFN8f)}AyL&{B+pkRfUk>dTb7UG z7~*6K&0rYg_i0@7XWQvPPDz-W;m7 zn=+~p;FK%({gJJYc-5(fwiJP{dzuQ6x7>2e!YbJHERSB|6d90ZN@NYKJYG575F!P( zP4g>=XI`2b!DsY~04s0ZtJOBOF(pL+j(v-i>HEiZs=T5!*8KuIPg)WbwWsg*v>LF4 z@Nsq4uFJIvQ|3sf6iQmzobR8Dqdts$ECB6! z?`|XxVtkn~rEIbN};KB@d}rNBqB!k})Je{T_B-nHLji7;MzCGXoT-j?v)n`ReqY}! zoof$1U=akom85HVTGa|rhbO?HvZt9E84aKSTIij)i0?&_hR%j<&@p>X}JF9})5&$L9cqyhI($DuPXDC2PB69ACq z+$t{)um?YN4M~ol;6nlnhK;8Pz}NNMe!zfxei+UJ}60_n3Zx|HMDM1tK5;Y7q%E z>hHUD{Bt}j5-=5TpE?94_x({Zs~ht8(aJNmTC4jG^x_)D;7x0u_7Wxew7hFO-)nQ{ zg7bHbOEiG70RpW5@g@0IVC@a#M!tRanICKh9`Fg&ArfedScDMBDFU!$V@cNwJ=V4i zDJ})7Hc3+VY?^oWw7CN~fMtV#jAlLI@!M&@ntqmgwjAPe3bi88IRSN4AwX?G>s7<; z>7NBuaVgPno$5X^zN=?EeF#P1dwT#>@ZeP?z*GM?oi zp=8wOlA`&%EmQGWZm1gqFhxK}RyG8{*Iq&12-S!O_;v5ye%bmXr+o5_Q+K%i&E-=c z7=7rtAHMm6qi@)7`JY}B!x?Y;#)c5yIBv?7uYKShXObUsynNa2i$w@X)SMpjsvM4V z6qT|9d1PSZulnzu<5x3!HhW@4Mi2?c{^O`I02%w|1I9MI{z`NPy9QsRF(jgFTNlL9 z6rfSBkxyH5G~OEZfER%czytp1J%>Lr`tQd-AH$mS9((iAvmYUievN*9*VjisJoOhb zUyvJ4c>8q_LS*>gug{&2MW}@}&_^PSl04vTI$OLrex!L4K!muqhZF(}GC+zZQM#64 zim_!=p91Y+DJTMPo!SBx88q@4@r-6h`fJxNIR-QThX>F2lnq#d(Le;`hOaMJiFMd` z^Ncb2HhRtuPj6hY!$t@}S-(GT*JH5=ObumUC8;eFE(N9qJ1@>oo4(f3a}oFteJ{%t zdIfkO|D-v)jCP4GRx9Qq))iYg>?jo=Y?y3F?CSL<>M9v;kUVPJJ z$7LUJSqSb!f-Q*f+$VlK`ohIyV;lb}8~fXxvX%^lz(QCOG|N`~!!4yyy>MYc&x`9B zYn}%YSG@v1b?D=@Eno$5xDV*5zZMxFfvkZi!ur2H@KUV7*ncgJB#2XkApz3?&(w+p zG*-&B5;My@n<9tur8L=Y8Xt5rf2&L+ev0OI0j~5YtN-&UZSJ(wtk(Vj|3FGpf~EyX zfHN3LFm`Elf*}HFIER{6+Np48^71y#N$;O~1}BI5sTm85kN2bD{8oQa-EG#HH{vT5 z!{D$aV1(lvKmtsEoDP0>ZZ;Oe#?MV1lVb>JYGnl~X=8#i=^O*{O;8gWObfCEkO1$W zy#khrkp$13mSGWCGU5+tDwwGDPS)E84OkLj1ztaK=Z}oCGQcTpI)+RI>=QtcNh{C? z5GJ}vNFZMT0>nLnVEQ3IbO?h_z+Qo@0Qo1n&3&o=*=L{qp0;PJR)BxOf8RKD{`{;g z96NjVnv%7B)oOd54=+DX0b!dMli#ucSb;zQ`2y@akhkXzn8*SF{lynwjDhocwrPvn zbMC^0>&n2ca{rtK3!X2kXMp$Oz5>o3BYkxF+g<_i775rV2+Kk?h%^m^wsqx*4zO?e zRaxL60N@jf{?G1(OO}+5^eW(!=d1+>W<&D7dqy}&VxEuShaJIj1YlXnG!S+PnFg3H zYP}lZXU;U@C7*oq$p}8zDa!Cq7yw@Z@Tvlx%6Gxy@SjDS^Vim0UT!m zn&3xAu+9V!;8uF@Sp}q&jMFy=0#HY){sE-LlSK%?)^BSX2!Lz!M;T5GwG^z?6ktJD z+=I_`k)kotpIy3ioEf+Ccqatm7q}?nQ}20CHi0XGIRA5;{Kovo7voDJtO9~Bz*cZP zA!HR0rh?Hs4|={URm80wwC)EXc2pECPZO}|KB3BcDzA^}qYfp-i@V{T`PAOJG2 zsWTPmBNo#1Bi8&9*+ddR=3kCq1Rn4;`jKHf80S#tpCzMoGE}mik>4)(bkq|--ydi? zfCP4AYlQQyg5v%&wTUFaxV1k{UvsV>2fleHfOCMgL;Oy_h;{T7$HW7+51laA6F^@f z0V*Uoc+sM02>@I7%H#wR;H~Z7u*KT~9}<|+&uO6E4>a!s44(riz^&{h_$dqE!L=k{ zD)9GH*AqnmMt|J+39pGK!G{Q8>BpuJheR6vLwOWzL03Ev{BAmsX8|m*kYK<4_KTK) z*Sqb#RD8e$Xnjb+QjYHg#(}TVuc;u+{p<_qoxrB^H(aA%fLoadK0ZPxreDugApjsl zg1z_NJCb1OamD|yXaEENu+|HqjC|hwX}u0Eux0jj9S(u4=RZ_)zka_S&;H?uAIk2# z@4j)t&-YySV(YRh0XzxfhEX8KfGt1--h$5nU=;Jk&^Q7(@R|2H`W;HsuivZ}2|V~* zdjg;YjpA-3J9cdB5I%bJ;@qIOic&K5TpyN!tx*s0nf3smQM_@@bvN+=OeBBX5|BT5&CPIx<Fp4KUnJ3XZq=PW_WpHFkXivKjin$fjCR^nG4HtLA7t9O2mMIh%88S0Andt7Jli{s-;Z}xpH zkN}eS^lq;$_=;NqecXa><3*c7SONaKN4IU=Dxa?ce!n`-Ptf@PtRWI0?dcx-{}%96 z+@BHXKa(N(Z(#lEM{Uc+oR^LKL3WO9UK{wjw+ir<47@kMIRR;$AeObC6_4s!03gfyn;TBOqnvJML3-= z7~=feKP&KcASL33e8cP6`%d`l6ZUDm1Oa^dL|yj+c$HDq2S)z1Y13K+5SWsX!&?HC zt9KKW_n3Z?R#b*L-}!tDphQ}oA=R|0(MU(vFonD?xXooyfKH?Nm#L`x6; zS4XUGqP&uM^$mSG^Org-X_Zr<1Er(MJ5-^}Xf>ofNsTbP@S<~v>u=xv3;aN}g5NRZ zI&bqQj{x+Yk4tEaK0xtpU}c~-s?CxW^fY`~FmVFi$`8z$vq_5L3*M5Jw@m;P3&>KQ zq?C&c_dl6a?+CkujC}pKafo0^z{er%CZ?Xpw5xBn&&06;`of6o)bqBDYB$qZD(_II z0fJWm*BqxxL5i3B+)7^v5R`Xio&q&>=nTMH0&OX$p8xYb_xzacpVxstIz^_QM{jm2 z2vgV7seD79h7x?|?X|!sAMfgMFLWxk>s3ks?@(2-0EuZM>Qtl7N=82<;C~hf{5%Ul z-6DWiI=0`6PvB?egW-;ppbn>`@>oRyrdp``Nc()5LsdoqcIiSL*x1#I|i$yu|9+BI_Biq6CzIlE{likaE;xm4Vbf$s&i!5`bsr&e0`B9?%Zzyb8I*piUTsXtqIRqOOckkT%hGgaKpThtz(|VlBSGnaVW$Gp z?XFj+4i#kpG9=NQE5##Kr?oa7bgo&C%PA89HmusN^sC@y`|i75ee``-J8VD8K-YbN z@AnD9{nXT{$0k-v5lD4jX}WHX$SoS$sY7MI=T{w8iU71jm3jgQcu9UT{*n84YUS5+ zIdVjOlw_JCa29xKDB^bLdZm>8rrEtW!KskbP-M?k#^X6 z*>jhYCGGu*j;l>bjef~arj&v9#}WWg7#UR>V96pdz4Q(hP9J$J(6$`KtG1y^I|q@c z_6J5NUf@+#m^GoY7Aiy1v!6ZoGVp0jKYr?!jT<{hhkpLNtgpOOYTsCHZZoGGyLulO zF%{s+mMO&D@5rIjD9@9DSTDGGy1tZ&mRXi$TRN|Bz-EPEx0;Ew6^#$%pR>D!Dqqs) z-KwrTaHzH*j>ymt@BulG000!g*kVL;;t2RD0zd*zBRz;)-GPzsV6U$s4&FCY3Bdd5 zqF415y#ojVQdU6V7ZHFjn|vEZH0uo3=D>(~n|1%<;K?pO=%Dr9f%BcM%eA!t)(0T2 z)rVjITLSQJabI0O(mI0H0o4Dzyu))|2TToiDyYSQkzJe1L9?HAMhhnPO6o* zUl8D`n`dY2E&@0N;6J5v3{4=;|4g>e)G7{B0p12FgZUUMfP@GI9UI}`M9*32Pt^RY z)&*s9tLNov8lYdcoi-loZ5>0iv&i`ZhfKV31|c|tmQzO@XRxFn!+9HT-vV#rC`1Hc zZJXDFBWBM0qE%ihPC2C8@`)F{Xwt880T(Mkn`HKVn@LxHdGl!Ht$W2^D&;vlb%+Fg z`UG7~=$~X1cu=_Zn>37Cl!DSiYsPuXUU~jnO4i=LuP^VV3tx`E?zCLANk0_w%C%Zw z_UU=A0X`wM#ar#Z}`=E}wvIq`8z04YF{du#|PFgM#4D_=Jf(kQ6xZpzcMDif)4 zQ<7arRzuB|&Nv6x=O?cvK^XZNAGi2?wYrAAQko>d6LgKNRi`E!+nxplxJJCpb8VM5 z?R9@Lw=`g1@Ju;E$~P$|H881xNexVDU{V8<8kp3;qz3A#f&T|yW&93B@qR!60000< KMNUMnLSTXkVCVz@ literal 0 HcmV?d00001 diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png.meta new file mode 100644 index 0000000..c70bac4 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png.meta @@ -0,0 +1,34 @@ +{ + "ver": "2.3.3", + "uuid": "050fb016-1a1f-4341-8367-283bfeddc4a8", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "platformSettings": {}, + "subMetas": { + "SoldierElf_tex": { + "ver": "1.0.4", + "uuid": "c62e1779-f92b-40d3-bf4f-7ab747e33d6e", + "rawTextureUuid": "050fb016-1a1f-4341-8367-283bfeddc4a8", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": -11.5, + "offsetY": 1.5, + "trimX": 1, + "trimY": 1, + "width": 103, + "height": 123, + "rawWidth": 128, + "rawHeight": 128, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/BulletPrefab.prefab b/frontend/assets/resources/prefabs/BulletPrefab.prefab deleted file mode 100644 index 9cb6a58..0000000 --- a/frontend/assets/resources/prefabs/BulletPrefab.prefab +++ /dev/null @@ -1,309 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false - }, - { - "__type__": "cc.Node", - "_name": "Bullet", - "_objFlags": 0, - "_parent": null, - "_children": [ - { - "__id__": 2 - } - ], - "_active": true, - "_level": 1, - "_components": [ - { - "__id__": 5 - }, - { - "__id__": 6 - } - ], - "_prefab": { - "__id__": 7 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 60 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.7, - "y": 0.5 - }, - "_quat": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_skewX": 0, - "_skewY": 0, - "groupIndex": 0, - "_id": "", - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.Node", - "_name": "Tail", - "_objFlags": 0, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_level": 2, - "_components": [ - { - "__id__": 3 - } - ], - "_prefab": { - "__id__": 4 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_quat": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_skewX": 0, - "_skewY": 0, - "groupIndex": 0, - "_id": "", - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -14, - -6, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.ParticleSystem", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 2 - }, - "_enabled": true, - "_srcBlendFactor": 770, - "_dstBlendFactor": 1, - "_custom": true, - "_file": { - "__uuid__": "b2687ac4-099e-403c-a192-ff477686f4f5" - }, - "_spriteFrame": { - "__uuid__": "472df5d3-35e7-4184-9e6c-7f41bee65ee3" - }, - "_texture": { - "__uuid__": "d0a82d39-bede-46c4-b698-c81ff0dedfff" - }, - "_stopped": false, - "playOnLoad": true, - "autoRemoveOnFinish": false, - "totalParticles": 200, - "duration": -1, - "emissionRate": 999.999985098839, - "life": 0.20000000298023224, - "lifeVar": 0.5, - "_startColor": { - "__type__": "cc.Color", - "r": 202, - "g": 200, - "b": 86, - "a": 163 - }, - "_startColorVar": { - "__type__": "cc.Color", - "r": 229, - "g": 255, - "b": 173, - "a": 198 - }, - "_endColor": { - "__type__": "cc.Color", - "r": 173, - "g": 161, - "b": 19, - "a": 214 - }, - "_endColorVar": { - "__type__": "cc.Color", - "r": 107, - "g": 249, - "b": 249, - "a": 188 - }, - "angle": 360, - "angleVar": 360, - "startSize": 3.369999885559082, - "startSizeVar": 50, - "endSize": 30.31999969482422, - "endSizeVar": 0, - "startSpin": -47.369998931884766, - "startSpinVar": 0, - "endSpin": -47.369998931884766, - "endSpinVar": -142.11000061035156, - "sourcePos": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "posVar": { - "__type__": "cc.Vec2", - "x": 7, - "y": 7 - }, - "positionType": 1, - "emitterMode": 0, - "gravity": { - "__type__": "cc.Vec2", - "x": -1000, - "y": 0.5 - }, - "speed": 10, - "speedVar": 190.7899932861328, - "tangentialAccel": -92.11000061035156, - "tangentialAccelVar": 65.79000091552734, - "radialAccel": -671.0499877929688, - "radialAccelVar": 65.79000091552734, - "rotationIsDir": false, - "startRadius": 0, - "startRadiusVar": 0, - "endRadius": 0, - "endRadiusVar": 0, - "rotatePerS": 0, - "rotatePerSVar": 0, - "_N$preview": true, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "7673e0e4-bebd-4caa-8a10-a6e1e86f1b2f" - }, - "fileId": "f8NGWnOBtGmZNTU+o6vnbe", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "2f525bb2-80d1-4508-bdc3-d03c11587ce4" - }, - "_type": 0, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_state": 0, - "_atlas": { - "__uuid__": "266c6cef-32d6-4545-b3e6-c2b75a895578" - }, - "_id": "" - }, - { - "__type__": "ea9650l7IJHjL2ymsB5gasO", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "localIdInBattle": null, - "linearSpeed": 0, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "7673e0e4-bebd-4caa-8a10-a6e1e86f1b2f" - }, - "fileId": "f7AuVG6IFIr5KrEg6RCeY2", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/BulletPrefab.prefab.meta b/frontend/assets/resources/prefabs/BulletPrefab.prefab.meta deleted file mode 100644 index 8dd2c5d..0000000 --- a/frontend/assets/resources/prefabs/BulletPrefab.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "7673e0e4-bebd-4caa-8a10-a6e1e86f1b2f", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/ControlledCharacter.prefab b/frontend/assets/resources/prefabs/ControlledCharacter.prefab new file mode 100644 index 0000000..e9e7984 --- /dev/null +++ b/frontend/assets/resources/prefabs/ControlledCharacter.prefab @@ -0,0 +1,652 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Root", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 5 + }, + { + "__id__": 8 + }, + { + "__id__": 11 + } + ], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 120, + "height": 120 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 3, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 2, + "groupIndex": 2, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "CoordinateLabel", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 46.68, + "height": 27.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -5, + 50, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_useOriginalSize": false, + "_string": "(0, 0)", + "_N$string": "(0, 0)", + "_fontSize": 20, + "_lineHeight": 22, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "5apzDmIE9IuaMOyF3z06sc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "particlesystem", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 7 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.ParticleSystem", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 5 + }, + "_enabled": true, + "_materials": [], + "_srcBlendFactor": 770, + "_dstBlendFactor": 1, + "_custom": true, + "_file": { + "__uuid__": "b2687ac4-099e-403c-a192-ff477686f4f5" + }, + "_spriteFrame": { + "__uuid__": "472df5d3-35e7-4184-9e6c-7f41bee65ee3" + }, + "_texture": null, + "_stopped": false, + "playOnLoad": true, + "autoRemoveOnFinish": false, + "totalParticles": 200, + "duration": -1, + "emissionRate": 999.999985098839, + "life": 0.20000000298023224, + "lifeVar": 0.5, + "_startColor": { + "__type__": "cc.Color", + "r": 202, + "g": 200, + "b": 86, + "a": 163 + }, + "_startColorVar": { + "__type__": "cc.Color", + "r": 229, + "g": 255, + "b": 173, + "a": 198 + }, + "_endColor": { + "__type__": "cc.Color", + "r": 173, + "g": 161, + "b": 19, + "a": 214 + }, + "_endColorVar": { + "__type__": "cc.Color", + "r": 107, + "g": 249, + "b": 249, + "a": 188 + }, + "angle": 360, + "angleVar": 360, + "startSize": 3.369999885559082, + "startSizeVar": 50, + "endSize": 30.31999969482422, + "endSizeVar": 0, + "startSpin": -47.369998931884766, + "startSpinVar": 0, + "endSpin": -47.369998931884766, + "endSpinVar": -142.11000061035156, + "sourcePos": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "posVar": { + "__type__": "cc.Vec2", + "x": 7, + "y": 7 + }, + "_positionType": 1, + "positionType": 1, + "emitterMode": 0, + "gravity": { + "__type__": "cc.Vec2", + "x": 0.25, + "y": 0.8600000143051147 + }, + "speed": 0, + "speedVar": 190.7899932861328, + "tangentialAccel": -92.11000061035156, + "tangentialAccelVar": 65.79000091552734, + "radialAccel": -671.0499877929688, + "radialAccelVar": 65.79000091552734, + "rotationIsDir": false, + "startRadius": 0, + "startRadiusVar": 0, + "endRadius": 0, + "endRadiusVar": 0, + "rotatePerS": 0, + "rotatePerSVar": 0, + "_N$preview": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "04uxaznclAmLRL13XKszPJ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "arrowTip", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 10 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 76, + "height": 84 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 3, + 182, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 8 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a2170e4c-df31-41ef-be73-f4f605e75821" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "030d9286-e8a2-40cf-98f8-baf713f0b8c4" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "e4mum5GwxNiZ0T8ouw95jJ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "animNode", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "dragonBones.ArmatureDisplay", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_armatureName": "SoldierElf", + "_animationName": "Idle1", + "_preCacheMode": 0, + "_cacheMode": 0, + "playTimes": -1, + "premultipliedAlpha": false, + "_armatureKey": "affcd973-4743-48e5-9bcd-339180a6101b#24d7bb8f-577c-4e5d-b730-56613ca8685d", + "_accTime": 0, + "_playCount": 0, + "_frameCache": null, + "_curFrame": null, + "_playing": false, + "_armatureCache": null, + "_N$dragonAsset": { + "__uuid__": "affcd973-4743-48e5-9bcd-339180a6101b" + }, + "_N$dragonAtlasAsset": { + "__uuid__": "24d7bb8f-577c-4e5d-b730-56613ca8685d" + }, + "_N$_defaultArmatureIndex": 0, + "_N$_animationIndex": 1, + "_N$_defaultCacheMode": 0, + "_N$timeScale": 1, + "_N$debugBones": false, + "_N$enableBatch": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "7aN7Gcc/tBw5EGlTJVBj2+", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "b74b05YDqZFRo4OkZRFZX8k", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "lastMovedAt": 0, + "animNode": { + "__id__": 11 + }, + "arrowTipNode": { + "__id__": 8 + }, + "coordLabel": { + "__id__": 3 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "4cx75uwJJFa7U8QL187QCL", + "sync": false + } +] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/PolygonBoundaryBarrier.prefab.meta b/frontend/assets/resources/prefabs/ControlledCharacter.prefab.meta similarity index 70% rename from frontend/assets/resources/prefabs/PolygonBoundaryBarrier.prefab.meta rename to frontend/assets/resources/prefabs/ControlledCharacter.prefab.meta index 94cdc63..b998e72 100644 --- a/frontend/assets/resources/prefabs/PolygonBoundaryBarrier.prefab.meta +++ b/frontend/assets/resources/prefabs/ControlledCharacter.prefab.meta @@ -1,6 +1,6 @@ { "ver": "1.2.5", - "uuid": "4154eec0-d644-482f-a889-c00ae6b69958", + "uuid": "59bff7a2-23e1-4d69-bce7-afb37eae196a", "optimizationPolicy": "AUTO", "asyncLoadAssets": false, "readonly": false, diff --git a/frontend/assets/resources/prefabs/GuardTower.prefab b/frontend/assets/resources/prefabs/GuardTower.prefab deleted file mode 100644 index e213ade..0000000 --- a/frontend/assets/resources/prefabs/GuardTower.prefab +++ /dev/null @@ -1,153 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false - }, - { - "__type__": "cc.Node", - "_name": "GuardTower", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_active": true, - "_level": 1, - "_components": [ - { - "__id__": 2 - }, - { - "__id__": 3 - } - ], - "_prefab": { - "__id__": 4 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 90, - "height": 150 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_quat": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_skewX": 0, - "_skewY": 0, - "groupIndex": 0, - "_id": "", - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": null, - "_type": 0, - "_sizeMode": 2, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_state": 0, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.PolygonCollider", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "tag": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "points": [ - { - "__type__": "cc.Vec2", - "x": -50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": 50 - }, - { - "__type__": "cc.Vec2", - "x": -50, - "y": 50 - } - ], - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "31a63530-7811-45bc-a4ee-571faf917e35" - }, - "fileId": "cb43NtzzhP0bpzlQHRRrkX", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/GuardTower.prefab.meta b/frontend/assets/resources/prefabs/GuardTower.prefab.meta deleted file mode 100644 index d3fce7f..0000000 --- a/frontend/assets/resources/prefabs/GuardTower.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "31a63530-7811-45bc-a4ee-571faf917e35", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/PolygonBoundaryBarrier.prefab b/frontend/assets/resources/prefabs/PolygonBoundaryBarrier.prefab deleted file mode 100644 index e1360ec..0000000 --- a/frontend/assets/resources/prefabs/PolygonBoundaryBarrier.prefab +++ /dev/null @@ -1,118 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_rawFiles": null, - "data": { - "__id__": 1 - } - }, - { - "__type__": "cc.Node", - "_name": "PolygonBoundaryBarrier", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_tag": -1, - "_active": true, - "_components": [ - { - "__id__": 2 - } - ], - "_prefab": { - "__id__": 3 - }, - "_id": "", - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_cascadeOpacityEnabled": true, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_localZOrder": 0, - "_globalZOrder": 0, - "_opacityModifyRGB": false, - "groupIndex": 1, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.PolygonCollider", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "tag": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "points": [ - { - "__type__": "cc.Vec2", - "x": -50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": 50 - }, - { - "__type__": "cc.Vec2", - "x": -50, - "y": 50 - } - ] - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e6gF9LdulAgYGTgO3/Pye8", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab b/frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab deleted file mode 100644 index 84e3c21..0000000 --- a/frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab +++ /dev/null @@ -1,125 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false - }, - { - "__type__": "cc.Node", - "_name": "PolygonBoundaryShelter", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_active": true, - "_level": 1, - "_components": [ - { - "__id__": 2 - } - ], - "_prefab": { - "__id__": 3 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_quat": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_skewX": 0, - "_skewY": 0, - "_zIndex": 0, - "groupIndex": 4, - "_id": "", - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -192, - 43, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.PolygonCollider", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "tag": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "points": [ - { - "__type__": "cc.Vec2", - "x": -50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": 50 - }, - { - "__type__": "cc.Vec2", - "x": -50, - "y": 50 - } - ], - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "f820a6ec-e7a9-46cf-9b8a-331aa3e21487" - }, - "fileId": "f8scmoFllMboAtkaldeiym", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab.meta b/frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab.meta deleted file mode 100644 index 599227e..0000000 --- a/frontend/assets/resources/prefabs/PolygonBoundaryShelter.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "f820a6ec-e7a9-46cf-9b8a-331aa3e21487", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab b/frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab deleted file mode 100644 index 5fd5fd2..0000000 --- a/frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab +++ /dev/null @@ -1,125 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false - }, - { - "__type__": "cc.Node", - "_name": "PolygonBoundaryShelterZReducer", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_active": true, - "_level": 1, - "_components": [ - { - "__id__": 2 - } - ], - "_prefab": { - "__id__": 3 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_quat": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_skewX": 0, - "_skewY": 0, - "_zIndex": 0, - "groupIndex": 3, - "_id": "", - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.PolygonCollider", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "tag": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "points": [ - { - "__type__": "cc.Vec2", - "x": -50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": 50 - }, - { - "__type__": "cc.Vec2", - "x": -50, - "y": 50 - } - ], - "_id": "e6q3kwlllDC425mW1I4/O5" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "a36d024b-a979-4d18-b089-19af313ffb82" - }, - "fileId": "fajJ28qMxI0YDyTCPlWINd", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab.meta b/frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab.meta deleted file mode 100644 index 7fb9ed4..0000000 --- a/frontend/assets/resources/prefabs/PolygonBoundaryShelterZReducer.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "a36d024b-a979-4d18-b089-19af313ffb82", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/TiledAnim.prefab b/frontend/assets/resources/prefabs/TiledAnim.prefab deleted file mode 100644 index 72543a6..0000000 --- a/frontend/assets/resources/prefabs/TiledAnim.prefab +++ /dev/null @@ -1,132 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false - }, - { - "__type__": "cc.Node", - "_name": "TiledAnim", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_active": true, - "_level": 1, - "_components": [ - { - "__id__": 2 - }, - { - "__id__": 3 - } - ], - "_prefab": { - "__id__": 4 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 56, - "height": 58 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_quat": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_skewX": 0, - "_skewY": 0, - "groupIndex": 0, - "_id": "", - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_spriteFrame": { - "__uuid__": "cc1486e4-5c38-4a73-a0d3-70416d0dd57f" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_state": 0, - "_atlas": { - "__uuid__": "030d9286-e8a2-40cf-98f8-baf713f0b8c4" - }, - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_id": "" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_defaultClip": null, - "_clips": [], - "playOnLoad": true, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "1c02b0a0-859a-4467-86b3-ca39c30d1e19" - }, - "fileId": "60dCvhukpIsL1FtdnqBIor", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/TiledAnim.prefab.meta b/frontend/assets/resources/prefabs/TiledAnim.prefab.meta deleted file mode 100644 index 6aaa513..0000000 --- a/frontend/assets/resources/prefabs/TiledAnim.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "1c02b0a0-859a-4467-86b3-ca39c30d1e19", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/TrapPrefab.prefab b/frontend/assets/resources/prefabs/TrapPrefab.prefab deleted file mode 100644 index 7f70cd1..0000000 --- a/frontend/assets/resources/prefabs/TrapPrefab.prefab +++ /dev/null @@ -1,157 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false - }, - { - "__type__": "cc.Node", - "_name": "treasureNodePrefab", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_active": true, - "_level": 1, - "_components": [ - { - "__id__": 2 - }, - { - "__id__": 3 - } - ], - "_prefab": { - "__id__": 4 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_quat": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_skewX": 0, - "_skewY": 0, - "groupIndex": 0, - "_id": "", - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 441, - 814, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - } - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_spriteFrame": { - "__uuid__": "350fd890-3d28-4e53-9dfa-1bf00d857737" - }, - "_type": 0, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_state": 0, - "_atlas": { - "__uuid__": "030d9286-e8a2-40cf-98f8-baf713f0b8c4" - }, - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_id": "" - }, - { - "__type__": "cc.PolygonCollider", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "tag": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "points": [ - { - "__type__": "cc.Vec2", - "x": -50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": 50 - }, - { - "__type__": "cc.Vec2", - "x": -50, - "y": 50 - } - ], - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "9f340a31-ddfa-46c2-94c7-d11615aedcb1" - }, - "fileId": "dc8aAweIBDDYuXBJblR5IA", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/TrapPrefab.prefab.meta b/frontend/assets/resources/prefabs/TrapPrefab.prefab.meta deleted file mode 100644 index 6da7b43..0000000 --- a/frontend/assets/resources/prefabs/TrapPrefab.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "9f340a31-ddfa-46c2-94c7-d11615aedcb1", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/TreasurePrefab.prefab b/frontend/assets/resources/prefabs/TreasurePrefab.prefab deleted file mode 100644 index 7dcdd94..0000000 --- a/frontend/assets/resources/prefabs/TreasurePrefab.prefab +++ /dev/null @@ -1,167 +0,0 @@ -[ - { - "__type__": "cc.Prefab", - "_name": "", - "_objFlags": 0, - "_native": "", - "data": { - "__id__": 1 - }, - "optimizationPolicy": 0, - "asyncLoadAssets": false, - "readonly": false - }, - { - "__type__": "cc.Node", - "_name": "treasureNodePrefab", - "_objFlags": 0, - "_parent": null, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 2 - }, - { - "__id__": 3 - }, - { - "__id__": 4 - } - ], - "_prefab": { - "__id__": 5 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 64, - "height": 64 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_materials": [], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": null, - "_type": 0, - "_sizeMode": 2, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.PolygonCollider", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "tag": 0, - "_offset": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "points": [ - { - "__type__": "cc.Vec2", - "x": -50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": -50 - }, - { - "__type__": "cc.Vec2", - "x": 50, - "y": 50 - }, - { - "__type__": "cc.Vec2", - "x": -50, - "y": 50 - } - ], - "_id": "" - }, - { - "__type__": "5eea6zlA0NHdoCk/M1pvQmb", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 1 - }, - "_enabled": true, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "ec3f3234-9b84-43c2-a3cd-58b924cce8e5" - }, - "fileId": "dc8aAweIBDDYuXBJblR5IA", - "sync": false - } -] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/TreasurePrefab.prefab.meta b/frontend/assets/resources/prefabs/TreasurePrefab.prefab.meta deleted file mode 100644 index 15cddb0..0000000 --- a/frontend/assets/resources/prefabs/TreasurePrefab.prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -{ - "ver": "1.2.5", - "uuid": "ec3f3234-9b84-43c2-a3cd-58b924cce8e5", - "optimizationPolicy": "AUTO", - "asyncLoadAssets": false, - "readonly": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/scenes/login.fire b/frontend/assets/scenes/login.fire index 2b9da7c..6324f99 100644 --- a/frontend/assets/scenes/login.fire +++ b/frontend/assets/scenes/login.fire @@ -440,7 +440,7 @@ "array": [ 0, 0, - 344.6705889248102, + 209.57814771583418, 0, 0, 0, diff --git a/frontend/assets/scenes/offline_map_1.fire b/frontend/assets/scenes/offline_map_1.fire index e117c44..9e1f855 100644 --- a/frontend/assets/scenes/offline_map_1.fire +++ b/frontend/assets/scenes/offline_map_1.fire @@ -72,7 +72,7 @@ "__id__": 3 }, { - "__id__": 8 + "__id__": 9 } ], "_active": true, @@ -158,7 +158,7 @@ "__id__": 5 }, { - "__id__": 21 + "__id__": 6 } ], "_prefab": null, @@ -221,7 +221,35 @@ "_id": "c8MqKDLJdKz7VhPwMjScDw" }, { - "__type__": "41d30TOamhNLZKrUhneboY4", + "__type__": "09e1b/tEy5K2qaPIpqHDbae", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 3 + }, + "_enabled": true, + "BGMEffect": { + "__uuid__": "64a79efa-97de-4cb5-b2a9-01500c60573a" + }, + "crashedByTrapBullet": { + "__uuid__": "1d604e42-8cee-466f-884d-e74cae21ce3b" + }, + "highScoreTreasurePicked": { + "__uuid__": "0164d22c-d965-461f-867e-b30e2d56cc5c" + }, + "treasurePicked": { + "__uuid__": "7704b97e-6367-420c-b7af-d0750a2bbb30" + }, + "countDown10SecToEnd": { + "__uuid__": "261d1d7d-a5cc-4cb7-a737-194427055fd4" + }, + "mapNode": { + "__id__": 3 + }, + "_id": "3crA1nz5xPSLAnCSLQIPOq" + }, + { + "__type__": "47d7dy4S4lB2pxqJJlGOoai", "_name": "", "_objFlags": 0, "node": { @@ -231,70 +259,47 @@ "canvasNode": { "__id__": 2 }, - "tiledAnimPrefab": { - "__uuid__": "1c02b0a0-859a-4467-86b3-ca39c30d1e19" - }, - "player1Prefab": { - "__uuid__": "8a738d50-1dac-4b6e-99e1-d241f5ee7169" - }, - "player2Prefab": { - "__uuid__": "1f479636-9eb8-4612-8f97-371964d6eae3" - }, - "polygonBoundaryBarrierPrefab": { - "__uuid__": "4154eec0-d644-482f-a889-c00ae6b69958" - }, - "keyboardInputControllerNode": { - "__id__": 6 + "controlledCharacterPrefab": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" }, + "player1Prefab": null, + "player2Prefab": null, "joystickInputControllerNode": { - "__id__": 10 - }, - "confirmLogoutPrefab": { - "__uuid__": "8e8c1a65-623d-42ba-97a7-820ce518ea11" - }, - "simplePressToGoDialogPrefab": { - "__uuid__": "670b477e-61a1-4778-879b-35913f7c79d2" + "__id__": 7 }, + "confirmLogoutPrefab": null, + "simplePressToGoDialogPrefab": null, "boundRoomIdLabel": null, - "countdownLabel": { - "__id__": 18 - }, - "resultPanelPrefab": { - "__uuid__": "c4cfe3bd-c59e-4d5b-95cb-c933b120e184" - }, - "gameRulePrefab": { - "__uuid__": "32b8e752-8362-4783-a4a6-1160af8b7109" - }, - "findingPlayerPrefab": { - "__uuid__": "3ed4c7bc-79d0-4075-a563-d5a58ae798f9" - }, - "countdownToBeginGamePrefab": { - "__uuid__": "230eeb1f-e0f9-4a41-ab6c-05b3771cbf3e" - }, - "playersInfoPrefab": { - "__uuid__": "b4e519f4-e698-4403-9ff2-47b8dacb077e" - }, + "countdownLabel": null, + "resultPanelPrefab": null, + "gameRulePrefab": null, + "findingPlayerPrefab": null, + "countdownToBeginGamePrefab": null, + "playersInfoPrefab": null, "forceBigEndianFloatingNumDecoding": false, - "backgroundMapTiledIns": null, "renderFrameIdLagTolerance": 4, "jigglingEps1D": 0.001, - "_id": "d12gkAmppNlIzqcRDELa91" + "keyboardInputControllerNode": { + "__id__": 11 + }, + "_id": "4b+kZ46VhC0LCBixXEK2dk" }, { "__type__": "cc.Node", - "_name": "KeyboardControlsMount", + "_name": "JoystickContainer", "_objFlags": 0, "_parent": { - "__id__": 7 + "__id__": 8 }, - "_children": [], + "_children": [ + { + "__id__": 16 + } + ], "_active": true, "_components": [ { - "__id__": 19 - }, - { - "__id__": 20 + "__id__": 21 } ], "_prefab": null, @@ -308,8 +313,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 0, - "height": 50.4 + "width": 1280, + "height": 640 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -320,8 +325,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - -341.33333, - -640, + 0, + -500, 0, 0, 0, @@ -343,24 +348,24 @@ "_is3DNode": false, "_groupIndex": 0, "groupIndex": 0, - "_id": "e6nL+1zEhLmLSaT8R/9UgD" + "_id": "81iBXkC0lFt5FFUUD0k3xE" }, { "__type__": "cc.Node", "_name": "WidgetsAboveAll", "_objFlags": 0, "_parent": { - "__id__": 8 + "__id__": 9 }, "_children": [ { - "__id__": 6 + "__id__": 11 }, { - "__id__": 10 + "__id__": 7 }, { - "__id__": 17 + "__id__": 14 } ], "_active": true, @@ -422,13 +427,13 @@ }, "_children": [ { - "__id__": 7 + "__id__": 8 } ], "_active": true, "_components": [ { - "__id__": 9 + "__id__": 10 } ], "_prefab": null, @@ -456,7 +461,7 @@ "array": [ 0, 0, - 344.6705889248102, + 210.4441731196186, 0, 0, 0, @@ -484,7 +489,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 8 + "__id__": 9 }, "_enabled": true, "_cullingMask": 4294967295, @@ -517,20 +522,19 @@ }, { "__type__": "cc.Node", - "_name": "JoystickContainer", + "_name": "KeyboardControlsMount", "_objFlags": 0, "_parent": { - "__id__": 7 + "__id__": 8 }, - "_children": [ - { - "__id__": 11 - } - ], + "_children": [], "_active": true, "_components": [ { - "__id__": 16 + "__id__": 12 + }, + { + "__id__": 13 } ], "_prefab": null, @@ -544,8 +548,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1280, - "height": 640 + "width": 0, + "height": 50.4 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -556,8 +560,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 0, - -500, + -341.33333, + -640, 0, 0, 0, @@ -579,175 +583,10 @@ "_is3DNode": false, "_groupIndex": 0, "groupIndex": 0, - "_id": "81iBXkC0lFt5FFUUD0k3xE" + "_id": "e6nL+1zEhLmLSaT8R/9UgD" }, { - "__type__": "cc.Node", - "_name": "JoystickBG", - "_objFlags": 0, - "_parent": { - "__id__": 10 - }, - "_children": [ - { - "__id__": 12 - } - ], - "_active": true, - "_components": [ - { - "__id__": 14 - }, - { - "__id__": 15 - } - ], - "_prefab": null, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 400, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "88u3wQvvdO8pbrNWhs3ifP" - }, - { - "__type__": "cc.Node", - "_name": "Joystick", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 13 - } - ], - "_prefab": null, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 150, - "height": 150 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0.8, - 0.8, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "3eybpdW/JK3aDeXxdE86VD" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 12 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "7d4baacd-294c-4a5d-9cd6-5d36e4394c9e" - }, - "_type": 0, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "030d9286-e8a2-40cf-98f8-baf713f0b8c4" - }, - "_id": "7dr8DOX01K7YFqWlRy1ATp" - }, - { - "__type__": "cc.Sprite", + "__type__": "cc.Label", "_name": "", "_objFlags": 0, "node": { @@ -759,93 +598,45 @@ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" } ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "447f7cfe-e678-4424-be03-0afdab8659de" - }, - "_type": 0, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "030d9286-e8a2-40cf-98f8-baf713f0b8c4" - }, - "_id": "b28Bh9ZcpM+7K3Bd3bmNf0" + "_useOriginalSize": false, + "_string": "", + "_N$string": "", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 1, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "9cS5BRd+NKJIvGQiojJtIs" }, { - "__type__": "cc.Widget", + "__type__": "4561aFzv9JPZLe6iIzODk2d", "_name": "", "_objFlags": 0, "node": { "__id__": 11 }, "_enabled": true, - "alignMode": 0, - "_target": null, - "_alignFlags": 0, - "_left": 40, - "_right": 0, - "_top": 0, - "_bottom": 10, - "_verticalCenter": 0, - "_horizontalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, - "_id": "c0cEsj4LpMcZZEldELidxy" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 10 - }, - "_enabled": true, - "alignMode": 0, - "_target": null, - "_alignFlags": 0, - "_left": 278, - "_right": 480.0000000000002, - "_top": 544, - "_bottom": 0, - "_verticalCenter": 0, - "_horizontalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 480, - "_originalHeight": 0, - "_id": "2cxYjEIwNO6rUtXX4WcfnV" + "_id": "5ahzSYC8pCCLVPCBYyCRfZ" }, { "__type__": "cc.Node", "_name": "CountdownSeconds", "_objFlags": 0, "_parent": { - "__id__": 7 + "__id__": 8 }, "_children": [], "_active": true, "_components": [ { - "__id__": 18 + "__id__": 15 } ], "_prefab": null, @@ -901,7 +692,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 17 + "__id__": 14 }, "_enabled": true, "_materials": [ @@ -927,11 +718,142 @@ "_id": "dfxSFl+shLcY+0v45FJtGo" }, { - "__type__": "cc.Label", + "__type__": "cc.Node", + "_name": "JoystickBG", + "_objFlags": 0, + "_parent": { + "__id__": 7 + }, + "_children": [ + { + "__id__": 17 + } + ], + "_active": true, + "_components": [ + { + "__id__": 19 + }, + { + "__id__": 20 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 400, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "88u3wQvvdO8pbrNWhs3ifP" + }, + { + "__type__": "cc.Node", + "_name": "Joystick", + "_objFlags": 0, + "_parent": { + "__id__": 16 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + } + ], + "_prefab": null, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 150, + "height": 150 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0.8, + 0.8, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "3eybpdW/JK3aDeXxdE86VD" + }, + { + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "node": { - "__id__": 6 + "__id__": 17 }, "_enabled": true, "_materials": [ @@ -939,60 +861,114 @@ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" } ], - "_useOriginalSize": false, - "_string": "", - "_N$string": "", - "_fontSize": 40, - "_lineHeight": 40, - "_enableWrapText": true, - "_N$file": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_batchAsBitmap": false, - "_N$horizontalAlign": 1, - "_N$verticalAlign": 1, - "_N$fontFamily": "Arial", - "_N$overflow": 0, - "_N$cacheMode": 0, - "_id": "9cS5BRd+NKJIvGQiojJtIs" + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "7d4baacd-294c-4a5d-9cd6-5d36e4394c9e" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "030d9286-e8a2-40cf-98f8-baf713f0b8c4" + }, + "_id": "7dr8DOX01K7YFqWlRy1ATp" }, { - "__type__": "4561aFzv9JPZLe6iIzODk2d", + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "node": { - "__id__": 6 + "__id__": 16 }, "_enabled": true, - "_id": "5ahzSYC8pCCLVPCBYyCRfZ" + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "447f7cfe-e678-4424-be03-0afdab8659de" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "030d9286-e8a2-40cf-98f8-baf713f0b8c4" + }, + "_id": "b28Bh9ZcpM+7K3Bd3bmNf0" }, { - "__type__": "09e1b/tEy5K2qaPIpqHDbae", + "__type__": "cc.Widget", "_name": "", "_objFlags": 0, "node": { - "__id__": 3 + "__id__": 16 }, "_enabled": true, - "BGMEffect": { - "__uuid__": "64a79efa-97de-4cb5-b2a9-01500c60573a" + "alignMode": 0, + "_target": null, + "_alignFlags": 0, + "_left": 40, + "_right": 0, + "_top": 0, + "_bottom": 10, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "c0cEsj4LpMcZZEldELidxy" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 }, - "crashedByTrapBullet": { - "__uuid__": "1d604e42-8cee-466f-884d-e74cae21ce3b" - }, - "highScoreTreasurePicked": { - "__uuid__": "0164d22c-d965-461f-867e-b30e2d56cc5c" - }, - "treasurePicked": { - "__uuid__": "7704b97e-6367-420c-b7af-d0750a2bbb30" - }, - "countDown10SecToEnd": { - "__uuid__": "261d1d7d-a5cc-4cb7-a737-194427055fd4" - }, - "mapNode": { - "__id__": 3 - }, - "_id": "3crA1nz5xPSLAnCSLQIPOq" + "_enabled": true, + "alignMode": 0, + "_target": null, + "_alignFlags": 0, + "_left": 278, + "_right": 480.0000000000002, + "_top": 544, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 480, + "_originalHeight": 0, + "_id": "2cxYjEIwNO6rUtXX4WcfnV" }, { "__type__": "cc.Canvas", @@ -1074,16 +1050,16 @@ }, "_enabled": true, "translationListenerNode": { - "__id__": 10 + "__id__": 7 }, "zoomingListenerNode": { "__id__": 3 }, "stickhead": { - "__id__": 12 + "__id__": 17 }, "base": { - "__id__": 11 + "__id__": 16 }, "joyStickEps": 0.1, "magicLeanLowerBound": 0.414, diff --git a/frontend/assets/scripts/AttackingCharacter.js b/frontend/assets/scripts/AttackingCharacter.js new file mode 100644 index 0000000..4844124 --- /dev/null +++ b/frontend/assets/scripts/AttackingCharacter.js @@ -0,0 +1,53 @@ +const BaseCharacter = require("./BaseCharacter"); + +window.ATK_CHARACTER_STATE = { + Idle1: [0, "Idle1"], + Walking: [1, "Walking"], + Atk1: [2, "Atk1"], +}; + +cc.Class({ + extends: BaseCharacter, + properties: { + animNode: { + type: cc.Node, + default: null + }, + }, + + ctor() { + }, + + onLoad() { + BaseCharacter.prototype.onLoad.call(this); + this.characterState = ATK_CHARACTER_STATE.Idle1[0]; + this.animComp = this.animNode.getComponent(dragonBones.ArmatureDisplay); + this.animComp.playAnimation(ATK_CHARACTER_STATE.Idle1[1]); + }, + + scheduleNewDirection(newScheduledDirection, forceAnimSwitch) { + BaseCharacter.prototype.scheduleNewDirection.call(this, newScheduledDirection, forceAnimSwitch); + if (ATK_CHARACTER_STATE.Atk1[0] == this.characterState) { + return; + } + + let newCharacterState = ATK_CHARACTER_STATE.Idle1[0]; + if (0 != newScheduledDirection.dx || 0 != newScheduledDirection.dy) { + newCharacterState = ATK_CHARACTER_STATE.Walking[0]; + } + + if (newCharacterState != this.characterState) { + switch (newCharacterState) { + case ATK_CHARACTER_STATE.Idle1[0]: + this.animComp.playAnimation(ATK_CHARACTER_STATE.Idle1[1]); + break; + case ATK_CHARACTER_STATE.Walking[0]: + this.animComp.playAnimation(ATK_CHARACTER_STATE.Walking[1]); + break; + default: + break; + } + this.characterState = newCharacterState; + } + }, +}); diff --git a/frontend/assets/scripts/Bullet.js.meta b/frontend/assets/scripts/AttackingCharacter.js.meta similarity index 74% rename from frontend/assets/scripts/Bullet.js.meta rename to frontend/assets/scripts/AttackingCharacter.js.meta index b6b5ea9..2f3e67c 100644 --- a/frontend/assets/scripts/Bullet.js.meta +++ b/frontend/assets/scripts/AttackingCharacter.js.meta @@ -1,6 +1,6 @@ { "ver": "1.0.5", - "uuid": "ea965d25-ec82-478c-bdb2-9ac07981ab0e", + "uuid": "0b29c37b-2ac0-47be-ae68-b7b9a4b2dffb", "isPlugin": false, "loadPluginInWeb": true, "loadPluginInNative": true, diff --git a/frontend/assets/scripts/BasePlayer.js b/frontend/assets/scripts/BaseCharacter.js similarity index 51% rename from frontend/assets/scripts/BasePlayer.js rename to frontend/assets/scripts/BaseCharacter.js index 0839393..1ae2e19 100644 --- a/frontend/assets/scripts/BasePlayer.js +++ b/frontend/assets/scripts/BaseCharacter.js @@ -2,10 +2,6 @@ module.export = cc.Class({ extends: cc.Component, properties: { - animComp: { - type: cc.Animation, - default: null, - }, lastMovedAt: { type: cc.Float, default: 0 // In "GMT milliseconds" @@ -21,24 +17,14 @@ module.export = cc.Class({ }; }, + ctor() {}, + onLoad() { const self = this; - self.clips = { - '02': 'Top', - '0-2': 'Bottom', - '-20': 'Left', - '20': 'Right', - '-11': 'TopLeft', - '11': 'TopRight', - '-1-1': 'BottomLeft', - '1-1': 'BottomRight' - }; const canvasNode = self.mapNode.parent; self.mapIns = self.mapNode.getComponent("Map"); const joystickInputControllerScriptIns = canvasNode.getComponent("TouchEventsManager"); self.ctrl = joystickInputControllerScriptIns; - self.animComp = self.node.getComponent(cc.Animation); - self.animComp.play(); }, scheduleNewDirection(newScheduledDirection, forceAnimSwitch) { @@ -48,19 +34,11 @@ module.export = cc.Class({ if (forceAnimSwitch || null == this.activeDirection || (newScheduledDirection.dx != this.activeDirection.dx || newScheduledDirection.dy != this.activeDirection.dy)) { this.activeDirection = newScheduledDirection; - this.activeDirection = newScheduledDirection; - const clipKey = newScheduledDirection.dx.toString() + newScheduledDirection.dy.toString(); - const clips = (this.attacked ? this.attackedClips : this.clips); - let clip = clips[clipKey]; - if (!clip) { - // Keep playing the current anim. - if (0 !== newScheduledDirection.dx || 0 !== newScheduledDirection.dy) { - cc.warn('Clip for clipKey === ' + clipKey + ' is invalid: ' + clip + '.'); - } - } else { - this.animComp.play(clip); - if (this.attacked) { - cc.log(`Attacked, switching to play clipKey = ${clipKey}, clip == ${clip}, this.activeDirection == ${JSON.stringify(this.activeDirection)}, this.activeDirection == ${JSON.stringify(this.activeDirection)}.`); + if (this.animComp && this.animComp.node) { + if (0 > newScheduledDirection.dx) { + this.animComp.node.scaleX = (-1.0); + } else if (0 < newScheduledDirection.dx) { + this.animComp.node.scaleX = (1.0); } } } @@ -84,13 +62,4 @@ module.export = cc.Class({ this.speed = proposedSpeed; }, - startFrozenDisplay() { - const self = this; - self.attacked = true; - }, - - stopFrozenDisplay() { - const self = this; - self.attacked = false; - }, }); diff --git a/frontend/assets/scripts/BasePlayer.js.meta b/frontend/assets/scripts/BaseCharacter.js.meta similarity index 100% rename from frontend/assets/scripts/BasePlayer.js.meta rename to frontend/assets/scripts/BaseCharacter.js.meta diff --git a/frontend/assets/scripts/Bullet.js b/frontend/assets/scripts/Bullet.js deleted file mode 100644 index 18c69dc..0000000 --- a/frontend/assets/scripts/Bullet.js +++ /dev/null @@ -1,201 +0,0 @@ - module.export = cc.Class({ - extends: cc.Component, - - properties: { - localIdInBattle: { - default: null, - }, - linearSpeed: { - default: 0.0, - }, - }, - - ctor() { - this.ctrl = null; - this.activeDirection = null; - }, - - onLoad() { - }, - - _calculateVecToMoveByWithChosenDir(elapsedTime, sDir) { - if (0 == sDir.dx && 0 == sDir.dy) { - return cc.v2(); - } - const self = this; - const distanceToMove = (self.linearSpeed * elapsedTime); - const denominator = Math.sqrt(sDir.dx * sDir.dx + sDir.dy * sDir.dy); - const unitProjDx = (sDir.dx / denominator); - const unitProjDy = (sDir.dy / denominator); - return cc.v2( - distanceToMove * unitProjDx, - distanceToMove * unitProjDy, - ); - }, - - _calculateVecToMoveBy(elapsedTime) { - const self = this; - if (null == self.activeDirection) { - return null; - } - // Note that `sDir` used in this method MUST BE a copy in RAM. - let sDir = { - dx: self.activeDirection.dx, - dy: self.activeDirection.dy, - }; - - if (0 == sDir.dx && 0 == sDir.dy) { - return cc.v2(); - } - - return self._calculateVecToMoveByWithChosenDir(elapsedTime, sDir); - }, - - _canMoveBy(vecToMoveBy) { - return true; - }, - - update(dt) { - // Used only for EXTRAPOLATING the position of this bullet. The position might be corrected within `setData` as well. - const self = this; - if (null != self.bulletMaxDist) { - const dxMoved = self.node.position.x - self.startAtPoint.x; - const dyMoved = self.node.position.y - self.startAtPoint.y; - const distanceMoved = Math.sqrt(dxMoved * dxMoved + dyMoved * dyMoved) - self.node.opacity = 255*(1 - distanceMoved/self.bulletMaxDist); - } - - const vecToMoveBy = self._calculateVecToMoveBy(dt); - if (null == vecToMoveBy) { - return; - } - if (self._canMoveBy(vecToMoveBy)) { - self.node.position = self.node.position.add(vecToMoveBy); - } - }, - - _calculateAngle(dx, dy) { - if (dx == 0) { - if (dy > 0) { - return 90; - } - if (dy < 0) { - return -90; - } - } - - if (dx > 0) { - if (dy == 0) { - return 0; - } - if (dy > 0) { - return 45; - } - if (dy < 0) { - return -45; - } - } - - if (dx < 0) { - if (dy == 0) { - return 180; - } - if (dy > 0) { - return 135; - } - if (dy < 0) { - return -135; - } - } - - return null; - }, - - setData(bulletLocalIdInBattle, bulletInfo, dtFromMapUpdate) { - const targetNode = this.node; - - if (true == bulletInfo.removed) { - return false; - } - - if (null == bulletInfo.startAtPoint || null == bulletInfo.endAtPoint) { - console.error(`Init bullet direction error, startAtPoint:${bulletInfo.startAtPoint}, endAtPoint:${bulletInfo.endAtPoint}`); - return false; - } - - this.localIdInBattle = bulletLocalIdInBattle; - this.linearSpeed = bulletInfo.linearSpeed * 1000000000; // The `bullet.LinearSpeed` on server-side is denoted in pts/nanoseconds. - - const dx = bulletInfo.endAtPoint.x - bulletInfo.startAtPoint.x; - const dy = bulletInfo.endAtPoint.y - bulletInfo.startAtPoint.y; - - const discretizedDir = this.ctrl.discretizeDirection(dx, dy, this.ctrl.joyStickEps); - const baseAngle = 0; - const angleToRotate = baseAngle - this._calculateAngle(discretizedDir.dx, discretizedDir.dy); - if (null == angleToRotate) { - return false; - } - set2dRotation(targetNode, angleToRotate); - - const newPos = cc.v2( - bulletInfo.x, - bulletInfo.y - ); - - if (null == this.activeDirection) { - // Initialization. - this.startAtPoint = bulletInfo.startAtPoint; - this.endAtPoint = bulletInfo.endAtPoint; - this.bulletMaxDist = 600.0; // Hardcoded temporarily, matching that in "/models/room.go". -- YFLu, 2019-09-05. - targetNode.setPosition(newPos); - this.activeDirection = { - dx: 0, - dy: 0, - }; - return true; - } - - const oldPos = cc.v2( - targetNode.x, - targetNode.y, - ); - const toMoveByVec = newPos.sub(oldPos); - const toMoveByVecMag = toMoveByVec.mag(); - const toTeleportDisThreshold = (this.linearSpeed * dtFromMapUpdate * 100); - const notToMoveDisThreshold = (this.linearSpeed * dtFromMapUpdate * 0.5); - if (toMoveByVecMag < notToMoveDisThreshold) { - // To stop extrapolated moving. - this.activeDirection = { - dx: 0, - dy: 0, - }; - } else { - if (toMoveByVecMag > toTeleportDisThreshold) { - console.log("Bullet ", bulletLocalIdInBattle, " is teleporting! Having toMoveByVecMag == ", toMoveByVecMag, ", toTeleportDisThreshold == ", toTeleportDisThreshold); - // To stop extrapolated moving. - this.activeDirection = { - dx: 0, - dy: 0 - }; - // Deliberately NOT using `cc.Action`. -- YFLu, 2019-09-04 - targetNode.setPosition(newPos); - } else { - // The common case which is suitable for interpolation. - const normalizedDir = { - dx: toMoveByVec.x / toMoveByVecMag, - dy: toMoveByVec.y / toMoveByVecMag, - }; - if (isNaN(normalizedDir.dx) || isNaN(normalizedDir.dy)) { - this.activeDirection = { - dx: 0, - dy: 0, - }; - } else { - this.activeDirection = normalizedDir; - } - } - } - - return true; - }, -}); diff --git a/frontend/assets/scripts/SelfPlayer.js b/frontend/assets/scripts/ControlledCharacter.js similarity index 62% rename from frontend/assets/scripts/SelfPlayer.js rename to frontend/assets/scripts/ControlledCharacter.js index a726ecc..5cb5211 100644 --- a/frontend/assets/scripts/SelfPlayer.js +++ b/frontend/assets/scripts/ControlledCharacter.js @@ -1,8 +1,7 @@ -const BasePlayer = require("./BasePlayer"); +const AttackingCharacter = require("./AttackingCharacter"); cc.Class({ - extends: BasePlayer, - // LIFE-CYCLE CALLBACKS: + extends: AttackingCharacter, properties: { arrowTipNode: { type: cc.Node, @@ -14,21 +13,11 @@ cc.Class({ } }, start() { - BasePlayer.prototype.start.call(this); + AttackingCharacter.prototype.start.call(this); }, onLoad() { - BasePlayer.prototype.onLoad.call(this); - this.attackedClips = { - '01': 'attackedLeft', - '0-1': 'attackedRight', - '-20': 'attackedLeft', - '20': 'attackedRight', - '-21': 'attackedLeft', - '21': 'attackedRight', - '-2-1': 'attackedLeft', - '2-1': 'attackedRight' - }; + AttackingCharacter.prototype.onLoad.call(this); this.arrowTipNode.active = false; if (!this.mapIns.showCriticalCoordinateLabels) { @@ -51,7 +40,7 @@ cc.Class({ }, update(dt) { - BasePlayer.prototype.update.call(this, dt); + AttackingCharacter.prototype.update.call(this, dt); if (this.mapIns.showCriticalCoordinateLabels) { this.coordLabel.string = `(${this.node.x.toFixed(2)}, ${this.node.y.toFixed(2)})`; } diff --git a/frontend/assets/scripts/SelfPlayer.js.meta b/frontend/assets/scripts/ControlledCharacter.js.meta similarity index 100% rename from frontend/assets/scripts/SelfPlayer.js.meta rename to frontend/assets/scripts/ControlledCharacter.js.meta diff --git a/frontend/assets/scripts/Map.js b/frontend/assets/scripts/Map.js index 0a84c00..532f003 100644 --- a/frontend/assets/scripts/Map.js +++ b/frontend/assets/scripts/Map.js @@ -40,6 +40,10 @@ cc.Class({ type: cc.Node, default: null, }, + controlledCharacterPrefab: { + type: cc.Prefab, + default: null, + }, player1Prefab: { type: cc.Prefab, default: null, @@ -91,10 +95,6 @@ cc.Class({ forceBigEndianFloatingNumDecoding: { default: false, }, - backgroundMapTiledIns: { - type: cc.TiledMap, - default: null - }, renderFrameIdLagTolerance: { type: cc.Integer, default: 4 // implies (renderFrameIdLagTolerance >> inputScaleFrames) count of inputFrameIds @@ -292,8 +292,6 @@ cc.Class({ const self = this; const mapNode = self.node; const canvasNode = mapNode.parent; - self.countdownLabel.string = ""; - self.countdownNanos = null; // Clearing previous info of all players. [BEGINS] self.collisionPlayerIndexPrefix = (1 << 17); // For tracking the movements of players @@ -327,12 +325,20 @@ cc.Class({ self.battleState = ALL_BATTLE_STATES.WAITING; + if (self.countdownLabel) { + self.countdownLabel.string = ""; + } + self.countdownNanos = null; if (self.findingPlayerNode) { const findingPlayerScriptIns = self.findingPlayerNode.getComponent("FindingPlayer"); findingPlayerScriptIns.init(); } - safelyAddChild(self.widgetsAboveAllNode, self.playersInfoNode); - safelyAddChild(self.widgetsAboveAllNode, self.findingPlayerNode); + if (self.playersInfoNode) { + safelyAddChild(self.widgetsAboveAllNode, self.playersInfoNode); + } + if (self.findingPlayerNode) { + safelyAddChild(self.widgetsAboveAllNode, self.findingPlayerNode); + } }, onLoad() { @@ -463,8 +469,10 @@ cc.Class({ for (let boundaryObj of boundaryObjs.barriers) { const x0 = boundaryObj.anchor.x, y0 = boundaryObj.anchor.y; - - const newBarrier = self.collisionSys.createPolygon(x0, y0, Array.from(boundaryObj, p => { return [p.x, p.y]; })); + + const newBarrier = self.collisionSys.createPolygon(x0, y0, Array.from(boundaryObj, p => { + return [p.x, p.y]; + })); if (self.showCriticalCoordinateLabels) { for (let i = 0; i < boundaryObj.length; ++i) { @@ -488,7 +496,7 @@ cc.Class({ barrierVertLabelNode.setPosition(cc.v2(wx, wy)); const barrierVertLabel = barrierVertLabelNode.addComponent(cc.Label); barrierVertLabel.fontSize = 12; - barrierVertLabel.lineHeight = barrierVertLabel.fontSize+1; + barrierVertLabel.lineHeight = barrierVertLabel.fontSize + 1; barrierVertLabel.string = `(${wx.toFixed(1)}, ${wy.toFixed(1)})`; safelyAddChild(self.node, barrierVertLabelNode); setLocalZOrder(barrierVertLabelNode, 5); @@ -608,10 +616,12 @@ cc.Class({ self._initPlayerRichInfoDict(players, playerMetas); // Show the top status indicators for IN_BATTLE - const playersInfoScriptIns = self.playersInfoNode.getComponent("PlayersInfo"); - for (let i in playerMetas) { - const playerMeta = playerMetas[i]; - playersInfoScriptIns.updateData(playerMeta); + if (self.playersInfoNode) { + const playersInfoScriptIns = self.playersInfoNode.getComponent("PlayersInfo"); + for (let i in playerMetas) { + const playerMeta = playerMetas[i]; + playersInfoScriptIns.updateData(playerMeta); + } } self.renderFrameId = rdf.id; @@ -629,7 +639,7 @@ cc.Class({ const canvasNode = self.canvasNode; self.ctrl = canvasNode.getComponent("TouchEventsManager"); self.enableInputControls(); - if (self.countdownToBeginGameNode.parent) { + if (self.countdownToBeginGameNode && self.countdownToBeginGameNode.parent) { self.countdownToBeginGameNode.parent.removeChild(self.countdownToBeginGameNode); } self.transitToState(ALL_MAP_STATES.VISUAL); @@ -751,10 +761,11 @@ cc.Class({ spawnPlayerNode(joinIndex, vx, vy, playerRichInfo) { const self = this; const newPlayerNode = 1 == joinIndex ? cc.instantiate(self.player1Prefab) : cc.instantiate(self.player2Prefab); // hardcoded for now, car color determined solely by joinIndex + const playerScriptIns = newPlayerNode.getComponent("ControlledCharacter"); const wpos = self.virtualGridToWorldPos(vx, vy); newPlayerNode.setPosition(cc.v2(wpos[0], wpos[1])); - newPlayerNode.getComponent("SelfPlayer").mapNode = self.node; + playerScriptIns.mapNode = self.node; const cpos = self.virtualGridToPlayerColliderPos(vx, vy, playerRichInfo); const d = playerRichInfo.colliderRadius * 2, x0 = cpos[0], @@ -769,7 +780,6 @@ cc.Class({ setLocalZOrder(newPlayerNode, 5); newPlayerNode.active = true; - const playerScriptIns = newPlayerNode.getComponent("SelfPlayer"); playerScriptIns.scheduleNewDirection({ dx: playerRichInfo.dir.dx, dy: playerRichInfo.dir.dy @@ -933,23 +943,29 @@ cc.Class({ self._initPlayerRichInfoDict(players, playerMetas); // Show the top status indicators for IN_BATTLE - const playersInfoScriptIns = self.playersInfoNode.getComponent("PlayersInfo"); - for (let i in playerMetas) { - const playerMeta = playerMetas[i]; - playersInfoScriptIns.updateData(playerMeta); + if (self.playersInfoNode) { + const playersInfoScriptIns = self.playersInfoNode.getComponent("PlayersInfo"); + for (let i in playerMetas) { + const playerMeta = playerMetas[i]; + playersInfoScriptIns.updateData(playerMeta); + } } console.log("Calling `onBattleReadyToStart` with:", playerMetas); - const findingPlayerScriptIns = self.findingPlayerNode.getComponent("FindingPlayer"); - findingPlayerScriptIns.hideExitButton(); - findingPlayerScriptIns.updatePlayersInfo(playerMetas); + if (self.findingPlayerNode) { + const findingPlayerScriptIns = self.findingPlayerNode.getComponent("FindingPlayer"); + findingPlayerScriptIns.hideExitButton(); + findingPlayerScriptIns.updatePlayersInfo(playerMetas); + } // Delay to hide the "finding player" GUI, then show a countdown clock - window.setTimeout(() => { - self.hideFindingPlayersGUI(); - const countDownScriptIns = self.countdownToBeginGameNode.getComponent("CountdownToBeginGame"); - countDownScriptIns.setData(); - self.showPopupInCanvas(self.countdownToBeginGameNode); - }, 1500); + if (self.countdownToBeginGameNode) { + window.setTimeout(() => { + self.hideFindingPlayersGUI(); + const countDownScriptIns = self.countdownToBeginGameNode.getComponent("CountdownToBeginGame"); + countDownScriptIns.setData(); + self.showPopupInCanvas(self.countdownToBeginGameNode); + }, 1500); + } }, applyRoomDownsyncFrameDynamics(rdf) { diff --git a/frontend/assets/scripts/NPCPlayer.js b/frontend/assets/scripts/NPCPlayer.js deleted file mode 100644 index fae2382..0000000 --- a/frontend/assets/scripts/NPCPlayer.js +++ /dev/null @@ -1,326 +0,0 @@ -const COLLISION_WITH_PLAYER_STATE = { - WALKING_COLLIDABLE: 0, - STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM: 1, - STILL_NEAR_SELF_PLAYER_ONLY_PLAYED_ANIM: 2, - STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM: 3, - STILL_NEAR_OTHER_PLAYER_ONLY_PLAYED_ANIM: 4, - STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM: 5, - STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM: 6, - WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER: 7, - STILL_NEAR_NOBODY_PLAYING_ANIM: 8, -}; - -const STILL_NEAR_SELF_PLAYER_STATE_SET = new Set(); -STILL_NEAR_SELF_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM); -STILL_NEAR_SELF_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYED_ANIM); -STILL_NEAR_SELF_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM); -STILL_NEAR_SELF_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM); - -const STILL_NEAR_OTHER_PLAYER_STATE_SET = new Set(); -STILL_NEAR_OTHER_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM); -STILL_NEAR_OTHER_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYED_ANIM); -STILL_NEAR_OTHER_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM); -STILL_NEAR_OTHER_PLAYER_STATE_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM); - -const STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET = new Set(); -STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM); -STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYED_ANIM); -STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM); -STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYED_ANIM); -STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM); -STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM); -STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.add(COLLISION_WITH_PLAYER_STATE.STILL_NEAR_NOBODY_PLAYING_ANIM); - -function transitWalkingConditionallyCollidableToUnconditionallyCollidable(currentCollisionWithPlayerState) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER: - return COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE; - } - - return currentCollisionWithPlayerState; -} - -function transitUponSelfPlayerLeftProximityArea(currentCollisionWithPlayerState) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_NOBODY_PLAYING_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYED_ANIM: - return COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM: - return COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER; - } - return currentCollisionWithPlayerState; -} - -function transitDueToNoBodyInProximityArea(currentCollisionWithPlayerState) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM: - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM: - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_NOBODY_PLAYING_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYED_ANIM: - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYED_ANIM: - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM: - return COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER; - } - return currentCollisionWithPlayerState; -} - -function transitToPlayingStunnedAnim(currentCollisionWithPlayerState, dueToSelfPlayer, dueToOtherPlayer) { - if (dueToSelfPlayer) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE: - case COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM; - } - } - - if (dueToOtherPlayer) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM; - } - } - // TODO: Any error to throw? - return currentCollisionWithPlayerState; -} - -function transitDuringPlayingStunnedAnim(currentCollisionWithPlayerState, dueToSelfPlayerComesIntoProximity, dueToOtherPlayerComesIntoProximity) { - if (dueToSelfPlayerComesIntoProximity) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_NOBODY_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM; - } - } - - if (dueToOtherPlayerComesIntoProximity) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_NOBODY_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM; - } - } - // TODO: Any error to throw? - return currentCollisionWithPlayerState; -} - -function transitStunnedAnimPlayingToPlayed(currentCollisionWithPlayerState, forceNotCollidableWithOtherPlayer) { - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_ONLY_PLAYED_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYED_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYING_ANIM: - return COLLISION_WITH_PLAYER_STATE.STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM; - - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_NOBODY_PLAYING_ANIM: - return (true == forceNotCollidableWithOtherPlayer ? COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER : COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE); - } - // TODO: Any error to throw? - return currentCollisionWithPlayerState; -} - -function transitStunnedAnimPlayedToWalking(currentCollisionWithPlayerState) { - /* - * Intentionally NOT transiting for - * - * - STILL_NEAR_SELF_PLAYER_NEAR_OTHER_PLAYER_PLAYED_ANIM, or - * - STILL_NEAR_SELF_PLAYER_ONLY_PLAYED_ANIM, - * - * which should be transited upon leaving of "SelfPlayer". - */ - switch (currentCollisionWithPlayerState) { - case COLLISION_WITH_PLAYER_STATE.STILL_NEAR_OTHER_PLAYER_ONLY_PLAYED_ANIM: - return COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER; - } - // TODO: Any error to throw? - return currentCollisionWithPlayerState; -} - -const BasePlayer = require("./BasePlayer"); - -cc.Class({ - extends: BasePlayer, - - // LIFE-CYCLE CALLBACKS: - start() { - BasePlayer.prototype.start.call(this); - - this.scheduleNewDirection(this._generateRandomDirection()); - }, - - onLoad() { - BasePlayer.prototype.onLoad.call(this); - const self = this; - - this.collisionWithPlayerState = COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE; - - this.clips = { - '01': 'FlatHeadSisterRunTop', - '0-1': 'FlatHeadSisterRunBottom', - '-20': 'FlatHeadSisterRunLeft', - '20': 'FlatHeadSisterRunRight', - '-21': 'FlatHeadSisterRunTopLeft', - '21': 'FlatHeadSisterRunTopRight', - '-2-1': 'FlatHeadSisterRunBottomLeft', - '2-1': 'FlatHeadSisterRunBottomRight' - }; - - - self.onStunnedAnimPlayedSafe = () => { - const oldCollisionWithPlayerState = self.collisionWithPlayerState; - self.collisionWithPlayerState = transitStunnedAnimPlayingToPlayed(this.collisionWithPlayerState, true); - if (oldCollisionWithPlayerState == self.collisionWithPlayerState || !self.node) return; - - self.scheduleNewDirection(self._generateRandomDirection()); - self.collisionWithPlayerState = transitStunnedAnimPlayedToWalking(self.collisionWithPlayerState); - setTimeout(() => { - self.collisionWithPlayerState = transitWalkingConditionallyCollidableToUnconditionallyCollidable(self.collisionWithPlayerState); - }, 5000); - }; - - self.onStunnedAnimPlayedSafeAction = cc.callFunc(self.onStunnedAnimPlayedSafe, self); - - self.playStunnedAnim = () => { - let colliededAction1 = cc.rotateTo(0.2, -15); - let colliededAction2 = cc.rotateTo(0.3, 15); - let colliededAction3 = cc.rotateTo(0.2, 0); - - self.node.runAction(cc.sequence( - cc.callFunc(() => { - self.player.pause() - }, self), - colliededAction1, - colliededAction2, - colliededAction3, - cc.callFunc(() => { - self.player.resume() - }, self), - self.onStunnedAnimPlayedSafeAction - )); - - // NOTE: Use .on('stop', self.onStunnedAnimPlayedSafe) if necessary. - } - }, - - _canMoveBy(vecToMoveBy) { - if (COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE_WITH_SELF_PLAYER_BUT_NOT_OTHER_PLAYER != this.collisionWithPlayerState && COLLISION_WITH_PLAYER_STATE.WALKING_COLLIDABLE != this.collisionWithPlayerState) { - return false; - } - - const superRet = BasePlayer.prototype._canMoveBy.call(this, vecToMoveBy); - const self = this; - - const computedNewDifferentPosLocalToParentWithinCurrentFrame = self.node.position.add(vecToMoveBy); - - const currentSelfColliderCircle = self.node.getComponent("cc.CircleCollider"); - let nextSelfColliderCircle = null; - if (0 < self.contactedBarriers.length || 0 < self.contactedNPCPlayers.length || 0 < self.contactedControlledPlayers) { - /* To avoid unexpected buckling. */ - const mutatedVecToMoveBy = vecToMoveBy.mul(2); - nextSelfColliderCircle = { - position: self.node.position.add(vecToMoveBy.mul(2)).add(currentSelfColliderCircle.offset), - radius: currentSelfColliderCircle.radius, - }; - } else { - nextSelfColliderCircle = { - position: computedNewDifferentPosLocalToParentWithinCurrentFrame.add(currentSelfColliderCircle.offset), - radius: currentSelfColliderCircle.radius, - }; - } - - for (let aCircleCollider of self.contactedControlledPlayers) { - let contactedCircleLocalToParentWithinCurrentFrame = { - position: aCircleCollider.node.position.add(aCircleCollider.offset), - radius: aCircleCollider.radius, - }; - if (cc.Intersection.circleCircle(contactedCircleLocalToParentWithinCurrentFrame, nextSelfColliderCircle)) { - return false; - } - } - - return superRet; - }, - - update(dt) { - BasePlayer.prototype.update.call(this, dt); - }, - - onCollisionEnter(other, self) { - BasePlayer.prototype.onCollisionEnter.call(this, other, self); - const playerScriptIns = self.getComponent(self.node.name); - switch (other.node.name) { - case "SelfPlayer": - playerScriptIns._addContactedControlledPlayers(other); - if (1 == playerScriptIns.contactedControlledPlayers.length) { - // When "SelfPlayer" comes into proximity area. - if (!STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.has(playerScriptIns.collisionWithPlayerState)) { - playerScriptIns.collisionWithPlayerState = transitToPlayingStunnedAnim(playerScriptIns.collisionWithPlayerState, true, false); - playerScriptIns.playStunnedAnim(); - } else { - playerScriptIns.collisionWithPlayerState = transitDuringPlayingStunnedAnim(playerScriptIns.collisionWithPlayerState, true, false); - } - } - break; - case "NPCPlayer": - if (1 == playerScriptIns.contactedNPCPlayers.length) { - // When one of the other "OtherPlayer"s comes into proximity area. - if (!STILL_SHOULD_NOT_PLAY_STUNNED_ANIM_SET.has(playerScriptIns.collisionWithPlayerState)) { - const oldState = playerScriptIns.collisionWithPlayerState; - playerScriptIns.collisionWithPlayerState = transitToPlayingStunnedAnim(oldState, false, true); - if (playerScriptIns.collisionWithPlayerState != oldState) { - playerScriptIns.playStunnedAnim(); - } - } else { - playerScriptIns.collisionWithPlayerState = transitDuringPlayingStunnedAnim(playerScriptIns.collisionWithPlayerState, false, true); - } - } - break; - default: - break; - } - }, - - onCollisionStay(other, self) { - // TBD. - }, - - onCollisionExit(other, self) { - BasePlayer.prototype.onCollisionExit.call(this, other, self); - const playerScriptIns = self.getComponent(self.node.name); - switch (other.node.name) { - case "SelfPlayer": - playerScriptIns._removeContactedControlledPlayer(other); - if (0 == playerScriptIns.contactedControlledPlayers.length) { - // Special release step. - if (STILL_NEAR_SELF_PLAYER_STATE_SET.has(playerScriptIns.collisionWithPlayerState)) { - playerScriptIns.collisionWithPlayerState = transitUponSelfPlayerLeftProximityArea(playerScriptIns.collisionWithPlayerState); - } - } - if (0 == playerScriptIns.contactedControlledPlayers.length && 0 == playerScriptIns.contactedNPCPlayers.length) { - transitDueToNoBodyInProximityArea(playerScriptIns.collisionWithPlayerState); - } - break; - case "NPCPlayer": - if (0 == playerScriptIns.contactedControlledPlayers.length && 0 == playerScriptIns.contactedNPCPlayers.length) { - transitDueToNoBodyInProximityArea(playerScriptIns.collisionWithPlayerState); - } - break; - default: - break; - } - }, -}); diff --git a/frontend/assets/scripts/NPCPlayer.js.meta b/frontend/assets/scripts/NPCPlayer.js.meta deleted file mode 100644 index baf568c..0000000 --- a/frontend/assets/scripts/NPCPlayer.js.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.0.5", - "uuid": "17759956-1f8c-421f-bac2-7f4dd7ccdcda", - "isPlugin": false, - "loadPluginInWeb": true, - "loadPluginInNative": true, - "loadPluginInEditor": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/scripts/OfflineMap.js b/frontend/assets/scripts/OfflineMap.js index 84705f5..ada2626 100644 --- a/frontend/assets/scripts/OfflineMap.js +++ b/frontend/assets/scripts/OfflineMap.js @@ -17,11 +17,47 @@ cc.Class({ console.warn("+++++++ Map onDestroy()"); }, + spawnPlayerNode(joinIndex, vx, vy, playerRichInfo) { + const self = this; + const newPlayerNode = cc.instantiate(self.controlledCharacterPrefab) + const playerScriptIns = newPlayerNode.getComponent("ControlledCharacter"); + const wpos = self.virtualGridToWorldPos(vx, vy); + + newPlayerNode.setPosition(cc.v2(wpos[0], wpos[1])); + + playerScriptIns.mapNode = self.node; + const cpos = self.virtualGridToPlayerColliderPos(vx, vy, playerRichInfo); + const d = playerRichInfo.colliderRadius * 2, + x0 = cpos[0], + y0 = cpos[1]; + let pts = [[0, 0], [d, 0], [d, d], [0, d]]; + + const newPlayerCollider = self.collisionSys.createPolygon(x0, y0, pts); + const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; + self.collisionSysMap.set(collisionPlayerIndex, newPlayerCollider); + + safelyAddChild(self.node, newPlayerNode); + setLocalZOrder(newPlayerNode, 5); + + newPlayerNode.active = true; + playerScriptIns.scheduleNewDirection({ + dx: playerRichInfo.dir.dx, + dy: playerRichInfo.dir.dy + }, true); + + return [newPlayerNode, playerScriptIns]; + }, + onLoad() { const self = this; window.mapIns = self; - self.mainCameraNode = canvasNode.getChildByName("Main Camera"); + cc.director.getCollisionManager().enabled = false; + + const mapNode = self.node; + const canvasNode = mapNode.parent; + + self.mainCameraNode = self.canvasNode.getChildByName("Main Camera"); self.mainCamera = self.mainCameraNode.getComponent(cc.Camera); for (let child of self.mainCameraNode.children) { child.setScale(1 / self.mainCamera.zoomRatio); @@ -31,37 +67,27 @@ cc.Class({ /** Init required prefab ended. */ - self.inputDelayFrames = parsedBattleColliderInfo.inputDelayFrames; - self.inputScaleFrames = parsedBattleColliderInfo.inputScaleFrames; - self.inputFrameUpsyncDelayTolerance = parsedBattleColliderInfo.inputFrameUpsyncDelayTolerance; + self.inputDelayFrames = 8; + self.inputScaleFrames = 2; + self.inputFrameUpsyncDelayTolerance = 2; - self.battleDurationNanos = parsedBattleColliderInfo.battleDurationNanos; - self.rollbackEstimatedDt = parsedBattleColliderInfo.rollbackEstimatedDt; - self.rollbackEstimatedDtMillis = parsedBattleColliderInfo.rollbackEstimatedDtMillis; - self.rollbackEstimatedDtNanos = parsedBattleColliderInfo.rollbackEstimatedDtNanos; - self.maxChasingRenderFramesPerUpdate = parsedBattleColliderInfo.maxChasingRenderFramesPerUpdate; + self.rollbackEstimatedDt = 0.016667; + self.rollbackEstimatedDtMillis = 16.667; + self.rollbackEstimatedDtNanos = 16666666; + self.maxChasingRenderFramesPerUpdate = 5; - self.worldToVirtualGridRatio = parsedBattleColliderInfo.worldToVirtualGridRatio; - self.virtualGridToWorldRatio = parsedBattleColliderInfo.virtualGridToWorldRatio; + self.worldToVirtualGridRatio = 1000; + self.virtualGridToWorldRatio = 1.0 / self.worldToVirtualGridRatio; const tiledMapIns = self.node.getComponent(cc.TiledMap); - // It's easier to just use the "barrier"s extracted by the backend (all anchor points in world coordinates), but I'd like to verify frontend tmx parser logic as well. - const fullPathOfTmxFile = cc.js.formatStr("map/%s/map", parsedBattleColliderInfo.stageName); + const fullPathOfTmxFile = cc.js.formatStr("map/%s/map", "dungeon"); cc.loader.loadRes(fullPathOfTmxFile, cc.TiledMapAsset, (err, tmxAsset) => { if (null != err) { console.error(err); return; } - /* - [WARNING] - - - The order of the following statements is important, because we should have finished "_resetCurrentMatch" before the first "RoomDownsyncFrame". - - It's important to assign new "tmxAsset" before "extractBoundaryObjects", to ensure that the correct tilesets are used. - - To ensure clearance, put destruction of the "cc.TiledMap" component preceding that of "mapNode.destroyAllChildren()". - */ - tiledMapIns.tmxAsset = null; mapNode.removeAllChildren(); self._resetCurrentMatch(); @@ -71,15 +97,6 @@ cc.Class({ const newTileSize = tiledMapIns.getTileSize(); self.node.setContentSize(newMapSize.width * newTileSize.width, newMapSize.height * newTileSize.height); self.node.setPosition(cc.v2(0, 0)); - /* - * Deliberately hiding "ImageLayer"s. This dirty fix is specific to "CocosCreator v2.2.1", where it got back the rendering capability of "ImageLayer of Tiled", yet made incorrectly. In this game our "markers of ImageLayers" are rendered by dedicated prefabs with associated colliders. - * - * -- YFLu, 2020-01-23 - */ - const existingImageLayers = tiledMapIns.getObjectGroups(); - for (let singleImageLayer of existingImageLayers) { - singleImageLayer.node.opacity = 0; - } let barrierIdCounter = 0; const boundaryObjs = tileCollisionManager.extractBoundaryObjects(self.node); @@ -127,6 +144,34 @@ cc.Class({ const collisionBarrierIndex = (self.collisionBarrierIndexPrefix + barrierIdCounter); self.collisionSysMap.set(collisionBarrierIndex, newBarrier); } + + const startRdf = { + id: window.MAGIC_ROOM_DOWNSYNC_FRAME_ID.BATTLE_START, + players: { + 10: { + id: 10, + virtualGridX: 0, + virtualGridY: 0, + speed: 2*self.worldToVirtualGridRatio, + dir: { + dx: 0, + dy: 0 + } + }, + }, + playerMetas: { + 10: { + colliderRadius: 12, + }, + } + }; + self.selfPlayerInfo = { + id: 10 + }; + self._initPlayerRichInfoDict(startRdf.players, startRdf.playerMetas); + self.onRoomDownsyncFrame(startRdf); + + self.battleState = ALL_BATTLE_STATES.IN_BATTLE; }); }, diff --git a/frontend/assets/scripts/Pumpkin.js b/frontend/assets/scripts/Pumpkin.js deleted file mode 100644 index 427723a..0000000 --- a/frontend/assets/scripts/Pumpkin.js +++ /dev/null @@ -1,13 +0,0 @@ -const Bullet = require("./Bullet"); - -cc.Class({ - extends: Bullet, - // LIFE-CYCLE CALLBACKS: - properties: { - }, - - onLoad() { - Bullet.prototype.onLoad.call(this); - }, - -}); diff --git a/frontend/assets/scripts/Pumpkin.js.meta b/frontend/assets/scripts/Pumpkin.js.meta deleted file mode 100644 index fd6f9b6..0000000 --- a/frontend/assets/scripts/Pumpkin.js.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.0.5", - "uuid": "c3bb6519-af90-4641-bb5e-5abbbcdfa6da", - "isPlugin": false, - "loadPluginInWeb": true, - "loadPluginInNative": true, - "loadPluginInEditor": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/scripts/Treasure.js b/frontend/assets/scripts/Treasure.js deleted file mode 100644 index cc032cb..0000000 --- a/frontend/assets/scripts/Treasure.js +++ /dev/null @@ -1,26 +0,0 @@ -window.LOW_SCORE_TREASURE_TYPE = 1; -window.HIGH_SCORE_TREASURE_TYPE = 2; - -window.LOW_SCORE_TREASURE_SCORE = 100; -window.HIGH_SCORE_TREASURE_SCORE = 200; - -cc.Class({ - extends: cc.Component, - - properties: { - }, - - setData (treasureInfo) { - const self = this; - this.score = treasureInfo.score; - this.type = treasureInfo.type; - - this.treasureInfo = treasureInfo; - - const spriteComponent = this.node.getComponent(cc.Sprite); - const targetGid = (window.LOW_SCORE_TREASURE_TYPE == treasureInfo.type ? window.battleEntityTypeNameToGlobalGid["LowScoreTreasure"] : window.battleEntityTypeNameToGlobalGid["HighScoreTreasure"]) - spriteComponent.spriteFrame = window.getOrCreateSpriteFrameForGid(targetGid).spriteFrame; - }, - - start() {}, -}) diff --git a/frontend/assets/scripts/Treasure.js.meta b/frontend/assets/scripts/Treasure.js.meta deleted file mode 100644 index 059e451..0000000 --- a/frontend/assets/scripts/Treasure.js.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.0.5", - "uuid": "5eea6ce5-0343-4776-80a4-fccd69bd099b", - "isPlugin": false, - "loadPluginInWeb": true, - "loadPluginInNative": true, - "loadPluginInEditor": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/scripts/TreasurePickedUpAnim.js b/frontend/assets/scripts/TreasurePickedUpAnim.js deleted file mode 100644 index 21fd04c..0000000 --- a/frontend/assets/scripts/TreasurePickedUpAnim.js +++ /dev/null @@ -1,84 +0,0 @@ -cc.Class({ - extends: cc.Component, - - properties: { - pickedUpAnimNode: { - type: cc.Node, - default: null - }, - durationMillis: { - default: 0 - }, - binglingAnimNode: { - type: cc.Node, - default: null - }, - binglingAnimDurationMillis: { - default: 0 - }, - scoreLabelNode: { - type: cc.Node, - default: null - } - - }, - - - setData (treasureInfo) { - const self = this; - this.score = treasureInfo.score ? treasureInfo.score : 100 ; - this.type = treasureInfo.type ? treasureInfo.type : 1; - this.scoreLabelNode.getComponent(cc.Label).string = this.score; - const spriteComponent = this.pickedUpAnimNode.getComponent(cc.Sprite); - //hardcode treasurePNG's path. - cc.loader.loadRes("textures/treasures/"+ this.type, cc.SpriteFrame, function (err, frame) { - if(err){ - cc.warn(err); - return; - } - spriteComponent.spriteFrame = frame; - }) - }, - - // LIFE-CYCLE CALLBACKS: - update (dt) { - const changingNode = this.pickedUpAnimNode; - const elapsedMillis = Date.now() - this.startedAtMillis; - if(elapsedMillis >= this.binglingAnimDurationMillis && null != this.binglingAnimNode && true == this.binglingAnimNode.active) { - this.binglingAnimNode.active = false; - this.startedAtMillis = Date.now(); - } - if(this.binglingAnimNode.active) - return; - if (elapsedMillis > this.durationMillis) { - this.node.destroy(); - return; - } - if (elapsedMillis <= this.firstDurationMillis) { - let posDiff = cc.v2(0, dt * this.yIncreaseSpeed); - changingNode.setPosition(changingNode.position.add(posDiff)); - this.scoreLabelNode.setPosition(this.scoreLabelNode.position.add(posDiff)); - changingNode.scale += (this.scaleIncreaseSpeed*dt); - } else { - let posDiff = cc.v2(dt * this.xIncreaseSpeed , ( -1 *dt * this.yDecreaseSpeed)); - changingNode.setPosition(changingNode.position.add(posDiff)); - this.scoreLabelNode.setPosition(this.scoreLabelNode.position.add(posDiff)); - changingNode.opacity -= dt * this.opacityDegradeSpeed; - this.scoreLabelNode.opacity -= dt * this.opacityDegradeSpeed; - } - }, - - onLoad() { - this.pickedUpAnimNode.scale = 0; - this.startedAtMillis = Date.now(); - - this.firstDurationMillis = (0.8*this.durationMillis); - this.yIncreaseSpeed = (200 *1000/this.firstDurationMillis); - this.scaleIncreaseSpeed = (2 * 1000/this.firstDurationMillis); - - this.scondDurationMillis = (0.2 * this.durationMillis ); - this.opacityDegradeSpeed = (255*1000/this.scondDurationMillis); - this.yDecreaseSpeed = (30*1000/this.scondDurationMillis); - this.xIncreaseSpeed = (20*1000/this.scondDurationMillis); - } -}); diff --git a/frontend/assets/scripts/TreasurePickedUpAnim.js.meta b/frontend/assets/scripts/TreasurePickedUpAnim.js.meta deleted file mode 100644 index 4dc5cd9..0000000 --- a/frontend/assets/scripts/TreasurePickedUpAnim.js.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.0.5", - "uuid": "697ef72c-27ee-4184-9ae3-885808d58153", - "isPlugin": false, - "loadPluginInWeb": true, - "loadPluginInNative": true, - "loadPluginInEditor": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/scripts/Type2NPCPlayer.js b/frontend/assets/scripts/Type2NPCPlayer.js deleted file mode 100644 index f2414fd..0000000 --- a/frontend/assets/scripts/Type2NPCPlayer.js +++ /dev/null @@ -1,28 +0,0 @@ -const BasePlayer = require("./BasePlayer"); - -cc.Class({ - extends: BasePlayer, - - // LIFE-CYCLE CALLBACKS: - start() { - BasePlayer.prototype.start.call(this); - }, - - onLoad() { - BasePlayer.prototype.onLoad.call(this); - this.clips = { - '01': 'FlatHeadSisterRunTop', - '0-1': 'FlatHeadSisterRunBottom', - '-20': 'FlatHeadSisterRunLeft', - '20': 'FlatHeadSisterRunRight', - '-21': 'FlatHeadSisterRunTopLeft', - '21': 'FlatHeadSisterRunTopRight', - '-2-1': 'FlatHeadSisterRunBottomLeft', - '2-1': 'FlatHeadSisterRunBottomRight' - }; - }, - - update(dt) { - }, - -}); diff --git a/frontend/assets/scripts/Type2NPCPlayer.js.meta b/frontend/assets/scripts/Type2NPCPlayer.js.meta deleted file mode 100644 index 0c1d04e..0000000 --- a/frontend/assets/scripts/Type2NPCPlayer.js.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.0.5", - "uuid": "233a1795-0de3-4d7c-9ce6-c5736ade723f", - "isPlugin": false, - "loadPluginInWeb": true, - "loadPluginInNative": true, - "loadPluginInEditor": false, - "subMetas": {} -} \ No newline at end of file