//Modules切图数据 第一个数据为Image索引，第二个为横坐标，第三个为纵坐标，第四个为宽，第五个为高
short[][] modules = {
	{0,0,0,28,32},
	{0,53,104,11,15},
	{0,41,106,11,14},
	{0,44,87,17,16},
	{0,30,104,10,16},
	{0,33,98,9,6},
	{0,33,87,10,10},
	{0,0,103,30,17},
	{0,0,86,30,16},
	{0,36,68,28,18},
	{0,57,38,13,14},
	{0,60,17,10,17},
	{0,61,0,10,16},
	{0,31,45,26,23},
	{0,30,0,29,45},
	{0,0,69,30,16},
	{0,0,51,30,17},
	{0,0,33,30,17},
	{0,66,59,4,6},
};
//Frames数据，第一组为攻击范围，第二组为被攻击范围，之后为Modules数据
//Modules数据，第一个为ModulesId，第二个为Transform，第三个为X偏移量，第四个为Y偏移量
frames = {
	{//stand01
		{0,0,0,0},{0,0,0,0},{17,2,-14,-17},{0,2,-13,-49},{6,2,11,-11},{12,2,16,-40},{18,2,-17,-38}
	},{//stand02
		{0,0,0,0},{0,0,0,0},{0,2,-13,-49},{6,2,11,-11},{16,2,-14,-17},{11,2,16,-41},{18,2,-17,-38}
	},{//stand03
		{0,0,0,0},{0,0,0,0},{0,2,-13,-48},{6,2,11,-11},{15,2,-14,-16},{4,2,16,-40},{18,2,-17,-37}
	},{//stand04
		{0,0,0,0},{0,0,0,0},{0,2,-13,-48},{6,2,11,-11},{8,2,-13,-16},{2,2,16,-38},{18,2,-17,-37}
	},{//stand05
		{0,0,0,0},{0,0,0,0},{0,2,-13,-49},{6,2,11,-12},{7,2,-13,-17},{1,2,16,-40},{18,2,-17,-38}
	},{//att01
		{0,0,0,0},{0,0,0,0},{3,2,-15,-17},{5,2,4,-6},{9,2,-16,-24},{13,2,-9,-47},{10,2,-26,-36}
	},{//beHit
		{0,0,0,0},{0,0,0,0},{14,2,-12,-45},{6,2,13,-10},{18,2,-16,-34}
	},{//beHit02
		{0,0,0,0},{0,0,0,0},{14,2,-11,-45},{6,2,14,-10},{18,2,-15,-34}
	},
};
//Actions数据，第一个为FrameId，第二个X偏移量，第三为Y偏移量，第四个为当前帧需要绘制的次数（帧延时），至少1次，
actions = {
	{//stand
		{0,0,0,1},{1,0,0,1},{2,0,0,1},{3,0,0,1},{4,0,0,1},
	},{//run
		{1,0,0,1},
	},{//att
		{5,0,0,4},
	},{//behit
		{6,0,0,1},{7,0,0,1},
	},{//skill1
		{5,0,0,4},
	},{//skill2
		{5,0,0,4},
	},
};
