Skip to content

Commit

Permalink
more patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
rauwebieten committed Dec 7, 2017
1 parent db9366c commit 0249d19
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/Clothing.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@
class Clothing extends Base
{
public static $clothingColors = [
'blue', 'green', 'orange', 'red', 'purple', 'white', 'black', 'gray', 'brown'
'blue', 'green', 'orange', 'red', 'purple', 'white', 'black', 'gray', 'brown', 'pink', 'yellow'
];

public static $clothingSizes = [
'XS', 'S', 'M', 'L', 'XL'
'XS', 'S', 'M', 'L', 'XL', 'XXL'
];

protected static $clothingFabrics = [
'wool', 'velvet', 'felt', 'suede', 'denim', 'leather'
];

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

protected static $clothingPatterns = [
Expand All @@ -35,11 +35,15 @@ class Clothing extends Base

protected static $clothingAdjectives = [
'beautiful', 'cool', 'trendy', 'hip', 'urban', 'wide', 'short', 'long', 'casual',
'stylish', 'extravagant', 'cosy'
'stylish', 'extravagant', 'cosy', 'sexy'
];

protected static $clothingTypes = [
'pants', 'skirt', 'trousers', 't-shirt', 'socks', 'sweat shirt', 'jacket', 'polo'
'pants', 'skirt', 'trousers', 't-shirt', 'socks', 'sweat shirt', 'jacket', 'polo', 'shorts',
'sweatpants', 'dress', 'costume', 'apron', 'bathing 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',
];

protected static $clothingFormats = [
Expand Down

0 comments on commit 0249d19

Please sign in to comment.