//Modules切图数据 第一个数据为Image索引，第二个为横坐标，第三个为纵坐标，第四个为宽，第五个为高
short[][] modules = {
	{0,66,70,24,21},
	{0,71,50,19,20},
	{0,69,30,17,20},
	{0,52,34,17,25},
	{0,62,16,19,12},
	{0,61,0,13,14},
	{0,42,0,19,33},
	{0,32,83,31,8},
	{0,52,65,13,16},
	{0,32,66,19,14},
	{0,27,40,25,17},
	{0,15,64,15,27},
	{0,0,63,14,28},
	{0,0,45,26,18},
	{0,17,25,25,12},
	{0,24,0,18,24},
	{0,0,17,16,28},
	{0,0,0,23,16},
};
//Frames数据，第一组为攻击范围，第二组为被攻击范围，之后为Modules数据
//Modules数据，第一个为ModulesId，第二个为Transform，第三个为X偏移量，第四个为Y偏移量
frames = {
	{//stand01
		{0,0,0,0},{0,0,0,0},{17,0,-12,-54},{16,0,-6,-38},{15,0,6,-65}
	},{//stand02
		{0,0,0,0},{0,0,0,0},{17,0,-12,-54},{16,0,-6,-38},{14,0,2,-56}
	},{//stand03
		{0,0,0,0},{0,0,0,0},{17,0,-12,-55},{16,0,-6,-39},{15,0,6,-66}
	},{//stand04
		{0,0,0,0},{0,0,0,0},{17,0,-12,-55},{16,0,-6,-39},{14,0,2,-57}
	},{//run01
		{0,0,0,0},{0,0,0,0},{12,0,7,-37},{13,0,-15,-55},{15,0,3,-65}
	},{//run01
		{0,0,0,0},{0,0,0,0},{11,0,6,-37},{10,0,-15,-54},{14,0,0,-56}
	},{//att01
		{0,0,0,0},{0,0,0,0},{6,0,18,-64},{5,0,37,-64}
	},{//att02
		{0,0,0,0},{0,0,0,0},{1,0,16,-58},{8,0,35,-62},{4,0,26,-38}
	},{//att02-2
		{0,0,0,0},{0,0,0,0},{1,0,16,-55},{8,0,35,-59},{4,0,26,-35}
	},{//att03
		{0,0,0,0},{0,0,0,0},{8,0,40,-53},{0,0,17,-49},{7,0,-1,-28}
	},{//att03
		{0,0,0,0},{0,0,0,0},{8,0,27,-44},{0,0,4,-40},{7,0,-14,-19}
	},{//beHit01
		{0,0,0,0},{0,0,0,0},{3,0,-5,-45},{2,0,12,-49},{9,0,-23,-34}
	},{//beHit02
		{0,0,0,0},{0,0,0,0},{3,0,-5,-44},{2,0,12,-48},{9,0,-23,-33}
	},
};
//Actions数据，第一个为FrameId，第二个X偏移量，第三为Y偏移量，第四个为当前帧需要绘制的次数（帧延时），至少1次，
actions = {
	{//stand
		{0,0,0,1},{1,0,0,1},{2,0,0,1},{3,0,0,1},
	},{//run
		{4,0,0,1},{5,0,0,1},
	},{//att
		{6,0,0,2},{7,0,0,1},{8,0,0,1},{9,0,0,1},{10,0,0,0},{10,0,0,2},
	},{//behit
		{11,0,0,1},{12,0,0,1},
	},
};
