// 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: // * "allowedTerrain" 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": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObDino1.def", "unknown" : 1, "absolute" : false }, "1": { "allowedTerrain" : ["dirt", "sand", "rough", "subterra"], "specialBattlefields" : ["sand_shore"], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2], "animation" : "ObDino2.def", "unknown" : 0, "absolute" : false }, "2": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 4, "height" : 2, "blockedTiles" : [0, 1, -14, -15, -16], "animation" : "ObDino3.def", "unknown" : 1, "absolute" : false }, "3": { "allowedTerrain" : ["dirt", "rough"], "specialBattlefields" : ["cursed_ground"], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObSkel1.def", "unknown" : 1, "absolute" : false }, "4": { "allowedTerrain" : ["dirt", "rough", "subterra"], "specialBattlefields" : ["sand_shore", "cursed_ground"], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObSkel2.def", "unknown" : 1, "absolute" : false }, "5": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 4, "height" : 2, "blockedTiles" : [1, 2, 3], "animation" : "ObBDT01.def", "unknown" : 1, "absolute" : false }, "6": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 3, "height" : 2, "blockedTiles" : [-15, -16], "animation" : "ObDRk01.def", "unknown" : 1, "absolute" : false }, "7": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 2, "height" : 2, "blockedTiles" : [0, 1], "animation" : "ObDRk02.def", "unknown" : 0, "absolute" : false }, "8": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 2, "height" : 2, "blockedTiles" : [-16], "animation" : "ObDRk03.def", "unknown" : 1, "absolute" : false }, "9": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 2, "height" : 2, "blockedTiles" : [0, 1], "animation" : "ObDRk04.def", "unknown" : 0, "absolute" : false }, "10": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 2, "height" : 2, "blockedTiles" : [0, 1], "animation" : "ObDSh01.def", "unknown" : 0, "absolute" : false }, "11": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObDTF03.def", "unknown" : 0, "absolute" : false }, "12": { "allowedTerrain" : ["dirt", "rough"], "specialBattlefields" : ["cursed_ground"], "width" : 3, "height" : 3, "blockedTiles" : [0, 1, 2, 3], "animation" : "ObDtS03.def", "unknown" : 0, "absolute" : false }, "13": { "allowedTerrain" : ["dirt", "rough"], "specialBattlefields" : ["cursed_ground"], "width" : 3, "height" : 2, "blockedTiles" : [1, 2, -15], "animation" : "ObDtS04.def", "unknown" : 1, "absolute" : false }, "14": { "allowedTerrain" : ["dirt", "rough"], "specialBattlefields" : ["cursed_ground"], "width" : 3, "height" : 2, "blockedTiles" : [2, -15, -16], "animation" : "ObDtS14.def", "unknown" : 1, "absolute" : false }, "15": { "allowedTerrain" : ["dirt", "rough"], "specialBattlefields" : ["cursed_ground"], "width" : 3, "height" : 3, "blockedTiles" : [1, -16, -33], "animation" : "ObDtS15.def", "unknown" : 1, "absolute" : false }, "16": { "allowedTerrain" : ["sand"], "specialBattlefields" : [], "width" : 4, "height" : 4, "blockedTiles" : [-15, -16, -32, -33, -48, -49], "animation" : "ObDsM01.def", "unknown" : 1, "absolute" : false }, "17": { "allowedTerrain" : ["sand"], "specialBattlefields" : [], "width" : 3, "height" : 2, "blockedTiles" : [1, -15, -16], "animation" : "ObDsS02.def", "unknown" : 1, "absolute" : false }, "18": { "allowedTerrain" : ["sand"], "specialBattlefields" : [], "width" : 4, "height" : 2, "blockedTiles" : [1, 2, 3, -15, -16], "animation" : "ObDsS17.def", "unknown" : 1, "absolute" : false }, "19": { "allowedTerrain" : ["grass", "swamp"], "specialBattlefields" : [], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObGLg01.def", "unknown" : 1, "absolute" : false }, "20": { "allowedTerrain" : ["grass", "swamp"], "specialBattlefields" : ["magic_plains"], "width" : 2, "height" : 2, "blockedTiles" : [0, 1], "animation" : "ObGRk01.def", "unknown" : 0, "absolute" : false }, "21": { "allowedTerrain" : ["grass", "swamp"], "specialBattlefields" : [], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObGSt01.def", "unknown" : 1, "absolute" : false }, "22": { "allowedTerrain" : ["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": { "allowedTerrain" : ["grass"], "specialBattlefields" : [], "width" : 7, "height" : 1, "blockedTiles" : [1, 2], "animation" : "OBGrS02.def", "unknown" : 1, "absolute" : false }, "24": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 3, "height" : 1, "blockedTiles" : [0, 1, 2], "animation" : "ObSnS01.def", "unknown" : 1, "absolute" : false }, "25": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 5, "height" : 1, "blockedTiles" : [1, 2, 3, 4], "animation" : "ObSnS02.def", "unknown" : 1, "absolute" : false }, "26": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 3, "height" : 3, "blockedTiles" : [0, -16, -33], "animation" : "ObSnS03.def", "unknown" : 1, "absolute" : false }, "27": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 3, "height" : 1, "blockedTiles" : [0, 1, 2], "animation" : "ObSnS04.def", "unknown" : 1, "absolute" : false }, "28": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 3, "height" : 1, "blockedTiles" : [1], "animation" : "ObSnS05.def", "unknown" : 1, "absolute" : false }, "29": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 3, "height" : 2, "blockedTiles" : [1, 2], "animation" : "ObSnS06.def", "unknown" : 0, "absolute" : false }, "30": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObSnS07.def", "unknown" : 1, "absolute" : false }, "31": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2], "animation" : "ObSnS08.def", "unknown" : 0, "absolute" : false }, "32": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 7, "height" : 2, "blockedTiles" : [2, 3, 4, 5, -13, -14, -15, -16], "animation" : "ObSnS09.def", "unknown" : 1, "absolute" : false }, "33": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 5, "height" : 5, "blockedTiles" : [3, -13, -14, -15, -33, -49, -66], "animation" : "ObSnS10.def", "unknown" : 1, "absolute" : false }, "34": { "allowedTerrain" : ["swamp"], "specialBattlefields" : [], "width" : 2, "height" : 2, "blockedTiles" : [0], "animation" : "ObSwS01.def", "unknown" : 0, "absolute" : false }, "35": { "allowedTerrain" : ["swamp"], "specialBattlefields" : [], "width" : 8, "height" : 3, "blockedTiles" : [-10, -11, -12, -13, -14, -15, -16], "animation" : "ObSwS02.def", "unknown" : 1, "absolute" : false }, "36": { "allowedTerrain" : ["swamp"], "specialBattlefields" : [], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObSwS03.def", "unknown" : 0, "absolute" : false }, "37": { "allowedTerrain" : ["swamp"], "specialBattlefields" : [], "width" : 3, "height" : 1, "blockedTiles" : [0, 1, 2], "animation" : "ObSwS04.def", "unknown" : 0, "absolute" : false }, "38": { "allowedTerrain" : ["swamp"], "specialBattlefields" : [], "width" : 5, "height" : 4, "blockedTiles" : [-13, -14, -15, -16, -30, -31, -32, -33], "animation" : "ObSwS11b.def", "unknown" : 1, "absolute" : false }, "39": { "allowedTerrain" : ["swamp"], "specialBattlefields" : [], "width" : 4, "height" : 3, "blockedTiles" : [-16, -17, -31, -32, -33, -34], "animation" : "ObSwS13a.def", "unknown" : 1, "absolute" : false }, "40": { "allowedTerrain" : ["rough"], "specialBattlefields" : ["cursed_ground"], "width" : 2, "height" : 2, "blockedTiles" : [0, 1, -16], "animation" : "ObRgS01.def", "unknown" : 1, "absolute" : false }, "41": { "allowedTerrain" : ["rough"], "specialBattlefields" : ["cursed_ground"], "width" : 4, "height" : 3, "blockedTiles" : [-14, -15, -16, -32, -33], "animation" : "ObRgS02.def", "unknown" : 1, "absolute" : false }, "42": { "allowedTerrain" : ["rough"], "specialBattlefields" : ["cursed_ground"], "width" : 3, "height" : 2, "blockedTiles" : [1, 2, -15, -16], "animation" : "ObRgS03.def", "unknown" : 1, "absolute" : false }, "43": { "allowedTerrain" : ["rough"], "specialBattlefields" : ["cursed_ground"], "width" : 3, "height" : 3, "blockedTiles" : [-16, -32, -33], "animation" : "ObRgS04.def", "unknown" : 1, "absolute" : false }, "44": { "allowedTerrain" : ["rough"], "specialBattlefields" : ["cursed_ground"], "width" : 3, "height" : 3, "blockedTiles" : [-15, -16, -32], "animation" : "ObRgS05.def", "unknown" : 1, "absolute" : false }, "45": { "allowedTerrain" : ["subterra"], "specialBattlefields" : [], "width" : 3, "height" : 3, "blockedTiles" : [0, 1, 2, -15, -16], "animation" : "ObSuS01.def", "unknown" : 0, "absolute" : false }, "46": { "allowedTerrain" : ["subterra"], "specialBattlefields" : [], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2], "animation" : "ObSuS02.def", "unknown" : 0, "absolute" : false }, "47": { "allowedTerrain" : ["subterra"], "specialBattlefields" : [], "width" : 4, "height" : 3, "blockedTiles" : [0, 1, 2, 3, -14, -15, -16], "animation" : "ObSuS11b.def", "unknown" : 0, "absolute" : false }, "48": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 4, "height" : 3, "blockedTiles" : [-14, -32, -33], "animation" : "ObLvS01.def", "unknown" : 1, "absolute" : false }, "49": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 4, "height" : 2, "blockedTiles" : [0, 1, 2, -14, -15, -16], "animation" : "ObLvS02.def", "unknown" : 1, "absolute" : false }, "50": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 5, "height" : 3, "blockedTiles" : [-13, -14, -15, -30, -31, -32, -33], "animation" : "ObLvS03.def", "unknown" : 1, "absolute" : false }, "51": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2], "animation" : "ObLvS04.def", "unknown" : 0, "absolute" : false }, "52": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 4, "height" : 4, "blockedTiles" : [-14, -15, -32, -33, -49, -50], "animation" : "ObLvS09.def", "unknown" : 1, "absolute" : false }, "53": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 5, "height" : 3, "blockedTiles" : [-13, -14, -15, -16, -30, -31], "animation" : "ObLvS17.def", "unknown" : 1, "absolute" : false }, "54": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 5, "height" : 3, "blockedTiles" : [-13, -14, -15, -16, -31, -32, -33], "animation" : "ObLvS22.def", "unknown" : 1, "absolute" : false }, "55": { "allowedTerrain" : ["water"], "specialBattlefields" : [], "width" : 3, "height" : 3, "blockedTiles" : [-15, -16, -33], "animation" : "ObBtS04.def", "unknown" : 1, "absolute" : false }, "56": { "allowedTerrain" : [], "specialBattlefields" : ["sand_shore"], "width" : 3, "height" : 2, "blockedTiles" : [1, -15, -16], "animation" : "ObBhS02.def", "unknown" : 1, "absolute" : false }, "57": { "allowedTerrain" : [], "specialBattlefields" : ["sand_shore"], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2], "animation" : "ObBhS03.def", "unknown" : 0, "absolute" : false }, "58": { "allowedTerrain" : [], "specialBattlefields" : ["sand_shore"], "width" : 5, "height" : 2, "blockedTiles" : [1, 2, 3, -14, -15, -16], "animation" : "ObBhS11a.def", "unknown" : 1, "absolute" : false }, "59": { "allowedTerrain" : [], "specialBattlefields" : ["sand_shore"], "width" : 4, "height" : 2, "blockedTiles" : [1, 2, -14, -15], "animation" : "ObBhS12b.def", "unknown" : 1, "absolute" : false }, "60": { "allowedTerrain" : [], "specialBattlefields" : ["sand_shore"], "width" : 2, "height" : 2, "blockedTiles" : [0, 1, -16], "animation" : "ObBhS14b.def", "unknown" : 1, "absolute" : false }, "61": { "allowedTerrain" : [], "specialBattlefields" : ["holy_ground"], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObHGs00.def", "unknown" : 0, "absolute" : false }, "62": { "allowedTerrain" : [], "specialBattlefields" : ["holy_ground"], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObHGs01.def", "unknown" : 0, "absolute" : false }, "63": { "allowedTerrain" : [], "specialBattlefields" : ["holy_ground"], "width" : 3, "height" : 3, "blockedTiles" : [1], "animation" : "ObHGs02.def", "unknown" : 0, "absolute" : false }, "64": { "allowedTerrain" : [], "specialBattlefields" : ["holy_ground"], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2], "animation" : "ObHGs03.def", "unknown" : 0, "absolute" : false }, "65": { "allowedTerrain" : [], "specialBattlefields" : ["holy_ground"], "width" : 4, "height" : 3, "blockedTiles" : [0, 1, 2, 3], "animation" : "ObHGs04.def", "unknown" : 0, "absolute" : false }, "66": { "allowedTerrain" : [], "specialBattlefields" : ["evil_fog"], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObEFs00.def", "unknown" : 0, "absolute" : false }, "67": { "allowedTerrain" : [], "specialBattlefields" : ["evil_fog"], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObEFs01.def", "unknown" : 0, "absolute" : false }, "68": { "allowedTerrain" : [], "specialBattlefields" : ["evil_fog"], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2], "animation" : "ObEFs02.def", "unknown" : 0, "absolute" : false }, "69": { "allowedTerrain" : [], "specialBattlefields" : ["evil_fog"], "width" : 4, "height" : 2, "blockedTiles" : [1, 2], "animation" : "ObEFs03.def", "unknown" : 0, "absolute" : false }, "70": { "allowedTerrain" : [], "specialBattlefields" : ["evil_fog"], "width" : 6, "height" : 2, "blockedTiles" : [1, 2, 3, -12, -13], "animation" : "ObEFs04.def", "unknown" : 0, "absolute" : false }, "71": { "allowedTerrain" : [], "specialBattlefields" : ["clover_field"], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObCFs00.def", "unknown" : 1, "absolute" : false }, "72": { "allowedTerrain" : [], "specialBattlefields" : ["clover_field"], "width" : 3, "height" : 1, "blockedTiles" : [0, 1, 2], "animation" : "ObCFs01.def", "unknown" : 1, "absolute" : false }, "73": { "allowedTerrain" : [], "specialBattlefields" : ["clover_field"], "width" : 3, "height" : 2, "blockedTiles" : [1, 2, -15, -16], "animation" : "ObCFs02.def", "unknown" : 1, "absolute" : false }, "74": { "allowedTerrain" : [], "specialBattlefields" : ["clover_field"], "width" : 4, "height" : 2, "blockedTiles" : [0, 1, 2, -14, -15, -16], "animation" : "ObCFs03.def", "unknown" : 1, "absolute" : false }, "75": { "allowedTerrain" : [], "specialBattlefields" : ["lucid_pools"], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObLPs00.def", "unknown" : 1, "absolute" : false }, "76": { "allowedTerrain" : [], "specialBattlefields" : ["lucid_pools"], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObLPs01.def", "unknown" : 1, "absolute" : false }, "77": { "allowedTerrain" : [], "specialBattlefields" : ["lucid_pools"], "width" : 3, "height" : 2, "blockedTiles" : [0, -15, -16], "animation" : "ObLPs02.def", "unknown" : 1, "absolute" : false }, "78": { "allowedTerrain" : [], "specialBattlefields" : ["lucid_pools"], "width" : 5, "height" : 2, "blockedTiles" : [1, 2, 3, -13, -14, -15, -16], "animation" : "ObLPs03.def", "unknown" : 1, "absolute" : false }, "79": { "allowedTerrain" : [], "specialBattlefields" : ["fiery_fields"], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObFFs00.def", "unknown" : 0, "absolute" : false }, "80": { "allowedTerrain" : [], "specialBattlefields" : ["fiery_fields"], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObFFs01.def", "unknown" : 0, "absolute" : false }, "81": { "allowedTerrain" : [], "specialBattlefields" : ["fiery_fields"], "width" : 3, "height" : 2, "blockedTiles" : [0, 1, 2, -15], "animation" : "ObFFs02.def", "unknown" : 0, "absolute" : false }, "82": { "allowedTerrain" : [], "specialBattlefields" : ["fiery_fields"], "width" : 4, "height" : 2, "blockedTiles" : [1, 2, 3, -15, -16], "animation" : "ObFFs03.def", "unknown" : 0, "absolute" : false }, "83": { "allowedTerrain" : [], "specialBattlefields" : ["fiery_fields"], "width" : 3, "height" : 3, "blockedTiles" : [0, 1, 2, 3, -14, -15, -16], "animation" : "ObFFs04.def", "unknown" : 0, "absolute" : false }, "84": { "allowedTerrain" : [], "specialBattlefields" : ["rocklands"], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObRLs00.def", "unknown" : 0, "absolute" : false }, "85": { "allowedTerrain" : [], "specialBattlefields" : ["rocklands"], "width" : 2, "height" : 1, "blockedTiles" : [0, 1], "animation" : "ObRLs01.def", "unknown" : 0, "absolute" : false }, "86": { "allowedTerrain" : [], "specialBattlefields" : ["rocklands"], "width" : 3, "height" : 1, "blockedTiles" : [0, 1, 2], "animation" : "ObRLs02.def", "unknown" : 0, "absolute" : false }, "87": { "allowedTerrain" : [], "specialBattlefields" : ["rocklands"], "width" : 4, "height" : 2, "blockedTiles" : [1, 2, 3, -15, -16], "animation" : "ObRLs03.def", "unknown" : 0, "absolute" : false }, "88": { "allowedTerrain" : [], "specialBattlefields" : ["magic_clouds"], "width" : 1, "height" : 1, "blockedTiles" : [0], "animation" : "ObMCs00.def", "unknown" : 1, "absolute" : false }, "89": { "allowedTerrain" : [], "specialBattlefields" : ["magic_clouds"], "width" : 2, "height" : 2, "blockedTiles" : [1, -16], "animation" : "ObMCs01.def", "unknown" : 1, "absolute" : false }, "90": { "allowedTerrain" : [], "specialBattlefields" : ["magic_clouds"], "width" : 4, "height" : 2, "blockedTiles" : [0, 1, -14, -15], "animation" : "ObMCs02.def", "unknown" : 1, "absolute" : false }, "100": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 124, "height" : 254, "blockedTiles" : [80, 94, 95, 96, 97, 105, 106, 107, 108, 109, 110], "animation" : "ObDtL04.pcx", "absolute" : true }, "101": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 256, "height" : 254, "blockedTiles" : [73, 91, 108, 109, 110, 111, 112, 113], "animation" : "ObDtL06.pcx", "absolute" : true }, "102": { "allowedTerrain" : ["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": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 124, "height" : 254, "blockedTiles" : [88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98], "animation" : "ObDtL02.pcx", "absolute" : true }, "104": { "allowedTerrain" : ["dirt"], "specialBattlefields" : [], "width" : 146, "height" : 254, "blockedTiles" : [76, 77, 78, 79, 80, 89, 90, 91, 92, 93], "animation" : "ObDtL03.pcx", "absolute" : true }, "105": { "allowedTerrain" : ["grass"], "specialBattlefields" : [], "width" : 173, "height" : 221, "blockedTiles" : [55, 56, 57, 58, 75, 76, 77, 95, 112, 113, 131], "animation" : "ObGrL01.pcx", "absolute" : true }, "106": { "allowedTerrain" : ["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": { "allowedTerrain" : ["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": { "allowedTerrain" : ["snow"], "specialBattlefields" : [], "width" : 302, "height" : 172, "blockedTiles" : [41, 42, 43, 58, 75, 92, 108, 126, 143], "animation" : "ObSnL14.pcx", "absolute" : true }, "109": { "allowedTerrain" : ["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": { "allowedTerrain" : ["swamp"], "specialBattlefields" : [], "width" : 278, "height" : 171, "blockedTiles" : [43, 60, 61, 77, 93, 94, 95, 109, 110, 126, 127], "animation" : "ObSwL14.pcx", "absolute" : true }, "111": { "allowedTerrain" : ["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": { "allowedTerrain" : ["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": { "allowedTerrain" : ["lava"], "specialBattlefields" : [], "width" : 256, "height" : 128, "blockedTiles" : [43, 60, 61, 76, 77, 93, 109, 126, 127, 142, 143], "animation" : "OBLvL02.pcx", "absolute" : true }, "114": { "allowedTerrain" : ["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": { "allowedTerrain" : ["rough"], "specialBattlefields" : ["cursed_ground"], "width" : 347, "height" : 174, "blockedTiles" : [41, 59, 76, 94, 111, 129, 143, 144, 145], "animation" : "ObRgL02.pcx", "absolute" : true }, "116": { "allowedTerrain" : ["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": { "allowedTerrain" : ["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": { "allowedTerrain" : ["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": { "allowedTerrain" : ["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": { "allowedTerrain" : ["rough"], "specialBattlefields" : ["cursed_ground"], "width" : 278, "height" : 128, "blockedTiles" : [23, 40, 58, 75, 93, 110, 128, 145, 163], "animation" : "ObRgL15.pcx", "absolute" : true }, "121": { "allowedTerrain" : ["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": { "allowedTerrain" : ["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": { "allowedTerrain" : [], "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": { "allowedTerrain" : [], "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": { "allowedTerrain" : [], "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": { "allowedTerrain" : [], "specialBattlefields" : ["sand_shore"], "width" : 241, "height" : 272, "blockedTiles" : [73, 91, 108, 109, 110, 111, 112, 113], "animation" : "ObBhL06.pcx", "absolute" : true }, "127": { "allowedTerrain" : [], "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": { "allowedTerrain" : [], "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": { "allowedTerrain" : [], "specialBattlefields" : ["clover_field"], "width" : 304, "height" : 264, "blockedTiles" : [76, 77, 92, 93, 94, 95, 109, 110, 111], "animation" : "ObCFL00.pcx", "absolute" : true }, "130": { "allowedTerrain" : [], "specialBattlefields" : ["lucid_pools"], "width" : 256, "height" : 257, "blockedTiles" : [76, 77, 78, 92, 93, 94, 107, 108, 109], "animation" : "ObLPL00.pcx", "absolute" : true }, "131": { "allowedTerrain" : [], "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": { "allowedTerrain" : [], "specialBattlefields" : ["rocklands"], "width" : 277, "height" : 218, "blockedTiles" : [60, 61, 75, 76, 77, 91, 92, 93, 94, 95], "animation" : "ObRLL00.pcx", "absolute" : true }, "133": { "allowedTerrain" : [], "specialBattlefields" : ["magic_clouds"], "width" : 300, "height" : 214, "blockedTiles" : [59, 60, 74, 75, 76, 93, 94, 95, 111, 112], "animation" : "ObMCL00.pcx", "absolute" : true } }