Impact animations

This commit is contained in:
Ian Gulliver
2021-05-12 05:03:57 +00:00
parent a067dc616f
commit bfa3f71e49
9 changed files with 47 additions and 32 deletions

View File

@@ -58,13 +58,13 @@ export const TOWER_FIREBALL1 = new LayeredTileFactory([
]);
export const FIREBALL = new SimpleTileFactory('projectile', 2, 2, 'fireball');
export const FIREBALL_IMPACT = new SequenceTileFactory([
new SimpleTileFactory('surface', 4, 4, 'fireball-impact1'),
new SimpleTileFactory('surface', 4, 4, 'fireball-impact2'),
new SimpleTileFactory('surface', 4, 4, 'fireball-impact3'),
new SimpleTileFactory('surface', 4, 4, 'fireball-impact4'),
new SimpleTileFactory('surface', 4, 4, 'fireball-impact5'),
new SimpleTileFactory('surface', 4, 4, 'fireball-impact6'),
new SimpleTileFactory('surface', 4, 4, 'fireball-impact7'),
new SimpleTileFactory('surface', 4, 4, 'fireball-impact8'),
], 100, false);
new SimpleTileFactory('surface', 2, 2, 'fireball-impact1'),
new SimpleTileFactory('surface', 2, 2, 'fireball-impact2'),
new SimpleTileFactory('surface', 2, 2, 'fireball-impact3'),
new SimpleTileFactory('surface', 2, 2, 'fireball-impact4'),
new SimpleTileFactory('surface', 2, 2, 'fireball-impact5'),
new SimpleTileFactory('surface', 2, 2, 'fireball-impact6'),
new SimpleTileFactory('surface', 2, 2, 'fireball-impact7'),
new SimpleTileFactory('surface', 2, 2, 'fireball-impact8'),
], 50, false);
//# sourceMappingURL=tiles.js.map