32 lines
634 B
JavaScript
32 lines
634 B
JavaScript
import { version } from '../package.json'
|
|
|
|
export default {
|
|
name: 'florent',
|
|
version: version,
|
|
design: 'Quentin Felix',
|
|
code: ['Quentin Felix', 'Joost De Cock'],
|
|
department: 'accessories',
|
|
type: 'pattern',
|
|
difficulty: 2,
|
|
optionGroups: {
|
|
fit: ['headEase'],
|
|
},
|
|
measurements: ['head'],
|
|
dependencies: {
|
|
side: 'top',
|
|
brimTop: 'brimBottom',
|
|
brimInterfacing: 'brimBottom',
|
|
},
|
|
inject: {
|
|
side: 'top',
|
|
brimTop: 'brimBottom',
|
|
brimInterfacing: 'brimBottom',
|
|
},
|
|
options: {
|
|
// Constants
|
|
topSide: 0.8,
|
|
brim: 0,
|
|
// Percentages
|
|
headEase: { pct: 2, min: 0, max: 5 },
|
|
},
|
|
}
|