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

73 lines
1.5 KiB
JavaScript
Raw Normal View History

import { version } from '../package.json'
// ?? 🤔 ?? --> https://en.freesewing.dev/packages/core/config
export default {
name: 'tiberius',
version,
design: 'Rika Tamaike',
code: 'Rika Tamaike',
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',
],
optionGroups: {
2021-10-08 17:32:12 +02:00
fit: ['headRatio', 'armholeDrop'],
style: [
'lengthBonus',
'widthBonus',
2021-10-10 19:11:20 +02:00
{ clavi: ['clavi', 'clavusLocation', 'clavusWidth'] },
2021-10-08 17:32:12 +02:00
'length',
'width',
],
2021-10-08 17:32:12 +02:00
advanced: ['forceWidth'],
},
measurements: [
'head',
'shoulderToElbow',
'shoulderToShoulder',
'biceps',
'hpsToWaistBack',
'waistToKnee',
'waist',
'chest',
'seat',
'hips',
'waistToFloor',
'waistToUpperLeg',
],
dependencies: {},
inject: {},
2021-10-08 17:32:12 +02:00
hide: [],
parts: ['tunica'],
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 },
2021-10-10 19:11:20 +02:00
clavusLocation: { pct: 65, min: 50, max: 80 },
2021-10-08 17:32:12 +02:00
clavusWidth: { pct: 100, min: 50, max: 150 },
length: {
2021-10-16 12:08:02 +02:00
list: ['toKnee', 'toMidLeg', 'toFloor'],
dflt: 'toKnee',
2021-10-08 17:32:12 +02:00
},
width: {
2021-10-16 12:08:02 +02:00
list: ['toElbow', 'toShoulder', 'toMidArm'],
dflt: 'toMidArm',
2021-10-08 17:32:12 +02:00
},
// advanced
forceWidth: { bool: false },
},
}