All files / web/src/lib/audio/clips assistance.ts

100% Statements 38/38
100% Branches 0/0
100% Functions 0/0
100% Lines 38/38

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 391x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
import { audioClip } from '../audioClipRegistry'
 
export const GIVE_IT_A_TRY = audioClip(
  'assistance-give-it-a-try',
  'Give it a try! You got this.',
  'encouragement'
)
export const YOU_CAN_DO_IT = audioClip(
  'assistance-you-can-do-it',
  'You can do it! I believe in you.',
  'encouragement'
)
export const TAKE_YOUR_TIME = audioClip(
  'assistance-take-your-time',
  'Take your time, no rush!',
  'encouragement'
)
export const NEED_HELP = audioClip(
  'assistance-need-help',
  'Hmm, want some help? I can show you!',
  'encouragement'
)
export const NEED_HELP_2 = audioClip(
  'assistance-need-help-2',
  "This one's a thinker! Want me to help?",
  'encouragement'
)
export const TRY_USING_HELP = audioClip(
  'assistance-try-using-help',
  "Ooh, this is a tricky one! Let's use help and figure it out together.",
  'encouragement'
)
 
/** Clips for the "offering help" transition — randomly selected */
export const OFFERING_HELP_CLIPS = [NEED_HELP, NEED_HELP_2] as const
 
/** Clips for the initial "encouraging" transition — randomly selected */
export const ENCOURAGING_CLIPS = [GIVE_IT_A_TRY, YOU_CAN_DO_IT, TAKE_YOUR_TIME] as const