//Modules切图数据 第一个数据为Image索引，第二个为横坐标，第三个为纵坐标，第四个为宽，第五个为高
short[][] modules = {
	{0,0,3,37,36},
	{0,38,1,46,33},
	{0,85,0,19,25},
	{0,105,0,20,17},
	{0,86,26,11,12},
	{0,98,26,14,15},
	{0,114,19,11,23},
	{0,0,40,38,41},
	{0,39,38,38,39},
	{0,78,42,37,41},
	{0,116,48,10,19},
	{0,0,82,25,22},
	{0,26,81,18,29},
	{0,48,78,20,39},
	{0,71,84,21,22},
	{0,94,83,13,20},
	{0,108,83,12,23},
	{0,0,109,27,21},
	{0,28,110,19,39},
	{0,48,118,18,43},
	{0,68,108,11,41},
	{0,80,107,17,36},
	{0,99,109,14,16},
	{0,115,107,12,28},
	{0,112,147,15,34},
	{0,93,168,18,8},
	{0,103,128,11,35},
	{0,99,148,4,17},
	{0,86,144,11,28},
	{0,78,160,8,21},
	{0,67,149,12,13},
	{0,68,163,8,13},
	{0,49,163,16,15},
	{0,24,149,23,34},
	{0,0,130,24,22},
	{0,0,153,23,25},
};
//Frames数据，第一组为攻击范围，第二组为被攻击范围，之后为Modules数据
//Modules数据，第一个为ModulesId，第二个为Transform，第三个为X偏移量，第四个为Y偏移量
frames = {
	{//stand01
		{0,0,0,0},{0,0,0,0},{7,0,-28,-39},{6,0,10,-40},{30,0,15,-53}
	},{//stand02
		{0,0,0,0},{0,0,0,0},{8,0,-28,-37},{14,0,10,-37},{31,0,25,-50}
	},{//stand03
		{0,0,0,0},{0,0,0,0},{8,0,-28,-37},{29,0,9,-36},{28,0,17,-52}
	},{//stand04
		{0,0,0,0},{0,0,0,0},{9,0,-27,-39},{6,0,10,-39},{22,0,10,-55}
	},{//stand01
		{0,0,0,0},{0,0,0,0},{7,0,-28,-39},{6,0,10,-40},{30,0,15,-53}
	},{//run01
		{0,0,0,0},{0,0,0,0},{12,0,-21,-32},{5,0,-4,-14},{11,0,-45,-32},{15,0,-4,-37},{23,0,8,-54}
	},{//run02
		{0,0,0,0},{0,0,0,0},{18,0,-20,-36},{17,0,-47,-35},{27,0,-2,-38},{26,0,2,-59}
	},{//run03
		{0,0,0,0},{0,0,0,0},{13,0,-20,-36},{34,0,-44,-36},{29,0,0,-41},{28,0,8,-59}
	},{//run04
		{0,0,0,0},{0,0,0,0},{33,0,-22,-32},{35,0,-45,-31},{24,0,1,-52}
	},{//hit01
		{0,0,0,0},{0,0,0,0},{0,0,-28,-34},{2,0,-47,-36},{4,0,9,-36},{32,0,11,-50}
	},{//hit02
		{0,0,0,0},{0,0,0,0},{1,0,-38,-32},{3,0,-58,-33},{25,0,-11,-40},{10,0,7,-52}
	},{//beHit01
		{0,0,0,0},{0,0,0,0},{19,0,-21,-48},{20,0,-3,-39},{21,0,8,-53}
	},{//beHit01
		{0,0,0,0},{0,0,0,0},{19,0,-20,-48},{20,0,-2,-39},{21,0,9,-53}
	},
};
//Actions数据，第一个为FrameId，第二个X偏移量，第三为Y偏移量，第四个为当前帧需要绘制的次数（帧延时），至少1次，
actions = {
	{//stand
		{0,0,0,1},{1,0,0,1},{2,0,0,1},{3,0,0,1},
	},{//run
		{5,0,0,1},{6,0,0,1},{7,0,0,1},{8,0,0,1},
	},{//hit
		{10,0,0,1},{9,0,0,0},{10,0,0,1},{9,0,0,0},{10,0,0,2},
	},{//behit
		{11,0,0,1},{12,0,0,1},
	},
};
