2020-02-09 11:11:19 +01:00
|
|
|
import { version } from '../package.json'
|
2019-07-11 16:49:28 +02:00
|
|
|
|
|
|
|
export default {
|
2020-02-09 11:11:19 +01:00
|
|
|
name: 'sandy',
|
2019-07-11 16:49:28 +02:00
|
|
|
version,
|
2020-02-09 11:11:19 +01:00
|
|
|
design: 'Erica Alcusa Sáez',
|
|
|
|
code: ['Erica Alcusa Sáez', 'Joost De Cock'],
|
2021-05-29 14:04:56 +02:00
|
|
|
department: 'bottoms',
|
2020-02-09 11:11:19 +01:00
|
|
|
type: 'pattern',
|
2019-07-11 16:49:28 +02:00
|
|
|
difficulty: 3,
|
|
|
|
optionGroups: {
|
2020-02-09 11:11:19 +01:00
|
|
|
fit: ['waistbandPosition', 'waistbandShape'],
|
|
|
|
style: ['lengthBonus', 'circleRatio', 'waistbandWidth', 'waistbandOverlap', 'gathering'],
|
2021-04-24 10:16:31 +02:00
|
|
|
construction: ['seamlessFullCircle', 'hemWidth'],
|
2019-07-11 16:49:28 +02:00
|
|
|
},
|
2020-06-28 13:06:26 +02:00
|
|
|
measurements: ['waist', 'waistToFloor', 'waistToHips', 'hips'],
|
2019-07-12 10:04:42 +02:00
|
|
|
dependencies: {
|
2021-04-24 10:16:31 +02:00
|
|
|
waistband: 'skirt',
|
2019-07-12 10:04:42 +02:00
|
|
|
},
|
2019-07-11 16:49:28 +02:00
|
|
|
options: {
|
2019-07-12 13:13:09 +02:00
|
|
|
// Constants
|
|
|
|
minimumOverlap: 15, // Lower than this and we don't draw a button
|
|
|
|
|
2019-07-11 16:49:28 +02:00
|
|
|
// Bool
|
|
|
|
seamlessFullCircle: { bool: false },
|
|
|
|
|
|
|
|
// Millimeter
|
|
|
|
waistbandWidth: { mm: 40, min: 5, max: 150 },
|
|
|
|
|
|
|
|
// Percentages
|
|
|
|
waistbandPosition: { pct: 50, min: 0, max: 100 },
|
|
|
|
lengthBonus: { pct: 50, min: 10, max: 100 },
|
|
|
|
circleRatio: { pct: 50, min: 20, max: 100 },
|
2019-07-12 10:04:42 +02:00
|
|
|
waistbandOverlap: { pct: 3, min: 0, max: 15 },
|
2019-07-11 16:49:28 +02:00
|
|
|
gathering: { pct: 0, min: 0, max: 200 },
|
2019-07-12 13:13:09 +02:00
|
|
|
hemWidth: { pct: 2, min: 1, max: 10 },
|
2019-07-11 16:49:28 +02:00
|
|
|
|
|
|
|
// Lists
|
|
|
|
waistbandShape: {
|
2020-02-09 11:11:19 +01:00
|
|
|
list: ['straight', 'curved'],
|
2021-04-24 10:16:31 +02:00
|
|
|
dflt: 'straight',
|
|
|
|
},
|
|
|
|
},
|
2020-02-09 11:11:19 +01:00
|
|
|
}
|