2021-09-13 22:03:08 +02:00
|
|
|
import { version } from '../package.json'
|
|
|
|
|
|
|
|
// ?? 🤔 ?? --> https://en.freesewing.dev/packages/core/config
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'tiberius',
|
|
|
|
version,
|
|
|
|
design: 'starf',
|
|
|
|
code: 'starf',
|
|
|
|
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 22:03:08 +02:00
|
|
|
],
|
|
|
|
optionGroups: {
|
2021-10-08 17:32:12 +02:00
|
|
|
fit: ['headRatio', 'armholeDrop'],
|
|
|
|
style: [
|
|
|
|
'lengthBonus',
|
|
|
|
'widthBonus',
|
|
|
|
{ clavi: ['clavi', 'clavusPosBonus', 'clavusWidth'] },
|
|
|
|
'length',
|
|
|
|
'width',
|
2021-09-13 22:03:08 +02:00
|
|
|
],
|
2021-10-08 17:32:12 +02:00
|
|
|
advanced: ['forceWidth'],
|
|
|
|
},
|
|
|
|
measurements: [
|
|
|
|
'head',
|
|
|
|
'shoulderToElbow',
|
|
|
|
'shoulderToShoulder',
|
|
|
|
'biceps',
|
|
|
|
'hpsToWaistBack',
|
|
|
|
'waistToKnee',
|
|
|
|
'waist',
|
|
|
|
'chest',
|
|
|
|
'seat',
|
|
|
|
'hips',
|
|
|
|
'waistToFloor',
|
|
|
|
'waistToUpperLeg',
|
|
|
|
],
|
2021-09-13 22:03:08 +02:00
|
|
|
dependencies: {},
|
|
|
|
inject: {},
|
2021-10-08 17:32:12 +02:00
|
|
|
hide: [],
|
|
|
|
parts: ['tunica'],
|
2021-09-13 22:03:08 +02:00
|
|
|
options: {
|
2021-10-08 17:32:12 +02:00
|
|
|
headRatio: { pct: 100, min: 80, max: 120 },
|
|
|
|
armholeDrop: { pct: 110, min: 100, max: 150 },
|
|
|
|
lengthBonus: { pct: 90, min: 60, max: 130 },
|
|
|
|
widthBonus: { pct: 100, min: 50, max: 130 },
|
|
|
|
clavi: { bool: false },
|
|
|
|
clavusPosBonus: { pct: 105, min: 90, max: 130 },
|
|
|
|
clavusWidth: { pct: 100, min: 50, max: 150 },
|
|
|
|
length: {
|
|
|
|
list: ['ToKnee', 'ToMidLeg', 'ToFloor'],
|
|
|
|
dflt: 'ToKnee',
|
|
|
|
},
|
|
|
|
width: {
|
|
|
|
list: ['ToElbow', 'ToShoulder', 'ToMidArm'],
|
|
|
|
dflt: 'ToMidArm',
|
|
|
|
},
|
|
|
|
// advanced
|
|
|
|
forceWidth: { bool: false },
|
2021-09-13 22:03:08 +02:00
|
|
|
},
|
|
|
|
}
|