// Defines battle obstacles. We have two vectors of them:
// * "obstacles" are usual obtacles, that are randomly placed in the battlefield.
// * "absoluteObstacles" are a little special: there can be only one such obstacle in the battlefield and its position is always the same.
//
// Their properties:
// * "allowedTerrains" vector of terrain types (TT format) where obstacle is appropriate
// * "specialBattlefields" vector of battlefield images (BI format) where obstacle is appropriate. If there is a special battlefield image, then only this list is checked. Otherwise it's ignored. 
// * "blockedTiles": for absolute obstacles contains absolute coordinates. For usual obstacles contains offsets relative to the obstacle position (that is bottom left corner). If obstacle is placed in an odd row (counting from 0) and the blocked tile is in an even row, position will be shifted one tile to the left. Thanks to that ie. -16 is always top-right hex, no matter where the obstale will get placed.
// * "width" for usual obstacles it's count of tiles that must be free to the right for obstacle to be placed. For absolute obstacles, it's x offset for the graphics.
// * "height" for usual obstacles it's count of tiles that must be free to the top for obstacle to be placed. For absolute obstacles, it's y offset for the graphics.
// * "animation" is name of the graphics. It's def file for usual obstacles and bitmap for the absolute ones.

{
	"0":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObDino1.def",
		"unknown" : 1,
		"absolute" : false
	},
	"1":
	{
		"allowedTerrains" : ["dirt", "sand", "rough", "subterra"],
		"specialBattlefields" : ["sand_shore"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObDino2.def",
		"unknown" : 0,
		"absolute" : false
	},
	"2":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [0, 1, -14, -15, -16],
		"animation" : "ObDino3.def",
		"unknown" : 1,
		"absolute" : false
	},
	"3":
	{
		"allowedTerrains" : ["dirt", "rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObSkel1.def",
		"unknown" : 1,
		"absolute" : false
	},
	"4":
	{
		"allowedTerrains" : ["dirt", "rough", "subterra"],
		"specialBattlefields" : ["sand_shore", "cursed_ground"],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObSkel2.def",
		"unknown" : 1,
		"absolute" : false
	},
	"5":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3],
		"animation" : "ObBDT01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"6":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [-15, -16],
		"animation" : "ObDRk01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"7":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [0, 1],
		"animation" : "ObDRk02.def",
		"unknown" : 0,
		"absolute" : false
	},
	"8":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [-16],
		"animation" : "ObDRk03.def",
		"unknown" : 1,
		"absolute" : false
	},
	"9":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [0, 1],
		"animation" : "ObDRk04.def",
		"unknown" : 0,
		"absolute" : false
	},
	"10":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [0, 1],
		"animation" : "ObDSh01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"11":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObDTF03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"12":
	{
		"allowedTerrains" : ["dirt", "rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [0, 1, 2, 3],
		"animation" : "ObDtS03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"13":
	{
		"allowedTerrains" : ["dirt", "rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [1, 2, -15],
		"animation" : "ObDtS04.def",
		"unknown" : 1,
		"absolute" : false
	},
	"14":
	{
		"allowedTerrains" : ["dirt", "rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [2, -15, -16],
		"animation" : "ObDtS14.def",
		"unknown" : 1,
		"absolute" : false
	},
	"15":
	{
		"allowedTerrains" : ["dirt", "rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [1, -16, -33],
		"animation" : "ObDtS15.def",
		"unknown" : 1,
		"absolute" : false
	},
	"16":
	{
		"allowedTerrains" : ["sand"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 4,
		"blockedTiles" :  [-15, -16, -32, -33, -48, -49],
		"animation" : "ObDsM01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"17":
	{
		"allowedTerrains" : ["sand"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [1, -15, -16],
		"animation" : "ObDsS02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"18":
	{
		"allowedTerrains" : ["sand"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3, -15, -16],
		"animation" : "ObDsS17.def",
		"unknown" : 1,
		"absolute" : false
	},
	"19":
	{
		"allowedTerrains" : ["grass", "swamp"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObGLg01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"20":
	{
		"allowedTerrains" : ["grass", "swamp"],
		"specialBattlefields" : ["magic_plains"],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [0, 1],
		"animation" : "ObGRk01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"21":
	{
		"allowedTerrains" : ["grass", "swamp"],
		"specialBattlefields" : [],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObGSt01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"22":
	{
		"allowedTerrains" : ["grass"],
		"specialBattlefields" : ["magic_plains"],
		"width" : 6,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3, 4, -13, -14, -15, -16],
		"animation" : "ObGrS01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"23":
	{
		"allowedTerrains" : ["grass"],
		"specialBattlefields" : [],
		"width" : 7,
		"height" : 1,
		"blockedTiles" :  [1, 2],
		"animation" : "OBGrS02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"24":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 1,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObSnS01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"25":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 5,
		"height" : 1,
		"blockedTiles" :  [1, 2, 3, 4],
		"animation" : "ObSnS02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"26":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [0, -16, -33],
		"animation" : "ObSnS03.def",
		"unknown" : 1,
		"absolute" : false
	},
	"27":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 1,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObSnS04.def",
		"unknown" : 1,
		"absolute" : false
	},
	"28":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 1,
		"blockedTiles" :  [1],
		"animation" : "ObSnS05.def",
		"unknown" : 1,
		"absolute" : false
	},
	"29":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [1, 2],
		"animation" : "ObSnS06.def",
		"unknown" : 0,
		"absolute" : false
	},
	"30":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObSnS07.def",
		"unknown" : 1,
		"absolute" : false
	},
	"31":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObSnS08.def",
		"unknown" : 0,
		"absolute" : false
	},
	"32":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 7,
		"height" : 2,
		"blockedTiles" :  [2, 3, 4, 5, -13, -14, -15, -16],
		"animation" : "ObSnS09.def",
		"unknown" : 1,
		"absolute" : false
	},
	"33":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 5,
		"height" : 5,
		"blockedTiles" :  [3, -13, -14, -15, -33, -49, -66],
		"animation" : "ObSnS10.def",
		"unknown" : 1,
		"absolute" : false
	},
	"34":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [0],
		"animation" : "ObSwS01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"35":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 8,
		"height" : 3,
		"blockedTiles" :  [-10, -11, -12, -13, -14, -15, -16],
		"animation" : "ObSwS02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"36":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObSwS03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"37":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 1,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObSwS04.def",
		"unknown" : 0,
		"absolute" : false
	},
	"38":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 5,
		"height" : 4,
		"blockedTiles" :  [-13, -14, -15, -16, -30, -31, -32, -33],
		"animation" : "ObSwS11b.def",
		"unknown" : 1,
		"absolute" : false
	},
	"39":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 3,
		"blockedTiles" :  [-16, -17, -31, -32, -33, -34],
		"animation" : "ObSwS13a.def",
		"unknown" : 1,
		"absolute" : false
	},
	"40":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [0, 1, -16],
		"animation" : "ObRgS01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"41":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 4,
		"height" : 3,
		"blockedTiles" :  [-14, -15, -16, -32, -33],
		"animation" : "ObRgS02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"42":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [1, 2, -15, -16],
		"animation" : "ObRgS03.def",
		"unknown" : 1,
		"absolute" : false
	},
	"43":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [-16, -32, -33],
		"animation" : "ObRgS04.def",
		"unknown" : 1,
		"absolute" : false
	},
	"44":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [-15, -16, -32],
		"animation" : "ObRgS05.def",
		"unknown" : 1,
		"absolute" : false
	},
	"45":
	{
		"allowedTerrains" : ["subterra"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [0, 1, 2, -15, -16],
		"animation" : "ObSuS01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"46":
	{
		"allowedTerrains" : ["subterra"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObSuS02.def",
		"unknown" : 0,
		"absolute" : false
	},
	"47":
	{
		"allowedTerrains" : ["subterra"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 3,
		"blockedTiles" :  [0, 1, 2, 3, -14, -15, -16],
		"animation" : "ObSuS11b.def",
		"unknown" : 0,
		"absolute" : false
	},
	"48":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 3,
		"blockedTiles" :  [-14, -32, -33],
		"animation" : "ObLvS01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"49":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2, -14, -15, -16],
		"animation" : "ObLvS02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"50":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 5,
		"height" : 3,
		"blockedTiles" :  [-13, -14, -15, -30, -31, -32, -33],
		"animation" : "ObLvS03.def",
		"unknown" : 1,
		"absolute" : false
	},
	"51":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObLvS04.def",
		"unknown" : 0,
		"absolute" : false
	},
	"52":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 4,
		"height" : 4,
		"blockedTiles" :  [-14, -15, -32, -33, -49, -50],
		"animation" : "ObLvS09.def",
		"unknown" : 1,
		"absolute" : false
	},
	"53":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 5,
		"height" : 3,
		"blockedTiles" :  [-13, -14, -15, -16, -30, -31],
		"animation" : "ObLvS17.def",
		"unknown" : 1,
		"absolute" : false
	},
	"54":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 5,
		"height" : 3,
		"blockedTiles" :  [-13, -14, -15, -16, -31, -32, -33],
		"animation" : "ObLvS22.def",
		"unknown" : 1,
		"absolute" : false
	},
	"55":
	{
		"allowedTerrains" : ["water"],
		"specialBattlefields" : [],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [-15, -16, -33],
		"animation" : "ObBtS04.def",
		"unknown" : 1,
		"absolute" : false
	},
	"56":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [1, -15, -16],
		"animation" : "ObBhS02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"57":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObBhS03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"58":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 5,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3, -14, -15, -16],
		"animation" : "ObBhS11a.def",
		"unknown" : 1,
		"absolute" : false
	},
	"59":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [1, 2, -14, -15],
		"animation" : "ObBhS12b.def",
		"unknown" : 1,
		"absolute" : false
	},
	"60":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [0, 1, -16],
		"animation" : "ObBhS14b.def",
		"unknown" : 1,
		"absolute" : false
	},
	"61":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["holy_ground"],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObHGs00.def",
		"unknown" : 0,
		"absolute" : false
	},
	"62":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["holy_ground"],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObHGs01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"63":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["holy_ground"],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [1],
		"animation" : "ObHGs02.def",
		"unknown" : 0,
		"absolute" : false
	},
	"64":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["holy_ground"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObHGs03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"65":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["holy_ground"],
		"width" : 4,
		"height" : 3,
		"blockedTiles" :  [0, 1, 2, 3],
		"animation" : "ObHGs04.def",
		"unknown" : 0,
		"absolute" : false
	},
	"66":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["evil_fog"],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObEFs00.def",
		"unknown" : 0,
		"absolute" : false
	},
	"67":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["evil_fog"],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObEFs01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"68":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["evil_fog"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObEFs02.def",
		"unknown" : 0,
		"absolute" : false
	},
	"69":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["evil_fog"],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [1, 2],
		"animation" : "ObEFs03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"70":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["evil_fog"],
		"width" : 6,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3, -12, -13],
		"animation" : "ObEFs04.def",
		"unknown" : 0,
		"absolute" : false
	},
	"71":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["clover_field"],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObCFs00.def",
		"unknown" : 1,
		"absolute" : false
	},
	"72":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["clover_field"],
		"width" : 3,
		"height" : 1,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObCFs01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"73":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["clover_field"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [1, 2, -15, -16],
		"animation" : "ObCFs02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"74":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["clover_field"],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2, -14, -15, -16],
		"animation" : "ObCFs03.def",
		"unknown" : 1,
		"absolute" : false
	},
	"75":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["lucid_pools"],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObLPs00.def",
		"unknown" : 1,
		"absolute" : false
	},
	"76":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["lucid_pools"],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObLPs01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"77":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["lucid_pools"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, -15, -16],
		"animation" : "ObLPs02.def",
		"unknown" : 1,
		"absolute" : false
	},
	"78":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["lucid_pools"],
		"width" : 5,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3, -13, -14, -15, -16],
		"animation" : "ObLPs03.def",
		"unknown" : 1,
		"absolute" : false
	},
	"79":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["fiery_fields"],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObFFs00.def",
		"unknown" : 0,
		"absolute" : false
	},
	"80":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["fiery_fields"],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObFFs01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"81":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["fiery_fields"],
		"width" : 3,
		"height" : 2,
		"blockedTiles" :  [0, 1, 2, -15],
		"animation" : "ObFFs02.def",
		"unknown" : 0,
		"absolute" : false
	},
	"82":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["fiery_fields"],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3, -15, -16],
		"animation" : "ObFFs03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"83":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["fiery_fields"],
		"width" : 3,
		"height" : 3,
		"blockedTiles" :  [0, 1, 2, 3, -14, -15, -16],
		"animation" : "ObFFs04.def",
		"unknown" : 0,
		"absolute" : false
	},
	"84":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["rocklands"],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObRLs00.def",
		"unknown" : 0,
		"absolute" : false
	},
	"85":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["rocklands"],
		"width" : 2,
		"height" : 1,
		"blockedTiles" :  [0, 1],
		"animation" : "ObRLs01.def",
		"unknown" : 0,
		"absolute" : false
	},
	"86":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["rocklands"],
		"width" : 3,
		"height" : 1,
		"blockedTiles" :  [0, 1, 2],
		"animation" : "ObRLs02.def",
		"unknown" : 0,
		"absolute" : false
	},
	"87":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["rocklands"],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [1, 2, 3, -15, -16],
		"animation" : "ObRLs03.def",
		"unknown" : 0,
		"absolute" : false
	},
	"88":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["magic_clouds"],
		"width" : 1,
		"height" : 1,
		"blockedTiles" :  [0],
		"animation" : "ObMCs00.def",
		"unknown" : 1,
		"absolute" : false
	},
	"89":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["magic_clouds"],
		"width" : 2,
		"height" : 2,
		"blockedTiles" :  [1, -16],
		"animation" : "ObMCs01.def",
		"unknown" : 1,
		"absolute" : false
	},
	"90":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["magic_clouds"],
		"width" : 4,
		"height" : 2,
		"blockedTiles" :  [0, 1, -14, -15],
		"animation" : "ObMCs02.def",
		"unknown" : 1,
		"absolute" : false
	},

	"100":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 124,
		"height" : 254,
		"blockedTiles" :  [80, 94, 95, 96, 97, 105, 106, 107, 108, 109, 110],
		"animation" : "ObDtL04.pcx",
		"absolute" : true
	},
	"101":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 256,
		"height" : 254,
		"blockedTiles" :  [73, 91, 108, 109, 110, 111, 112, 113],
		"animation" : "ObDtL06.pcx",
		"absolute" : true
	},
	"102":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 168,
		"height" : 212,
		"blockedTiles" :  [60, 61, 62, 63, 64, 72, 73, 74, 75, 76, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149],
		"animation" : "ObDtL10.pcx",
		"absolute" : true
	},
	"103":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 124,
		"height" : 254,
		"blockedTiles" :  [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98],
		"animation" : "ObDtL02.pcx",
		"absolute" : true
	},
	"104":
	{
		"allowedTerrains" : ["dirt"],
		"specialBattlefields" : [],
		"width" : 146,
		"height" : 254,
		"blockedTiles" :  [76, 77, 78, 79, 80, 89, 90, 91, 92, 93],
		"animation" : "ObDtL03.pcx",
		"absolute" : true
	},
	"105":
	{
		"allowedTerrains" : ["grass"],
		"specialBattlefields" : [],
		"width" : 173,
		"height" : 221,
		"blockedTiles" :  [55, 56, 57, 58, 75, 76, 77, 95, 112, 113, 131],
		"animation" : "ObGrL01.pcx",
		"absolute" : true
	},
	"106":
	{
		"allowedTerrains" : ["grass"],
		"specialBattlefields" : [],
		"width" : 180,
		"height" : 264,
		"blockedTiles" :  [81, 91, 92, 93, 94, 95, 96, 97, 98, 106, 107, 123],
		"animation" : "ObGrL02.pcx",
		"absolute" : true
	},
	"107":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 166,
		"height" : 255,
		"blockedTiles" :  [76, 77, 78, 79, 91, 92, 93, 97, 98, 106, 107, 108],
		"animation" : "ObSnL01.pcx",
		"absolute" : true
	},
	"108":
	{
		"allowedTerrains" : ["snow"],
		"specialBattlefields" : [],
		"width" : 302,
		"height" : 172,
		"blockedTiles" :  [41, 42, 43, 58, 75, 92, 108, 126, 143],
		"animation" : "ObSnL14.pcx",
		"absolute" : true
	},
	"109":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 300,
		"height" : 170,
		"blockedTiles" :  [40, 41, 58, 59, 74, 75, 92, 93, 109, 110, 111, 127, 128, 129, 130],
		"animation" : "ObSwL15.pcx",
		"absolute" : true
	},
	"110":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 278,
		"height" : 171,
		"blockedTiles" :  [43, 60, 61, 77, 93, 94, 95, 109, 110, 126, 127],
		"animation" : "ObSwL14.pcx",
		"absolute" : true
	},
	"111":
	{
		"allowedTerrains" : ["swamp"],
		"specialBattlefields" : [],
		"width" : 256,
		"height" : 254,
		"blockedTiles" :  [74, 75, 76, 77, 91, 92, 93, 94, 95, 109, 110, 111, 112],
		"animation" : "ObSwL22.pcx",
		"absolute" : true
	},
	"112":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 124,
		"height" : 254,
		"blockedTiles" :  [77, 78, 79, 80, 81, 91, 92, 93, 94, 105, 106, 107],
		"animation" : "ObLvL01.pcx",
		"absolute" : true
	},
	"113":
	{
		"allowedTerrains" : ["lava"],
		"specialBattlefields" : [],
		"width" : 256,
		"height" : 128,
		"blockedTiles" :  [43, 60, 61, 76, 77, 93, 109, 126, 127, 142, 143],
		"animation" : "OBLvL02.pcx",
		"absolute" : true
	},
	"114":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 186,
		"height" : 212,
		"blockedTiles" :  [55, 72, 90, 107, 125, 126, 127, 128, 129, 130, 131, 132],
		"animation" : "ObRgL01.pcx",
		"absolute" : true
	},
	"115":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 347,
		"height" : 174,
		"blockedTiles" :  [41, 59, 76, 94, 111, 129, 143, 144, 145],
		"animation" : "ObRgL02.pcx",
		"absolute" : true
	},
	"116":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 294,
		"height" : 169,
		"blockedTiles" :  [40, 41, 42, 43, 58, 75, 93, 110, 128, 145],
		"animation" : "ObRgL03.pcx",
		"absolute" : true
	},
	"117":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 165,
		"height" : 257,
		"blockedTiles" :  [72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 89, 105],
		"animation" : "ObRgL04.pcx",
		"absolute" : true
	},
	"118":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 208,
		"height" : 268,
		"blockedTiles" :  [72, 73, 74, 75, 76, 77, 78, 79, 80, 90, 91, 92, 93, 94, 95, 96, 97],
		"animation" : "ObRgL05.pcx",
		"absolute" : true
	},
	"119":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 252,
		"height" : 254,
		"blockedTiles" :  [73, 74, 75, 76, 77, 78, 91, 92, 93, 94],
		"animation" : "ObRgL06.pcx",
		"absolute" : true
	},
	"120":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 278,
		"height" : 128,
		"blockedTiles" :  [23, 40, 58, 75, 93, 110, 128, 145, 163],
		"animation" : "ObRgL15.pcx",
		"absolute" : true
	},
	"121":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 208,
		"height" : 268,
		"blockedTiles" :  [72, 73, 74, 75, 76, 77, 78, 79, 80, 90, 91, 92, 93, 94, 95, 96, 97],
		"animation" : "ObRgL05.pcx",
		"absolute" : true
	},
	"122":
	{
		"allowedTerrains" : ["rough"],
		"specialBattlefields" : ["cursed_ground"],
		"width" : 168,
		"height" : 212,
		"blockedTiles" :  [73, 74, 75, 76, 77, 78, 79, 90, 91, 92, 93, 94, 95, 96, 97, 106, 107, 108, 109, 110, 111, 112],
		"animation" : "ObRgL22.pcx",
		"absolute" : true
	},
	"123":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 147,
		"height" : 264,
		"blockedTiles" :  [72, 73, 74, 75, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98],
		"animation" : "ObBhL02.pcx",
		"absolute" : true
	},
	"124":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 178,
		"height" : 262,
		"blockedTiles" :  [71, 72, 73, 74, 75, 76, 77, 78, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98],
		"animation" : "ObBhL03.pcx",
		"absolute" : true
	},
	"125":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 173,
		"height" : 257,
		"blockedTiles" :  [72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 89, 90, 105, 106],
		"animation" : "ObBhL05.pcx",
		"absolute" : true
	},
	"126":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 241,
		"height" : 272,
		"blockedTiles" :  [73, 91, 108, 109, 110, 111, 112, 113],
		"animation" : "ObBhL06.pcx",
		"absolute" : true
	},
	"127":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 261,
		"height" : 129,
		"blockedTiles" :  [27, 28, 43, 44, 60, 61, 76, 77, 93, 94, 109, 110, 126, 127, 142, 143, 159],
		"animation" : "ObBhL14.pcx",
		"absolute" : true
	},
	"128":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["sand_shore"],
		"width" : 180,
		"height" : 154,
		"blockedTiles" :  [22, 38, 39, 40, 44, 45, 46, 55, 56, 57, 62, 63, 123, 124, 125, 130, 131, 140, 141, 146, 147, 148],
		"animation" : "ObBhL16.pcx",
		"absolute" : true
	},
	"129":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["clover_field"],
		"width" : 304,
		"height" : 264,
		"blockedTiles" :  [76, 77, 92, 93, 94, 95, 109, 110, 111],
		"animation" : "ObCFL00.pcx",
		"absolute" : true
	},
	"130":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["lucid_pools"],
		"width" : 256,
		"height" : 257,
		"blockedTiles" :  [76, 77, 78, 92, 93, 94, 107, 108, 109],
		"animation" : "ObLPL00.pcx",
		"absolute" : true
	},
	"131":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["fiery_fields"],
		"width" : 257,
		"height" : 255,
		"blockedTiles" :  [76, 77, 91, 92, 93, 94, 95, 108, 109, 110, 111],
		"animation" : "ObFFL00.pcx",
		"absolute" : true
	},
	"132":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["rocklands"],
		"width" : 277,
		"height" : 218,
		"blockedTiles" :  [60, 61, 75, 76, 77, 91, 92, 93, 94, 95],
		"animation" : "ObRLL00.pcx",
		"absolute" : true
	},
	"133":
	{
		"allowedTerrains" : [],
		"specialBattlefields" : ["magic_clouds"],
		"width" : 300,
		"height" : 214,
		"blockedTiles" :  [59, 60, 74, 75, 76, 93, 94, 95, 111, 112],
		"animation" : "ObMCL00.pcx",
		"absolute" : true
	}
}