Open luketlancaster opened 4 years ago
const adventures = [
{
id: 'adventure1',
title: 'BRAWL',
healthHit: 50
},
{
id: 'adventure2',
title: 'Cave exploration',
healthHit: 10
},
{
id: 'adventure3',
title: 'Ropes course',
healthHit: 13
},
{
id: 'adventure4',
title: 'Playing in traffic',
healthHit: 3
},
{
id: 'adventure5',
title: 'Baking',
healthHit: 70
},
{
id: 'adventure6',
title: 'Welding',
healthHit: 4
},
{
id: 'adventure7',
title: 'Underwater Basket Weaving',
healthHit: 99
},
{
id: 'adventure8',
title: 'Surfing',
healthHit: 39
},
{
id: 'adventure9',
title: 'Fishing',
healthHit: 23
},
{
id: 'adventure10',
title: 'Shot from a cannon',
healthHit: 60
}
];
User Story
As a dev there should be a collection of adventure objects I can access
AC
WHEN the main.js is loaded THEN a
adventures
array should be defined AND I should be able to use this to send dinos on an adventureDev Notes
const adventures = []