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

53 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-09-14 00:04:33 +02:00
import { version } from '../package.json'
// ?? 🤔 ?? --> https://en.freesewing.dev/packages/core/config
export default {
name: 'lunetius',
version,
design: 'starf',
code: 'starf',
department: 'tops',
type: 'pattern',
difficulty: 1,
tags: [
'freesewing',
'design',
'diy',
'fashion',
'made to measure',
'parametric design',
'pattern',
'sewing',
2021-10-08 17:32:12 +02:00
'sewing pattern',
2021-09-14 00:04:33 +02:00
],
optionGroups: {
2021-10-08 17:32:12 +02:00
fit: ['headRatio', 'neckRatio'],
style: ['lengthBonus', 'widthBonus', 'length'],
2021-09-14 00:04:33 +02:00
},
2021-10-08 17:32:12 +02:00
measurements: [
'waistToKnee',
'waistToUpperLeg',
'waistToFloor',
'hpsToWaistBack',
'neck',
'shoulderToShoulder',
'shoulderToElbow',
'waistToHips',
],
2021-09-14 00:04:33 +02:00
dependencies: {},
inject: {},
hide: [],
parts: ['lacerna'],
options: {
2021-10-08 17:32:12 +02:00
headRatio: { pct: 100, min: 80, max: 120 },
lengthBonus: { pct: 105, min: 60, max: 130 },
widthBonus: { pct: 100, min: 50, max: 130 },
length: {
list: ['ToKnee', 'ToBelowKnee', 'ToHips', 'ToUpperLeg', 'ToFloor'],
dflt: 'ToBelowKnee',
},
neckRatio: { pct: 115, min: 95, max: 130 },
},
2021-09-14 00:04:33 +02:00
}