2022-01-23 13:22:13 +01:00
|
|
|
import pkg from '../package.json'
|
2021-09-13 23:07:09 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'walburga',
|
2022-01-23 13:22:13 +01:00
|
|
|
version: pkg.version,
|
2021-10-14 14:37:57 +02:00
|
|
|
design: 'Rika Tamaike',
|
|
|
|
code: 'Rika Tamaike',
|
2021-09-13 23:07:09 +02:00
|
|
|
department: 'tops',
|
|
|
|
type: 'pattern',
|
|
|
|
difficulty: 1,
|
2021-10-08 17:32:12 +02:00
|
|
|
tags: [
|
|
|
|
'freesewing',
|
|
|
|
'design',
|
|
|
|
'diy',
|
|
|
|
'fashion',
|
|
|
|
'made to measure',
|
|
|
|
'parametric design',
|
|
|
|
'pattern',
|
|
|
|
'sewing',
|
|
|
|
'sewing pattern',
|
2021-09-13 23:07:09 +02:00
|
|
|
],
|
|
|
|
optionGroups: {
|
2021-10-08 17:32:12 +02:00
|
|
|
fit: ['headRatio'],
|
2021-10-16 12:08:02 +02:00
|
|
|
style: ['lengthBonus', 'widthBonus', 'length', 'neckoRatio', 'neckline'],
|
2021-10-08 17:32:12 +02:00
|
|
|
},
|
|
|
|
measurements: [
|
|
|
|
'head',
|
|
|
|
'neck',
|
|
|
|
'shoulderToShoulder',
|
|
|
|
'hpsToWaistBack',
|
|
|
|
'waistToKnee',
|
|
|
|
'waistToHips',
|
|
|
|
'waistToFloor',
|
|
|
|
'waistToUpperLeg',
|
|
|
|
],
|
|
|
|
dependencies: { front: 'base', back: 'base' },
|
|
|
|
inject: {
|
|
|
|
front: 'base',
|
|
|
|
back: 'base',
|
|
|
|
},
|
|
|
|
hide: ['base'],
|
2021-09-13 23:07:09 +02:00
|
|
|
options: {
|
2021-10-08 17:32:12 +02:00
|
|
|
headRatio: { pct: 100, min: 80, max: 120 },
|
|
|
|
lengthBonus: { pct: 85, min: 60, max: 130 },
|
|
|
|
widthBonus: { pct: 95, min: 50, max: 130 },
|
|
|
|
length: {
|
2021-10-16 12:08:02 +02:00
|
|
|
list: ['toKnee', 'toMidLeg', 'toFloor'],
|
|
|
|
dflt: 'toKnee',
|
2021-10-08 17:32:12 +02:00
|
|
|
},
|
|
|
|
neckline: { bool: true },
|
|
|
|
neckoRatio: { pct: 100, min: 10, max: 190 },
|
2021-09-13 23:07:09 +02:00
|
|
|
},
|
|
|
|
}
|