export const BALL_SHOOTER_COMMAND = {
  SHOOTER_OFF: 'Shooter Off',
  SHOOTER_READY: 'Shooter Ready',
  SHOOTER_ATTACK: 'Shooter Attack',
} as const;

export const BALL_SHOOTER_STATUS = {
  SHOOTER_DEACTIVATED: 'Shooter Deactivated',
  SHOOTER_PREPARING_ENGINES: 'Shooter Preparing Engines',
  SHOOTER_ACCELERATING_ENGINES: 'Shooter Accelerating Engines',
  SHOOTING_BALL: 'Shooting Ball',
  UNKNOWN: 'Unknown',
} as const;
