Added some additional sound effects

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-18 02:40:53 +01:00
parent 806c9b6966
commit 7fe9a8bc40
8 changed files with 284 additions and 13 deletions

View File

@@ -11,7 +11,10 @@ void main() {
});
test('uses the original mutant 18-ID difficulty offset', () {
expect(EnemyType.mutant.mapData.getNormalizedId(216, Difficulty.easy), 216);
expect(
EnemyType.mutant.mapData.getNormalizedId(216, Difficulty.easy),
216,
);
expect(
EnemyType.mutant.mapData.getNormalizedId(234, Difficulty.medium),
216,
@@ -44,4 +47,4 @@ Enemy _spawnEnemy(int mapId) {
final enemy = Enemy.spawn(mapId, 8.5, 8.5, Difficulty.hard);
expect(enemy, isNotNull);
return enemy!;
}
}