2020-02-01 15:55:24 +01:00
|
|
|
import { version } from '../package.json'
|
2019-02-26 17:46:07 +01:00
|
|
|
|
|
|
|
export default {
|
2020-02-01 15:55:24 +01:00
|
|
|
name: 'bent',
|
2019-02-26 17:46:07 +01:00
|
|
|
version: version,
|
2020-02-01 15:55:24 +01:00
|
|
|
design: 'Joost De Cock',
|
|
|
|
code: 'Joost De Cock',
|
2021-05-29 14:04:56 +02:00
|
|
|
department: 'tops',
|
2020-02-01 15:55:24 +01:00
|
|
|
type: 'block',
|
2019-04-29 09:01:51 +02:00
|
|
|
difficulty: 3,
|
|
|
|
optionGroups: {
|
|
|
|
fit: [
|
2020-02-01 15:55:24 +01:00
|
|
|
'chestEase',
|
|
|
|
'collarEase',
|
|
|
|
'bicepsEase',
|
|
|
|
'cuffEase',
|
|
|
|
'shoulderEase',
|
|
|
|
'lengthBonus',
|
|
|
|
'sleeveLengthBonus',
|
2021-04-24 10:16:31 +02:00
|
|
|
'sleeveBend',
|
2019-04-29 09:01:51 +02:00
|
|
|
],
|
|
|
|
advanced: [
|
2020-02-01 15:55:24 +01:00
|
|
|
'acrossBackFactor',
|
|
|
|
'armholeDepthFactor',
|
|
|
|
'backNeckCutout',
|
|
|
|
'frontArmholeDeeper',
|
|
|
|
'shoulderSlopeReduction',
|
|
|
|
'sleevecapHeight',
|
2021-04-24 10:16:31 +02:00
|
|
|
'sleevecapEase',
|
|
|
|
],
|
2019-04-29 09:01:51 +02:00
|
|
|
},
|
2019-02-26 17:46:07 +01:00
|
|
|
measurements: [
|
2020-06-30 15:15:48 +02:00
|
|
|
'biceps',
|
|
|
|
'chest',
|
2020-06-01 13:08:23 +02:00
|
|
|
'hpsToWaistBack',
|
|
|
|
'waistToHips',
|
2020-06-30 15:15:48 +02:00
|
|
|
'neck',
|
2020-02-01 15:55:24 +01:00
|
|
|
'shoulderSlope',
|
|
|
|
'shoulderToElbow',
|
|
|
|
'shoulderToShoulder',
|
|
|
|
'shoulderToWrist',
|
2021-04-24 10:16:31 +02:00
|
|
|
'wrist',
|
2019-02-26 17:46:07 +01:00
|
|
|
],
|
|
|
|
dependencies: {
|
2020-02-01 15:55:24 +01:00
|
|
|
back: 'base',
|
|
|
|
front: 'back',
|
|
|
|
topSleeve: 'sleeve',
|
2021-04-24 10:16:31 +02:00
|
|
|
underSleeve: 'sleeve',
|
2019-02-26 17:46:07 +01:00
|
|
|
},
|
|
|
|
inject: {
|
2020-02-01 15:55:24 +01:00
|
|
|
back: 'base',
|
|
|
|
front: 'back',
|
|
|
|
topSleeve: 'sleeve',
|
2021-04-24 10:16:31 +02:00
|
|
|
underSleeve: 'sleeve',
|
2019-02-26 17:46:07 +01:00
|
|
|
},
|
2020-02-01 15:55:24 +01:00
|
|
|
hide: ['base', 'sleeve'],
|
2019-02-26 17:46:07 +01:00
|
|
|
options: {
|
|
|
|
// Constants
|
|
|
|
brianFitSleeve: true,
|
|
|
|
brianFitCollar: true,
|
|
|
|
collarFactor: 4.8,
|
|
|
|
|
|
|
|
// Percentages
|
2019-04-29 09:01:51 +02:00
|
|
|
acrossBackFactor: { pct: 97, min: 93, max: 100 },
|
2020-05-24 17:30:33 +02:00
|
|
|
armholeDepthFactor: { pct: 60, min: 50, max: 70 },
|
2019-04-29 09:01:51 +02:00
|
|
|
backNeckCutout: { pct: 5, min: 2, max: 8 },
|
2020-05-24 17:30:33 +02:00
|
|
|
bicepsEase: { pct: 20, min: 10, max: 40 },
|
2019-04-29 09:01:51 +02:00
|
|
|
chestEase: { pct: 8, min: -4, max: 20 },
|
|
|
|
collarEase: { pct: 3.5, min: 0, max: 10 },
|
2020-05-24 17:30:33 +02:00
|
|
|
cuffEase: { pct: 40, min: 2, max: 100 },
|
2019-04-29 09:01:51 +02:00
|
|
|
frontArmholeDeeper: { pct: 0.5, min: 0, max: 1.5 },
|
|
|
|
lengthBonus: { pct: 0, min: -4, max: 60 },
|
|
|
|
shoulderEase: { pct: 0, min: -2, max: 6 },
|
2020-05-24 18:28:56 +02:00
|
|
|
shoulderSlopeReduction: { pct: 0, min: 0, max: 80 },
|
2019-02-26 17:46:07 +01:00
|
|
|
|
|
|
|
sleeveBend: { deg: 10, min: 0, max: 20 },
|
2019-04-29 09:01:51 +02:00
|
|
|
sleevecapHeight: { pct: 45, min: 40, max: 60 },
|
|
|
|
sleevecapEase: { pct: 1, min: 0, max: 10 },
|
2021-04-24 10:16:31 +02:00
|
|
|
sleeveLengthBonus: { pct: 0, min: -20, max: 15 },
|
|
|
|
},
|
2020-02-01 15:55:24 +01:00
|
|
|
}
|