dond
Version:
A library for simulating the hit UK/US game show.
79 lines (74 loc) • 1.12 kB
JavaScript
'use strict';
let briefcases = [ {
value: 0.01,
presentation: '1¢'
}, {
value: 0.1,
presentation: '10¢'
}, {
value: 0.5,
presentation: '50¢'
}, {
value: 1,
presentation: '$1'
}, {
value: 5,
presentation: '$5'
}, {
value: 10,
presentation: '$10'
}, {
value: 50,
presentation: '$50'
}, {
value: 100,
presentation: '$100'
}, {
value: 250,
presentation: '$250'
}, {
value: 500,
presentation: '$500'
}, {
value: 750,
presentation: '$750'
}, {
value: 1000,
presentation: '$1,000'
}, {
value: 3000,
presentation: '$3,000'
}, {
value: 5000,
presentation: '$5,000'
}, {
value: 10000,
presentation: '$10,000'
}, {
value: 15000,
presentation: '$15,000'
}, {
value: 20000,
presentation: '$20,000'
}, {
value: 35000,
presentation: '$35,000'
}, {
value: 50000,
presentation: '$50,000'
}, {
value: 75000,
presentation: '$75,000'
}, {
value: 100000,
presentation: '$100,000'
}, {
value: 250000,
presentation: '$250,000'
}
];
let casesToPick = [5, 3, 3, 3, 3, 3];
module.exports = {
briefcases: briefcases,
casesToPick: casesToPick
};