diff --git a/src/game/scenes/world/entities/shot/ball/variants/frozen.ts b/src/game/scenes/world/entities/shot/ball/variants/frozen.ts index 76f82076..d2c2e2c5 100644 --- a/src/game/scenes/world/entities/shot/ball/variants/frozen.ts +++ b/src/game/scenes/world/entities/shot/ball/variants/frozen.ts @@ -1,11 +1,12 @@ import { IWorld } from '~type/world'; -import { ShotBallAudio, ShotParams } from '~type/world/entities/shot'; +import { ShotBallAudio, ShotData, ShotParams } from '~type/world/entities/shot'; import { ShotBall } from '../ball'; export class ShotBallFrozen extends ShotBall { - constructor(scene: IWorld, params: ShotParams) { + constructor(scene: IWorld, params: ShotParams, data: ShotData = {}) { super(scene, params, { + ...data, audio: ShotBallAudio.FROZEN, color: 0x00a1ff, glow: true,