2020-05-17 18:08:44 +02:00
|
|
|
import { version } from '../package.json'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'titan',
|
|
|
|
version,
|
2020-06-20 17:18:43 +02:00
|
|
|
design: ['Debra Bean', 'Joost De Cock'],
|
2020-05-17 18:08:44 +02:00
|
|
|
code: 'Joost De Cock',
|
|
|
|
department: 'unisex',
|
|
|
|
type: 'block',
|
|
|
|
difficulty: 3,
|
|
|
|
tags: ['bottom', 'basics'],
|
|
|
|
optionGroups: {
|
2020-05-21 18:58:08 +02:00
|
|
|
fit: ['seatEase', 'kneeEase', 'waistEase'],
|
2020-06-20 17:18:43 +02:00
|
|
|
style: ['fitKnee', 'lengthBonus', 'crotchDrop'],
|
2020-05-17 18:08:44 +02:00
|
|
|
advanced: [
|
|
|
|
'crossSeamCurveStart',
|
|
|
|
'crossSeamCurveBend',
|
2020-06-20 17:18:43 +02:00
|
|
|
'crotchSeamCurveStart',
|
|
|
|
'crotchSeamCurveBend',
|
|
|
|
'grainlinePosition',
|
2020-05-17 18:08:44 +02:00
|
|
|
'legBalance',
|
2020-06-20 17:18:43 +02:00
|
|
|
'waistBalance'
|
2020-05-17 18:08:44 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
measurements: [
|
|
|
|
'backWaist',
|
|
|
|
'crossSeam',
|
|
|
|
'frontCrossSeam',
|
|
|
|
'backSeat',
|
|
|
|
'seatCircumference',
|
|
|
|
'kneeCircumference',
|
2020-06-13 13:27:02 +02:00
|
|
|
'waistCircumference',
|
|
|
|
'waistToFloor',
|
|
|
|
'waistToKnee',
|
|
|
|
'waistToSeat',
|
2020-06-20 17:18:43 +02:00
|
|
|
'waistToUpperLeg'
|
2020-05-17 18:08:44 +02:00
|
|
|
],
|
|
|
|
parts: ['back', 'front'],
|
|
|
|
options: {
|
2020-06-20 17:18:43 +02:00
|
|
|
// Constants
|
2020-05-17 18:08:44 +02:00
|
|
|
fitCrossSeam: true,
|
|
|
|
fitFrontCrossSeam: true,
|
|
|
|
fitBackCrossSeam: true,
|
2020-06-20 17:18:43 +02:00
|
|
|
|
|
|
|
// Fit
|
|
|
|
waistEase: { pct: 2.5, min: 0, max: 10 },
|
|
|
|
seatEase: { pct: 2.5, min: 0, max: 10 },
|
2020-05-17 18:08:44 +02:00
|
|
|
kneeEase: { pct: 6, min: 1, max: 25 },
|
2020-06-20 17:18:43 +02:00
|
|
|
|
|
|
|
// Style
|
|
|
|
fitKnee: { bool: false },
|
|
|
|
lengthBonus: { pct: 0, min: -20, max: 10 },
|
|
|
|
crotchDrop: { pct: 2, min: 0, max: 15 },
|
|
|
|
|
|
|
|
// Advanced
|
2020-05-21 18:58:08 +02:00
|
|
|
legBalance: { pct: 57.5, min: 52.5, max: 62.5 },
|
2020-06-20 17:18:43 +02:00
|
|
|
crossSeamCurveStart: { pct: 85, min: 60, max: 100 },
|
|
|
|
crossSeamCurveBend: { pct: 65, min: 45, max: 85 },
|
|
|
|
crotchSeamCurveStart: { pct: 80, min: 60, max: 95 },
|
|
|
|
crotchSeamCurveBend: { pct: 80, min: 45, max: 100 },
|
|
|
|
waistBalance: { pct: 60, min: 30, max: 90 },
|
|
|
|
grainlinePosition: { pct: 45, min: 30, max: 60 }
|
2020-05-17 18:08:44 +02:00
|
|
|
}
|
|
|
|
}
|