Skip to content

Commit

Permalink
more fabrics, more patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
rauwebieten committed Dec 9, 2017
1 parent 0249d19 commit f8ee081
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions src/Clothing.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ class Clothing extends Base
];

protected static $clothingFabrics = [
'wool', 'velvet', 'felt', 'suede', 'denim', 'leather'
'wool', 'velvet', 'felt', 'suede', 'denim', 'leather', 'corduroy', 'flannel', 'chiffon', 'velour',
'gabardine', 'tweed', 'alpaca', 'silk'
];

protected static $clothingPurposes = [
'tennis', 'yoga', 'party',
'tennis', 'yoga', 'party', 'swimming'
];

protected static $clothingPatterns = [
Expand All @@ -40,23 +41,37 @@ class Clothing extends Base

protected static $clothingTypes = [
'pants', 'skirt', 'trousers', 't-shirt', 'socks', 'sweat shirt', 'jacket', 'polo', 'shorts',
'sweatpants', 'dress', 'costume', 'apron', 'bathing suit', 'bathing trousers', 'bikini',
'sweatpants', 'dress', 'costume', 'apron', 'suit', 'bathing trousers', 'bikini',
'blouse', 'body stocking', 'bodysuit', 'coat', 'dressing gown', 'gilet', 'gloves', 'stockings',
'jacket', 'jumper', 'jump suit', 'kimono', 'leotard', 'cloak', 'mantle', 'nightdress', 'night gown',
'overcoat', 'overskirt', 'peignoir', 'pullover', 'pyjamas', 'sarong', 'shirt', 'swimming trunks',
'overcoat', 'overskirt', 'peignoir', 'pullover', 'pyjamas', 'sarong', 'shirt', 'trunks',
];

protected static $clothingFormats = [
// yoga pants
'{{clothingPurpose}} {{clothingType}}',
// trendy pants
'{{clothingAdjective}} {{clothingType}}',
// trendy blue pants
'{{clothingAdjective}} {{clothingColor}} {{clothingType}}',
// blue pants
'{{clothingColor}} {{clothingType}}',
// blue yoga pants
'{{clothingColor}} {{clothingPurpose}} {{clothingType}}',
// blue/red paisley pants
'{{clothingColor}}-{{clothingColor}} {{clothingPattern}} {{clothingType}}',
'{{clothingColor}}/{{clothingColor}} {{clothingPattern}} {{clothingType}}',
// denim pants
'{{clothingFabric}} {{clothingType}}',
// blue denim pants
'{{clothingColor}} {{clothingFabric}} {{clothingType}}',
// blue pants (XL)
'{{clothingColor}} {{clothingType}} ({{clothingSize}})',
// blue denim pants (XL)
'{{clothingColor}} {{clothingFabric}} {{clothingType}} ({{clothingSize}})',
// blue denim yoga pants
'{{clothingColor}} {{clothingFabric}} {{clothingPurpose}} {{clothingType}}',
// trendy yoga pants
'{{clothingAdjective}} {{clothingPurpose}} {{clothingType}}',
];

public function clothingColor()
Expand Down

0 comments on commit f8ee081

Please sign in to comment.