2019-04-07 17:01:58 +02:00
|
|
|
import { version } from "../package.json";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "florent",
|
|
|
|
version: version,
|
2019-07-06 15:24:23 +02:00
|
|
|
design: "Quentin Felix",
|
|
|
|
code: ["Quentin Felix", "Joost De Cock"],
|
|
|
|
department: "accessories",
|
|
|
|
type: "pattern",
|
|
|
|
difficulty: 2,
|
|
|
|
tags: ["headwear", "cap"],
|
|
|
|
optionGroups: {
|
|
|
|
fit: ["headEase"]
|
|
|
|
},
|
2019-04-07 17:01:58 +02:00
|
|
|
measurements: ["headCircumference"],
|
|
|
|
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 }
|
|
|
|
}
|
|
|
|
};
|