2012-04-23 22:56:37 +03:00
// 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:
2022-11-04 00:06:15 +02:00
// * "allowedTerrains" vector of terrain types (TT format) where obstacle is appropriate
2012-04-23 22:56:37 +03:00
// * "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.
2022-09-15 10:06:54 +02:00
// * "animation" is name of the graphics. It's def file for usual obstacles and bitmap for the absolute ones.
2012-04-23 22:56:37 +03:00
{
2022-09-15 10:06:54 +02:00
"0" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDino1.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"1" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" , "sand" , "rough" , "subterra" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDino2.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"2" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDino3.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"3" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" , "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSkel1.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"4" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" , "rough" , "subterra" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" , "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSkel2.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"5" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBDT01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"6" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDRk01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"7" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDRk02.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"8" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDRk03.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"9" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDRk04.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"10" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDSh01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"11" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDTF03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"12" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" , "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ 0 , 1 , 2 , 3 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtS03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"13" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" , "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , -15 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtS04.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"14" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" , "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 2 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtS14.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"15" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" , "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ 1 , -16 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtS15.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"16" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "sand" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 4 ,
"blockedTiles" : [ -15 , -16 , -32 , -33 , -48 , -49 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDsM01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"17" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "sand" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 1 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDsS02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"18" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "sand" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDsS17.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"19" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "grass" , "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObGLg01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"20" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "grass" , "swamp" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "magic_plains" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObGRk01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"21" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "grass" , "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObGSt01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"22" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "grass" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "magic_plains" ] ,
2012-04-23 22:56:37 +03:00
"width" : 6 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 , 4 , -13 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObGrS01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"23" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "grass" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 7 ,
"height" : 1 ,
"blockedTiles" : [ 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "OBGrS02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"24" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"25" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 5 ,
"height" : 1 ,
"blockedTiles" : [ 1 , 2 , 3 , 4 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"26" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ 0 , -16 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS03.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"27" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS04.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"28" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 1 ,
"blockedTiles" : [ 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS05.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"29" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS06.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"30" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS07.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"31" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS08.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"32" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 7 ,
"height" : 2 ,
"blockedTiles" : [ 2 , 3 , 4 , 5 , -13 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS09.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"33" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 5 ,
"height" : 5 ,
"blockedTiles" : [ 3 , -13 , -14 , -15 , -33 , -49 , -66 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnS10.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"34" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwS01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"35" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 8 ,
"height" : 3 ,
"blockedTiles" : [ -10 , -11 , -12 , -13 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwS02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"36" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwS03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"37" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwS04.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"38" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 5 ,
"height" : 4 ,
"blockedTiles" : [ -13 , -14 , -15 , -16 , -30 , -31 , -32 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwS11b.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"39" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 3 ,
"blockedTiles" : [ -16 , -17 , -31 , -32 , -33 , -34 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwS13a.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"40" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgS01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"41" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 3 ,
"blockedTiles" : [ -14 , -15 , -16 , -32 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgS02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"42" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgS03.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"43" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ -16 , -32 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgS04.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"44" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ -15 , -16 , -32 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgS05.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"45" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "subterra" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ 0 , 1 , 2 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSuS01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"46" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "subterra" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSuS02.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"47" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "subterra" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 3 ,
"blockedTiles" : [ 0 , 1 , 2 , 3 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSuS11b.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"48" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 3 ,
"blockedTiles" : [ -14 , -32 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvS01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"49" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvS02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"50" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 5 ,
"height" : 3 ,
"blockedTiles" : [ -13 , -14 , -15 , -30 , -31 , -32 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvS03.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"51" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvS04.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"52" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 4 ,
"height" : 4 ,
"blockedTiles" : [ -14 , -15 , -32 , -33 , -49 , -50 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvS09.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"53" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 5 ,
"height" : 3 ,
"blockedTiles" : [ -13 , -14 , -15 , -16 , -30 , -31 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvS17.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"54" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 5 ,
"height" : 3 ,
"blockedTiles" : [ -13 , -14 , -15 , -16 , -31 , -32 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvS22.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"55" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "water" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ -15 , -16 , -33 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBtS04.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"56" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 1 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhS02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"57" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhS03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"58" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 5 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhS11a.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"59" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , -14 , -15 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhS12b.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"60" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhS14b.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"61" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "holy_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObHGs00.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"62" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "holy_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObHGs01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"63" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "holy_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObHGs02.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"64" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "holy_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObHGs03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"65" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "holy_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 3 ,
"blockedTiles" : [ 0 , 1 , 2 , 3 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObHGs04.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"66" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "evil_fog" ] ,
2012-04-23 22:56:37 +03:00
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObEFs00.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"67" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "evil_fog" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObEFs01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"68" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "evil_fog" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObEFs02.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"69" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "evil_fog" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObEFs03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"70" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "evil_fog" ] ,
2012-04-23 22:56:37 +03:00
"width" : 6 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 , -12 , -13 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObEFs04.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"71" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "clover_field" ] ,
2012-04-23 22:56:37 +03:00
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObCFs00.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"72" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "clover_field" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObCFs01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"73" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "clover_field" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObCFs02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"74" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "clover_field" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObCFs03.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"75" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "lucid_pools" ] ,
2012-04-23 22:56:37 +03:00
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLPs00.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"76" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "lucid_pools" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLPs01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"77" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "lucid_pools" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLPs02.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"78" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "lucid_pools" ] ,
2012-04-23 22:56:37 +03:00
"width" : 5 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 , -13 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLPs03.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"79" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "fiery_fields" ] ,
2012-04-23 22:56:37 +03:00
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObFFs00.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"80" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "fiery_fields" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObFFs01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"81" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "fiery_fields" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , 2 , -15 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObFFs02.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"82" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "fiery_fields" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObFFs03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"83" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "fiery_fields" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 3 ,
"blockedTiles" : [ 0 , 1 , 2 , 3 , -14 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObFFs04.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"84" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "rocklands" ] ,
2012-04-23 22:56:37 +03:00
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRLs00.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"85" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "rocklands" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRLs01.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"86" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "rocklands" ] ,
2012-04-23 22:56:37 +03:00
"width" : 3 ,
"height" : 1 ,
"blockedTiles" : [ 0 , 1 , 2 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRLs02.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"87" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "rocklands" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 1 , 2 , 3 , -15 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRLs03.def" ,
"unknown" : 0 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"88" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "magic_clouds" ] ,
2012-04-23 22:56:37 +03:00
"width" : 1 ,
"height" : 1 ,
"blockedTiles" : [ 0 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObMCs00.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"89" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "magic_clouds" ] ,
2012-04-23 22:56:37 +03:00
"width" : 2 ,
"height" : 2 ,
"blockedTiles" : [ 1 , -16 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObMCs01.def" ,
"unknown" : 1 ,
"absolute" : false
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"90" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "magic_clouds" ] ,
2012-04-23 22:56:37 +03:00
"width" : 4 ,
"height" : 2 ,
"blockedTiles" : [ 0 , 1 , -14 , -15 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObMCs02.def" ,
"unknown" : 1 ,
"absolute" : false
} ,
"100" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 124 ,
"height" : 254 ,
"blockedTiles" : [ 80 , 94 , 95 , 96 , 97 , 105 , 106 , 107 , 108 , 109 , 110 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtL04.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"101" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 256 ,
"height" : 254 ,
"blockedTiles" : [ 73 , 91 , 108 , 109 , 110 , 111 , 112 , 113 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtL06.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"102" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"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 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtL10.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"103" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 124 ,
"height" : 254 ,
"blockedTiles" : [ 88 , 89 , 90 , 91 , 92 , 93 , 94 , 95 , 96 , 97 , 98 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtL02.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"104" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "dirt" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 146 ,
"height" : 254 ,
"blockedTiles" : [ 76 , 77 , 78 , 79 , 80 , 89 , 90 , 91 , 92 , 93 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObDtL03.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"105" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "grass" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 173 ,
"height" : 221 ,
"blockedTiles" : [ 55 , 56 , 57 , 58 , 75 , 76 , 77 , 95 , 112 , 113 , 131 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObGrL01.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"106" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "grass" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 180 ,
"height" : 264 ,
"blockedTiles" : [ 81 , 91 , 92 , 93 , 94 , 95 , 96 , 97 , 98 , 106 , 107 , 123 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObGrL02.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"107" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 166 ,
"height" : 255 ,
"blockedTiles" : [ 76 , 77 , 78 , 79 , 91 , 92 , 93 , 97 , 98 , 106 , 107 , 108 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnL01.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"108" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "snow" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 302 ,
"height" : 172 ,
"blockedTiles" : [ 41 , 42 , 43 , 58 , 75 , 92 , 108 , 126 , 143 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSnL14.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"109" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 300 ,
"height" : 170 ,
"blockedTiles" : [ 40 , 41 , 58 , 59 , 74 , 75 , 92 , 93 , 109 , 110 , 111 , 127 , 128 , 129 , 130 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwL15.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"110" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 278 ,
"height" : 171 ,
"blockedTiles" : [ 43 , 60 , 61 , 77 , 93 , 94 , 95 , 109 , 110 , 126 , 127 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwL14.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"111" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "swamp" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 256 ,
"height" : 254 ,
"blockedTiles" : [ 74 , 75 , 76 , 77 , 91 , 92 , 93 , 94 , 95 , 109 , 110 , 111 , 112 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObSwL22.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"112" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 124 ,
"height" : 254 ,
"blockedTiles" : [ 77 , 78 , 79 , 80 , 81 , 91 , 92 , 93 , 94 , 105 , 106 , 107 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLvL01.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"113" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "lava" ] ,
2012-04-23 22:56:37 +03:00
"specialBattlefields" : [ ] ,
"width" : 256 ,
"height" : 128 ,
"blockedTiles" : [ 43 , 60 , 61 , 76 , 77 , 93 , 109 , 126 , 127 , 142 , 143 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "OBLvL02.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"114" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 186 ,
"height" : 212 ,
"blockedTiles" : [ 55 , 72 , 90 , 107 , 125 , 126 , 127 , 128 , 129 , 130 , 131 , 132 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL01.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"115" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 347 ,
"height" : 174 ,
"blockedTiles" : [ 41 , 59 , 76 , 94 , 111 , 129 , 143 , 144 , 145 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL02.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"116" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 294 ,
"height" : 169 ,
"blockedTiles" : [ 40 , 41 , 42 , 43 , 58 , 75 , 93 , 110 , 128 , 145 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL03.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"117" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 165 ,
"height" : 257 ,
"blockedTiles" : [ 72 , 73 , 74 , 75 , 76 , 77 , 78 , 79 , 80 , 81 , 89 , 105 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL04.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"118" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 208 ,
"height" : 268 ,
"blockedTiles" : [ 72 , 73 , 74 , 75 , 76 , 77 , 78 , 79 , 80 , 90 , 91 , 92 , 93 , 94 , 95 , 96 , 97 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL05.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"119" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 252 ,
"height" : 254 ,
"blockedTiles" : [ 73 , 74 , 75 , 76 , 77 , 78 , 91 , 92 , 93 , 94 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL06.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"120" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 278 ,
"height" : 128 ,
"blockedTiles" : [ 23 , 40 , 58 , 75 , 93 , 110 , 128 , 145 , 163 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL15.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"121" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"width" : 208 ,
"height" : 268 ,
"blockedTiles" : [ 72 , 73 , 74 , 75 , 76 , 77 , 78 , 79 , 80 , 90 , 91 , 92 , 93 , 94 , 95 , 96 , 97 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL05.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"122" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ "rough" ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "cursed_ground" ] ,
2012-04-23 22:56:37 +03:00
"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 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRgL22.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"123" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 147 ,
"height" : 264 ,
"blockedTiles" : [ 72 , 73 , 74 , 75 , 88 , 89 , 90 , 91 , 92 , 93 , 94 , 95 , 96 , 97 , 98 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhL02.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"124" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 178 ,
"height" : 262 ,
"blockedTiles" : [ 71 , 72 , 73 , 74 , 75 , 76 , 77 , 78 , 89 , 90 , 91 , 92 , 93 , 94 , 95 , 96 , 97 , 98 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhL03.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"125" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 173 ,
"height" : 257 ,
"blockedTiles" : [ 72 , 73 , 74 , 75 , 76 , 77 , 78 , 79 , 80 , 81 , 89 , 90 , 105 , 106 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhL05.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"126" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 241 ,
"height" : 272 ,
"blockedTiles" : [ 73 , 91 , 108 , 109 , 110 , 111 , 112 , 113 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhL06.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"127" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"width" : 261 ,
"height" : 129 ,
"blockedTiles" : [ 27 , 28 , 43 , 44 , 60 , 61 , 76 , 77 , 93 , 94 , 109 , 110 , 126 , 127 , 142 , 143 , 159 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhL14.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"128" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "sand_shore" ] ,
2012-04-23 22:56:37 +03:00
"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 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObBhL16.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"129" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "clover_field" ] ,
2012-04-23 22:56:37 +03:00
"width" : 304 ,
"height" : 264 ,
"blockedTiles" : [ 76 , 77 , 92 , 93 , 94 , 95 , 109 , 110 , 111 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObCFL00.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"130" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "lucid_pools" ] ,
2012-04-23 22:56:37 +03:00
"width" : 256 ,
"height" : 257 ,
"blockedTiles" : [ 76 , 77 , 78 , 92 , 93 , 94 , 107 , 108 , 109 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObLPL00.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"131" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "fiery_fields" ] ,
2012-04-23 22:56:37 +03:00
"width" : 257 ,
"height" : 255 ,
"blockedTiles" : [ 76 , 77 , 91 , 92 , 93 , 94 , 95 , 108 , 109 , 110 , 111 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObFFL00.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"132" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "rocklands" ] ,
2012-04-23 22:56:37 +03:00
"width" : 277 ,
"height" : 218 ,
"blockedTiles" : [ 60 , 61 , 75 , 76 , 77 , 91 , 92 , 93 , 94 , 95 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObRLL00.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
} ,
2022-09-15 10:06:54 +02:00
"133" :
2012-04-23 22:56:37 +03:00
{
2022-11-04 00:06:15 +02:00
"allowedTerrains" : [ ] ,
2022-06-22 10:41:02 +02:00
"specialBattlefields" : [ "magic_clouds" ] ,
2012-04-23 22:56:37 +03:00
"width" : 300 ,
"height" : 214 ,
"blockedTiles" : [ 59 , 60 , 74 , 75 , 76 , 93 , 94 , 95 , 111 , 112 ] ,
2022-09-15 10:06:54 +02:00
"animation" : "ObMCL00.pcx" ,
"absolute" : true
2012-04-23 22:56:37 +03:00
}
2013-08-20 22:32:21 +03:00
}