bastienrobert/la-ferme

View on GitHub
packages/mobile/src/pages/samples/players.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const players: any[] = [
  {
    uuid: 'x',
    ready: true,
    character: 'peter',
    skill: 'happy',
    goal: 'supermarket'
  },
  {
    uuid: 'z',
    ready: false,
    character: 'isabelle',
    skill: 'sheperds-stick',
    goal: 'nightclub'
  },
  {
    uuid: 'd',
    ready: false,
    character: 'leon',
    skill: 'speaker',
    goal: 'cinema'
  },
  {
    uuid: 'y',
    ready: true,
    character: 'monique',
    skill: 'cellphone',
    goal: 'town-hall'
  }
]