1
0
Fork 0
freesewing/packages/waralee/config/index.js

64 lines
1.8 KiB
JavaScript
Raw Normal View History

import { version } from '../package.json'
2019-08-21 08:55:57 -07:00
// ?? 🤔 ?? --> https://en.freesewing.dev/packages/core/config
export default {
name: 'waralee',
version,
2019-09-29 16:58:21 +02:00
beta: true,
design: 'Wouter Van Wageningen',
code: 'Wouter Van Wageningen',
department: 'bottoms',
type: 'pattern',
difficulty: 2,
2019-08-21 08:55:57 -07:00
optionGroups: {
fit: ['backRaise', 'waistRaise'],
2022-01-19 16:21:54 +01:00
style: [
'hemWidth',
'legShortening',
'waistOverlap',
'frontPocket',
'backPocket',
'waistbandWidth',
],
2019-09-16 11:47:51 -07:00
advanced: [
'crotchFront',
'crotchBack',
'crotchFactorBackHor',
'crotchFactorBackVer',
'crotchFactorFrontHor',
2021-04-24 10:16:31 +02:00
'crotchFactorFrontVer',
],
2019-08-21 08:55:57 -07:00
},
measurements: ['seat', 'inseam', 'crotchDepth', 'waistToHips'],
2019-08-21 08:55:57 -07:00
dependencies: {},
inject: { pants: 'pantsproto', mini: 'pantsproto' },
2019-08-21 08:55:57 -07:00
hide: [],
parts: ['cutout', 'pocket', 'backPocket', 'facings'],
2019-08-21 08:55:57 -07:00
options: {
minimizer: 5,
frontPocketVerticalOffset: 0.07,
frontPocketHorizontalOffset: 0.18,
frontPocketSize: 0.65,
frontPocket: { bool: true },
frontPocketDepthFactor: 1.6,
2019-09-16 11:47:51 -07:00
backPocketDepth: 140,
2019-08-21 08:55:57 -07:00
backPocketVerticalOffset: 0.15,
backPocketHorizontalOffset: 0.045,
backPocketSize: 0.65,
backPocket: { bool: true },
hemWidth: { pct: 1.75, min: 1, max: 2.5 },
waistbandWidth: { pct: 3.5, min: 2, max: 5 },
2019-08-21 08:55:57 -07:00
waistRaise: { pct: 20, min: 0, max: 40 },
crotchBack: { pct: 45, min: 10, max: 70 },
crotchFront: { pct: 30, min: 10, max: 70 },
crotchFactorFrontHor: { pct: 85, min: 10, max: 100 },
crotchFactorFrontVer: { pct: 25, min: 10, max: 70 },
crotchFactorBackHor: { pct: 90, min: 10, max: 100 },
crotchFactorBackVer: { pct: 60, min: 20, max: 90 },
waistOverlap: { pct: 50, min: 10, max: 100 },
2019-09-16 11:47:51 -07:00
legShortening: { pct: 25, min: -10, max: 50 },
2021-04-24 10:16:31 +02:00
backRaise: { pct: 10, min: 0, max: 25 },
},
}