//Modules切图数据 第一个数据为Image索引，第二个为横坐标，第三个为纵坐标，第四个为宽，第五个为高
short[][] modules = {
	{0,175,143,25,13},
	{0,147,140,24,16},
	{0,165,127,35,13},
	{0,183,118,17,9},
	{0,186,101,14,17},
	{0,145,129,16,7},
	{0,163,108,19,19},
	{0,133,117,22,10},
	{0,132,107,30,9},
	{0,166,99,21,9},
	{0,188,82,12,19},
	{0,165,82,22,16},
	{0,149,76,13,18},
	{0,133,78,16,15},
	{0,134,95,31,11},
	{0,84,133,62,22},
	{0,0,138,83,18},
	{0,75,111,56,21},
	{0,74,91,57,19},
	{0,146,63,16,10},
	{0,174,51,26,16},
	{0,164,52,9,8},
	{0,147,46,15,17},
	{0,187,36,13,15},
	{0,164,34,23,17},
	{0,153,35,11,11},
	{0,183,16,17,18},
	{0,163,17,19,17},
	{0,182,0,18,16},
	{0,165,0,16,16},
	{0,153,0,11,7},
	{0,78,71,55,19},
	{0,96,18,56,26},
	{0,92,37,4,7},
	{0,95,0,57,18},
	{0,0,116,74,21},
	{0,0,90,73,25},
	{0,0,66,76,23},
	{0,0,49,80,17},
	{0,0,27,91,22},
	{0,97,45,47,25},
	{0,81,53,16,17},
	{0,0,0,94,27},
	{0,184,67,16,14},
	{0,162,67,22,12},
};
//Frames数据，第一组为攻击范围，第二组为被攻击范围，之后为Modules数据
//Modules数据，第一个为ModulesId，第二个为Transform，第三个为X偏移量，第四个为Y偏移量
frames = {
	{//stand01
		{0,0,0,0},{0,0,0,0},{28,2,14,-16},{29,2,-22,-16},{42,2,-54,-42},{34,2,-41,-60},{30,2,-27,-67},{8,2,-61,-16}
	},{//stand02
		{0,0,0,0},{0,0,0,0},{27,2,14,-17},{29,2,-22,-16},{39,2,-52,-38},{32,2,-42,-64},{33,2,14,-45},{14,2,-59,-17}
	},{//run01
		{0,0,0,0},{0,0,0,0},{38,2,-43,-34},{24,2,13,-17},{23,2,-9,-18},{40,2,-39,-58},{41,2,8,-50},{1,2,-47,-17},{19,2,-28,-68},{5,2,37,-34}
	},{//run02
		{0,0,0,0},{0,0,0,0},{20,2,12,-18},{37,2,-48,-41},{2,2,-53,-18},{31,2,-46,-60},{19,2,-35,-69},{21,2,28,-26}
	},{//run03
		{0,0,0,0},{0,0,0,0},{44,2,12,-14},{36,2,-48,-39},{43,2,-27,-14},{10,2,25,-32},{31,2,-46,-58},{19,2,-36,-67},{0,2,-55,-14}
	},{//run04
		{0,0,0,0},{0,0,0,0},{9,2,8,-16},{11,2,-28,-16},{35,2,-48,-37},{22,2,-54,-16},{25,2,-39,-16},{17,2,-44,-58},{12,2,26,-31},{19,2,-34,-68}
	},{//att01
		{0,0,0,0},{0,0,0,0},{16,2,-54,-39},{6,2,18,-21},{3,2,-56,-21},{4,2,-14,-21},{15,2,-44,-61},{7,2,-36,-71},{13,2,29,-34}
	},{//att02
		{0,0,0,0},{0,0,0,0},{16,2,-58,-45},{6,2,14,-27},{3,2,-60,-27},{4,2,-18,-27},{15,2,-48,-67},{7,2,-40,-77},{13,2,25,-40}
	},{//att03
		{0,0,0,0},{0,0,0,0},{9,2,1,-16},{11,2,-35,-16},{35,2,-55,-37},{22,2,-61,-16},{25,2,-46,-16},{17,2,-51,-58},{12,2,19,-31},{19,2,-41,-68}
	},{//beHit01
		{0,0,0,0},{0,0,0,0},{44,2,13,-12},{36,2,-48,-37},{43,2,-26,-14},{31,2,-46,-56},{19,2,-36,-65},{0,2,-55,-12},{10,2,25,-30}
	},{//beHit01
		{0,0,0,0},{0,0,0,0},{36,2,-47,-36},{43,2,-25,-14},{10,2,26,-29},{31,2,-45,-55},{19,2,-35,-64},{0,2,-54,-11},{44,2,14,-12}
	},
};
//Actions数据，第一个为FrameId，第二个X偏移量，第三为Y偏移量，第四个为当前帧需要绘制的次数（帧延时），至少1次，
actions = {
	{//stand
		{0,0,0,2},{1,0,0,2},
	},{//run
		{2,0,0,1},{3,0,0,1},{4,0,0,1},{5,0,0,1},
	},{//att
		{6,0,0,1},{7,0,0,0},{7,0,0,2},{8,0,0,2},
	},{//beHit
		{9,0,0,1},{10,0,0,1},
	},
};
