tiles.rc: annotate tiles that can be bulldozed

these tiles can be bulldozed clean using the bulldozer

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@893 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-12-06 16:01:45 +00:00
parent 721e135fee
commit dbb7029ec2
2 changed files with 140 additions and 138 deletions

View file

@ -16,6 +16,7 @@ public class TileSpec
TileSpec animNext;
TileSpec onPower;
TileSpec onShutdown;
boolean canBulldoze;
boolean canBurn;
boolean canConduct;
boolean overWater;
@ -177,6 +178,7 @@ public class TileSpec
}
}
this.canBulldoze = getBooleanAttribute("bulldozable");
this.canBurn = !getBooleanAttribute("noburn");
this.canConduct = getBooleanAttribute("conducts");
this.overWater = getBooleanAttribute("overwater");