Files
drip/lib/nfp-mucus.js
T
Julia Friesel 2c48d59f54 Rename module
2018-12-21 08:43:52 +01:00

17 lines
329 B
JavaScript

export default function (feeling, texture) {
const feelingMapping = {
0: 0,
1: 1,
2: 2,
3: 4
}
const textureMapping = {
0: 0,
1: 3,
2: 4
}
const nfpFeelingValue = feelingMapping[feeling]
const nfpTextureValue = textureMapping[texture]
return Math.max(nfpFeelingValue, nfpTextureValue)
}