2019-09-06 15:53:11 +02:00
|
|
|
import { version } from '../package.json'
|
2019-07-07 13:33:53 +02:00
|
|
|
|
|
|
|
export default {
|
2019-09-06 15:53:11 +02:00
|
|
|
name: 'benjamin',
|
2019-07-07 13:33:53 +02:00
|
|
|
version: version,
|
2019-09-06 15:53:11 +02:00
|
|
|
design: 'Wouter Van Wageningen',
|
|
|
|
code: 'Wouter Van Wageningen',
|
|
|
|
department: 'accessories',
|
|
|
|
type: 'pattern',
|
2019-07-07 13:33:53 +02:00
|
|
|
difficulty: 3,
|
2019-09-06 15:53:11 +02:00
|
|
|
tags: ['top', 'basics'],
|
2019-07-07 13:33:53 +02:00
|
|
|
optionGroups: {
|
2019-09-06 15:53:11 +02:00
|
|
|
fit: ['collarEase', 'adjustmentRibbon', 'bandLength'],
|
|
|
|
style: ['tipWidth', 'knotWidth', 'bowLength', 'bowStyle', 'endStyle']
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
2019-09-06 15:53:11 +02:00
|
|
|
measurements: ['neckCircumference'],
|
2019-07-07 13:33:53 +02:00
|
|
|
dependencies: {},
|
2019-07-08 15:54:19 +02:00
|
|
|
inject: {
|
2019-09-06 15:53:11 +02:00
|
|
|
bow1: 'base',
|
|
|
|
bow2: 'base',
|
|
|
|
bow3: 'base'
|
2019-07-08 15:54:19 +02:00
|
|
|
},
|
2019-09-06 15:53:11 +02:00
|
|
|
hide: ['base'],
|
|
|
|
parts: ['ribbon'],
|
2019-07-07 13:33:53 +02:00
|
|
|
options: {
|
2019-07-08 11:54:47 +02:00
|
|
|
transitionLength: 0.7, // 70% of bandLength
|
|
|
|
bandLength: {
|
|
|
|
pct: 17,
|
|
|
|
min: 15,
|
|
|
|
max: 20
|
|
|
|
},
|
|
|
|
ribbonWidth: {
|
|
|
|
pct: 6,
|
|
|
|
min: 4,
|
|
|
|
max: 8
|
|
|
|
},
|
2019-07-07 13:33:53 +02:00
|
|
|
tipWidth: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 15,
|
2019-07-08 15:54:19 +02:00
|
|
|
min: 10,
|
2019-07-08 11:54:47 +02:00
|
|
|
max: 20
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
knotWidth: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 7,
|
2019-07-08 15:54:19 +02:00
|
|
|
min: 5,
|
|
|
|
max: 10
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
bowLength: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 28,
|
|
|
|
min: 23,
|
|
|
|
max: 33
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
collarEase: {
|
2019-07-08 11:54:47 +02:00
|
|
|
pct: 3,
|
2019-07-07 13:33:53 +02:00
|
|
|
min: 0,
|
2019-07-08 11:54:47 +02:00
|
|
|
max: 6
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
bowStyle: {
|
2019-09-06 15:53:11 +02:00
|
|
|
dflt: 'butterfly',
|
|
|
|
list: ['diamond', 'butterfly', 'square', 'widesquare']
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
|
|
|
endStyle: {
|
2019-09-06 15:53:11 +02:00
|
|
|
dflt: 'straight',
|
|
|
|
list: ['straight', 'pointed', 'rounded']
|
2019-07-07 13:33:53 +02:00
|
|
|
},
|
2019-07-08 11:54:47 +02:00
|
|
|
adjustmentRibbon: { bool: false }
|
2019-07-07 13:33:53 +02:00
|
|
|
}
|
2019-09-06 15:53:11 +02:00
|
|
|
}
|