UNPKG

pokemon-berries-random

Version:
6 lines (5 loc) 198 B
const Berries = require('./src/berriesRow.json') module.exports = () => { const randomBerry = (total) => (Math.random() * total | 0) + 1 return Berries[randomBerry(Berries.length)] }