cyberpunks 0.1.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1cc90de5f16a53cbba3b62ed1c498bd6e50c0effc7fb111a44ba868b5c065bf4
4
- data.tar.gz: 666c95b7560d1ee8f5747afe1362f3a25c8fda4277b1de17071baf2d85f34634
3
+ metadata.gz: ba92eec2dbab0d80025b3bcb75694e6b579bb2e8dcabdecbde8cbb381c9c6798
4
+ data.tar.gz: 87e29f284278983d70b36ae8943d0cce72cd85ff0dbd17da6c0fae67e5f3f86b
5
5
  SHA512:
6
- metadata.gz: 9f7af30648fc57297952df9dffd34c61e1505d393f79a4530eeaa94dfdf19a22b1d9f5998eb28170bcefc9b1845ea0fab1c1af9728024fbbfebee1b416c74053
7
- data.tar.gz: 6eca69d8ff2d47f79db181d9484923a2fc90c8e8f5b0c256dbcf7f809c0886b0b0e9eadbf9f43c475f9fa255ca38a5bbd7cd14aad366b913ecba2380c76c67d9
6
+ metadata.gz: c4e06693565b2b6b2f5f19f53976b6ca49f7374ada52dd505c64da017606a4de7f143a778c61b8948198eb6900f8857d9c73aab943596add655291264e42887c
7
+ data.tar.gz: af8a2fdbc56d889c0a1660a254f0baea8059d0ffaba6ce50cdc02d4ab48cdd11cecf6e262a2470fffbe77a9790809340ba803b6b0a843dfe626eea7f31c3c8fe
data/README.md CHANGED
@@ -1,12 +1,14 @@
1
+ The Do-It-Yourself (DIY) [Factory of Modern Originals (FoMO)](https://github.com/profilepic/originals) Presents
2
+
1
3
  # Cyberpunks (Pixel Avatars)
2
4
 
3
5
 
4
- cyberpunks - generate your own cyberpunk (blade runner) sci-fi 32×32 pixel avatar images (off chain) from text attributes (via built-in spritesheet); incl. 2x/4x/8x zoom for bigger sizes and more
6
+ Yes, you can! Generate your own cyberpunk (blade runner) sci-fi 32×32 pixel avatar images (off-blockchain) from 100+ text attributes (via built-in spritesheet); incl. 2x/4x/8x zoom for bigger sizes and more
5
7
 
6
8
 
7
9
 
8
- * home :: [github.com/pixelartexchange/pixelart](https://github.com/pixelartexchange/pixelart)
9
- * bugs :: [github.com/pixelartexchange/pixelart/issues](https://github.com/pixelartexchange/pixelart/issues)
10
+ * home :: [github.com/profilepic/text-to-image](https://github.com/profilepic/text-to-image)
11
+ * bugs :: [github.com/profilepic/text-to-image/issues](https://github.com/profilepic/text-to-image/issues)
10
12
  * gem :: [rubygems.org/gems/cyberpunks](https://rubygems.org/gems/cyberpunks)
11
13
  * rdoc :: [rubydoc.info/gems/cyberpunks](http://rubydoc.info/gems/cyberpunks)
12
14
 
@@ -16,158 +18,153 @@ cyberpunks - generate your own cyberpunk (blade runner) sci-fi 32×32 pixel avat
16
18
  ## Usage
17
19
 
18
20
  Let's generate some super-rare never-before-seen sci-fi (blade runner)
19
- cyberpunk (pixel avatars).
21
+ cyberpunk (pixel) avatars / characters.
20
22
 
21
23
  Note: Note: For best merging / composing (of the attributes)
22
- use the order 1) Background 2) Race 3) Face 4) Mouth 5) Nose 6) Eyes 7) Ear Accessory 8) Face Accessory 9) Mask 10) Head Below 11) Eye Accessory 12) Head Above and 13) Mouth Accessory:
24
+ use the order 1) Race 2) Face 3) Mouth 4) Nose 5) Eyes 6) Ear Accessory 7) Face Accessory 8) Mask 9) Head Below 10) Eye Accessory 11) Head Above and 12) Mouth Accessory:
23
25
 
24
26
  ```ruby
25
27
  ###
26
28
  # Cyberpunk No. 1
27
- punk = Cyberpunk::Image.generate( 'Codelines',
28
- 'Human 6',
29
+ base = Cyberpunk::Image.generate( 'Human 6',
29
30
  'Goatee Black',
30
31
  'Idle',
31
32
  'Upturned Septum Piercing',
32
33
  'Masc Idle',
33
34
  'Beanie',
34
35
  'Cig' )
35
-
36
+ punk = base
36
37
  punk.save( "punk1.png")
37
38
  punk.zoom(4).save( "punk1@4x.png" )
38
39
 
39
40
  ## let's change the background
40
- punk = Cyberpunk::Image.generate( 'Human 6',
41
- 'Goatee Black',
42
- 'Idle',
43
- 'Upturned Septum Piercing',
44
- 'Masc Idle',
45
- 'Beanie',
46
- 'Cig',
47
- background: '#638596' )
48
-
41
+ punk = base.background( 'Codelines' )
49
42
  punk.save( "punk1b.png")
50
43
  punk.zoom(4).save( "punk1b@4x.png" )
44
+
45
+ punk = base.background( '#638596' )
46
+ punk.save( "punk1c.png")
47
+ punk.zoom(4).save( "punk1c@4x.png" )
51
48
  ```
52
49
 
53
50
  Voila!
54
51
 
55
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1.png)
56
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1b.png)
52
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk1.png)
53
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk1b.png)
54
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk1c.png)
57
55
 
58
56
  In 4x:
59
57
 
60
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1@4x.png)
61
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk1b@4x.png)
58
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk1@4x.png)
59
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk1b@4x.png)
60
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk1c@4x.png)
62
61
 
63
62
 
64
63
 
65
64
  ```ruby
66
65
  ###
67
66
  # Cyberpunk No. 2
68
- punk = Cyberpunk::Image.generate( 'Pink Diag',
69
- 'Bot',
67
+ base = Cyberpunk::Image.generate( 'Bot',
70
68
  'Lipstick Black',
71
69
  'Bot Nose 3',
72
70
  'Femme Star Liner',
73
71
  'Large Hoop Earrings',
74
72
  'Chainspace Deck Elite I',
75
73
  'Long Pink Pigtails' )
74
+ punk = base
76
75
  punk.save( "punk2.png")
77
76
  punk.zoom(4).save( "punk2@4x.png" )
78
77
 
79
-
80
78
  ## let's change the background
81
- punk = Cyberpunk::Image.generate( 'Bot',
82
- 'Lipstick Black',
83
- 'Bot Nose 3',
84
- 'Femme Star Liner',
85
- 'Large Hoop Earrings',
86
- 'Chainspace Deck Elite I',
87
- 'Long Pink Pigtails',
88
- background: '#638596' )
79
+ punk = base.background( 'Pink Diag' )
89
80
  punk.save( "punk2b.png")
90
81
  punk.zoom(4).save( "punk2b@4x.png" )
82
+
83
+ punk = base.background( '#638596' )
84
+ punk.save( "punk2c.png")
85
+ punk.zoom(4).save( "punk2c@4x.png" )
91
86
  ```
92
87
 
93
88
  Voila!
94
89
 
95
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2.png)
96
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2b.png)
90
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk2.png)
91
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk2b.png)
92
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk2c.png)
97
93
 
98
94
  In 4x:
99
95
 
100
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2@4x.png)
101
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk2b@4x.png)
96
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk2@4x.png)
97
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk2b@4x.png)
98
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk2c@4x.png)
102
99
 
103
100
 
104
101
  ```ruby
105
102
  ###
106
103
  # Cyberpunk No. 3
107
- punk = Cyberpunk::Image.generate( 'Orange Tie Dye',
108
- 'Human 9',
109
- 'Smile',
110
- 'Delicate',
111
- 'Femme Wide',
112
- 'Large Hoop Earrings',
113
- 'Messy Bun')
104
+ base = Cyberpunk::Image.generate( 'Human 9',
105
+ 'Smile',
106
+ 'Delicate',
107
+ 'Femme Wide',
108
+ 'Large Hoop Earrings',
109
+ 'Messy Bun')
110
+ punk = base
114
111
  punk.save( "punk3.png")
115
112
  punk.zoom(4).save( "punk3@4x.png" )
116
113
 
117
-
118
- punk = Cyberpunk::Image.generate( 'Human 9',
119
- 'Smile',
120
- 'Delicate',
121
- 'Femme Wide',
122
- 'Large Hoop Earrings',
123
- 'Messy Bun',
124
- background: '#638596' )
114
+ punk = base.background( 'Orange Tie Dye' )
125
115
  punk.save( "punk3b.png")
126
116
  punk.zoom(4).save( "punk3b@4x.png" )
117
+
118
+ punk = base.background( '#638596' )
119
+ punk.save( "punk3c.png")
120
+ punk.zoom(4).save( "punk3c@4x.png" )
127
121
  ```
128
122
 
129
123
  Voila!
130
124
 
131
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3.png)
132
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3b.png)
125
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk3.png)
126
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk3b.png)
127
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk3c.png)
133
128
 
134
129
  In 4x:
135
130
 
136
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3@4x.png)
137
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk3b@4x.png)
131
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk3@4x.png)
132
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk3b@4x.png)
133
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk3c@4x.png)
138
134
 
139
135
 
140
136
 
141
137
  ```ruby
142
138
  ###
143
139
  # Cyberpunk No. 4
144
- punk = Cyberpunk::Image.generate( 'Metropolis 2',
145
- 'Skull Blue',
146
- 'Skull Red Dot',
147
- 'Hood',
148
- 'Dom Rose' )
140
+ base = Cyberpunk::Image.generate( 'Skull Blue',
141
+ 'Skull Red Dot',
142
+ 'Hood',
143
+ 'Dom Rose' )
144
+ punk = base
149
145
  punk.save( "punk4.png")
150
146
  punk.zoom(4).save( "punk4@4x.png" )
151
147
 
152
-
153
- punk = Cyberpunk::Image.generate( 'Skull Blue',
154
- 'Skull Red Dot',
155
- 'Hood',
156
- 'Dom Rose',
157
- background: '#638596' )
148
+ punk = base.background( 'Metropolis 2' )
158
149
  punk.save( "punk4b.png")
159
150
  punk.zoom(4).save( "punk4b@4x.png" )
151
+
152
+ punk = base.background( '#638596' )
153
+ punk.save( "punk4c.png")
154
+ punk.zoom(4).save( "punk4c@4x.png" )
160
155
  ```
161
156
 
162
157
  Voila!
163
158
 
164
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4.png)
165
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4b.png)
159
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk4.png)
160
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk4b.png)
161
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk4c.png)
166
162
 
167
163
  In 4x:
168
164
 
169
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4@4x.png)
170
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/punk4b@4x.png)
165
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk4@4x.png)
166
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk4b@4x.png)
167
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/punk4c@4x.png)
171
168
 
172
169
 
173
170
  And so on.
@@ -198,18 +195,18 @@ jack_o_lantern.zoom( 4 ).save( "jack_o_lantern@4x.png" )
198
195
 
199
196
  Voila!
200
197
 
201
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/skull_gold.png)
202
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/egirl_hair.png)
203
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/sun_glasses.png)
204
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/jack_o_lantern.png)
198
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/skull_gold.png)
199
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/egirl_hair.png)
200
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/sun_glasses.png)
201
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/jack_o_lantern.png)
205
202
 
206
203
  In 4x:
207
204
 
208
205
 
209
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/skull_gold@4x.png)
210
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/egirl_hair@4x.png)
211
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/sun_glasses@4x.png)
212
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/i/jack_o_lantern@4x.png)
206
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/skull_gold@4x.png)
207
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/egirl_hair@4x.png)
208
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/sun_glasses@4x.png)
209
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/i/jack_o_lantern@4x.png)
213
210
 
214
211
  And so on.
215
212
 
@@ -218,14 +215,16 @@ And so on.
218
215
 
219
216
  ## Appendix - All Built-In Spritesheet Attributes (32x32px)
220
217
 
221
- See the [**spritesheet.csv**](https://github.com/pixelartexchange/pixelart/blob/master/cyberpunks/config/spritesheet.csv) dataset for all attribute names (w/ categories).
218
+ See the [spritesheet.csv](https://github.com/profilepic/text-to-image/blob/master/cyberpunks/config/spritesheet.csv) dataset for all attribute names (w/ categories).
222
219
 
223
- ![](https://github.com/pixelartexchange/pixelart/raw/master/cyberpunks/config/spritesheet.png)
220
+ ![](https://github.com/profilepic/text-to-image/raw/master/cyberpunks/config/spritesheet.png)
224
221
 
225
- (Source: [**cyperpunks/spritesheet.png**](https://github.com/pixelartexchange/pixelart/blob/master/cyberpunks/config/spritesheet.png))
222
+ (Source: [cyperpunks/spritesheet.png](https://github.com/profilepic/text-to-image/blob/master/cyberpunks/config/spritesheet.png))
226
223
 
227
224
 
228
225
 
229
226
  ## Questions? Comments?
230
227
 
231
- Post them on the [CryptoPunksDev reddit](https://old.reddit.com/r/CryptoPunksDev). Thanks.
228
+ Post them on the [D.I.Y. Punk (Pixel) Art reddit](https://old.reddit.com/r/DIYPunkArt). Thanks.
229
+
230
+
data/Rakefile CHANGED
@@ -11,12 +11,12 @@ end
11
11
 
12
12
  Hoe.spec 'cyberpunks' do
13
13
 
14
- self.version = Cyberpunks::VERSION
14
+ self.version = Pixelart::Module::Cyberpunks::VERSION
15
15
 
16
- self.summary = "cyberpunks - generate your own cyberpunk (blade runner) sci-fi 32×32 pixel avatar images (off chain) from text attributes (via built-in spritesheet); incl. 2x/4x/8x zoom for bigger sizes and more"
16
+ self.summary = "cyberpunks - generate your own cyberpunk (blade runner) sci-fi 32×32 pixel avatar images (off-blockchain) from text attributes (via built-in spritesheet); incl. 2x/4x/8x zoom for bigger sizes and more"
17
17
  self.description = summary
18
18
 
19
- self.urls = { home: 'https://github.com/pixelartexchange/pixelart' }
19
+ self.urls = { home: 'https://github.com/profilepic/text-to-image' }
20
20
 
21
21
  self.author = 'Gerald Bauer'
22
22
  self.email = 'wwwmake@googlegroups.com'
@@ -26,7 +26,7 @@ Hoe.spec 'cyberpunks' do
26
26
  self.history_file = 'CHANGELOG.md'
27
27
 
28
28
  self.extra_deps = [
29
- ['pixelart', '>= 1.3.1'],
29
+ ['artfactory', '>= 0.2.0'],
30
30
  ]
31
31
 
32
32
  self.licenses = ['Public Domain']
@@ -1,339 +1,295 @@
1
1
  id, type, name, more_names
2
- 0, , Beam,
3
- 1, , Black Orange Diag,
4
- 2, , Blue Diag,
5
- 3, , Blue Orange Diag,
6
- 4, , Blue Solid,
7
- 5, , Candy Stripe,
8
- 6, , Codelines,
9
- 7, , Dark Purple Solid,
10
- 8, , Double Green,
11
- 9, , Double Pink,
12
- 10, , Double Purple,
13
- 11, , Double Yellow,
14
- 12, , Green Black Diag,
15
- 13, , Green Blue Vert,
16
- 14, , Green Diag,
17
- 15, , Green Double Stripe,
18
- 16, , Green Solid,
19
- 17, , Green Stripe,
20
- 18, , Green Tie Dye,
21
- 19, , Grey Solid,
22
- 20, , Light Blue Solid,
23
- 21, , Magenta Solid,
24
- 22, , Metropolis 1,
25
- 23, , Metropolis 2,
26
- 24, , Orange Solid,
27
- 25, , Orange Tie Dye,
28
- 26, , Peach Blue Vert,
29
- 27, , Peach Solid,
30
- 28, , Pink Diag,
31
- 29, , Pink Solid,
32
- 30, , Purple Green Diag,
33
- 31, , Purple Orange Diag,
34
- 32, , Purple Solid,
35
- 33, , Purple Stripe,
36
- 34, , Purple Tie Dye,
37
- 35, , Red Solid,
38
- 36, , Sun,
39
- 37, , Triple Blue,
40
- 38, , Triple Green,
41
- 39, , Triple Pink,
42
- 40, , Yellow Diag,
43
- 41, , Yellow Double Stripe,
44
- 42, , Yellow Pink Diag,
45
- 43, , Yellow Solid,
46
- 44, , Alien,
47
- 45, , Bot,
48
- 46, , Human 1,
49
- 47, , Human 10,
50
- 48, , Human 2,
51
- 49, , Human 3,
52
- 50, , Human 4,
53
- 51, , Human 5,
54
- 52, , Human 6,
55
- 53, , Human 7,
56
- 54, , Human 8,
57
- 55, , Human 9,
58
- 56, , Skull Blue,
59
- 57, , Skull Gold,
60
- 58, , Skull,
61
- 59, , Buck Teeth,
62
- 60, , Frown,
63
- 61, , Idle,
64
- 62, , Lipstick Black,
65
- 63, , Lipstick Blue,
66
- 64, , Lipstick Green,
67
- 65, , Lipstick Purple,
68
- 66, , Lipstick Red,
69
- 67, , Missing Tooth,
70
- 68, , Open Teeth,
71
- 69, , Smile Double Monroe Piercing,
72
- 70, , Smile,
73
- 71, , Teeth Smile,
74
- 72, , Teethy Grin,
75
- 73, , Basic Mustache Black,
76
- 74, , Basic Mustache Brwn,
77
- 75, , Beard Black,
78
- 76, , Beard Brown,
79
- 77, , Beard Neon Green,
80
- 78, , Blu Manchu Mustache,
81
- 79, , Bot Missing Face w Teeth,
82
- 80, , Bot Missing Face,
83
- 81, , Clown Facepaint,
84
- 82, , Forehead X Tattoo,
85
- 83, , Fu Manchu Mustache Black,
86
- 84, , Fu Manchu Mustache Brown,
87
- 85, , Furies Facepaint,
88
- 86, , Goatee Black,
89
- 87, , Jet Black,
90
- 88, , Joker Facepaint,
91
- 89, , Mutton Chop Curled Mustache Black,
92
- 90, , Mutton Chop Curled Mustache Brown,
93
- 91, , Mutton Chop Winged Mustache Black,
94
- 92, , Mutton Chop Winged Mustache Brown,
95
- 93, , Rough Mustache Black,
96
- 94, , Rough Mustache Brwn,
97
- 95, , Skeleton Facepaint,
98
- 96, , Soul Patch Long Neon Blue,
99
- 97, , Soul Patch Long,
100
- 98, , Soul Patch Short,
101
- 99, , Thick Curled Mustache Black,
102
- 100, , Thick Curled Mustache Brown,
103
- 101, , Thin Curled Mustache Black,
104
- 102, , Thin Curled Mustache Brown,
105
- 103, , Winged Mustache Black,
106
- 104, , Winged Mustache Brown,
107
- 105, , Gas Mask,
108
- 106, , Ninja,
109
- 107, , Oni Mask Green,
110
- 108, , Oni Mask Purple,
111
- 109, , Oni Mask Red,
112
- 110, , Oxygen mask,
113
- 111, , Viral Mask,
114
- 112, , Full Head Bandage,
115
- 113, , Gas Tank Mask,
116
- 114, , Hockey Mask,
117
- 115, , Jack-O'-Lantern,
118
- 116, , Polygon Mask,
119
- 117, , Robo-Jaw,
120
- 118, , Squid Mask,
121
- 119, , Candy Raver Earrings,
122
- 120, , Chain Earring,
123
- 121, , Earpiece,
124
- 122, , Gold Stud Cross Combo,
125
- 123, , Gold Stud Earrings,
126
- 124, , Large Hoop Earrings,
127
- 125, , Open Face Shield,
128
- 126, , Silver Stud Cross Combo,
129
- 127, , Silver Stud Earrings,
130
- 128, , Small Hoop Earrings,
131
- 129, , Blunt,
132
- 130, , Cig,
133
- 131, , Cigar,
134
- 132, , Dom Rose,
135
- 133, , Joint,
136
- 134, , Pipe,
137
- 135, , Tongue Out,
138
- 136, , Tongue Pill,
139
- 137, , Bot Nose 1,
140
- 138, , Bot Nose 2,
141
- 139, , Bot Nose 3,
142
- 140, , Delicate,
143
- 141, , Downturned,
144
- 142, , Droopy Stud Piercing,
145
- 143, , Droopy,
146
- 144, , Prominent Stud Piercing,
147
- 145, , Prominent,
148
- 146, , Upturned Septum Piercing,
149
- 147, , Upturned,
150
- 148, , Beady Variant 1,
151
- 149, , Beady Variant 2,
152
- 150, , Beady Variant 3,
153
- 151, , Beady Variant 4,
154
- 152, , Beady Variant 5,
155
- 153, , Beady Variant 6,
156
- 154, , Beady,
157
- 155, , Bot Beady Wide,
158
- 156, , Bot Beady,
159
- 157, , Bot Busted Eye,
160
- 158, , Bot Idle,
161
- 159, , Closed Variant 1,
162
- 160, , Closed Variant 2,
163
- 161, , Closed,
164
- 162, , Draag Alien Variant 1,
165
- 163, , Draag Alien Variant 2,
166
- 164, , Draag Alien,
167
- 165, , Femme Furrowed Variant 1,
168
- 166, , Femme Furrowed Variant 2,
169
- 167, , Femme Furrowed Variant 3,
170
- 168, , Femme Furrowed Variant 4,
171
- 169, , Femme Furrowed Variant 5,
172
- 170, , Femme Furrowed,
173
- 171, , Femme Idle Variant 1,
174
- 172, , Femme Idle Variant 2,
175
- 173, , Femme Idle Variant 3,
176
- 174, , Femme Idle Variant 4,
177
- 175, , Femme Idle,
178
- 176, , Femme Shade Eyes Variant 1,
179
- 177, , Femme Shade Eyes Variant 2,
180
- 178, , Femme Shade Eyes Variant 3,
181
- 179, , Femme Shade Eyes,
182
- 180, , Femme Star Liner,
183
- 181, , Femme Wide Variant 1,
184
- 182, , Femme Wide Variant 2,
185
- 183, , Femme Wide Variant 3,
186
- 184, , Femme Wide,
187
- 185, , Look Right Variant 1,
188
- 186, , Look Right Variant 2,
189
- 187, , Look Right Variant 3,
190
- 188, , Look Right Variant 4,
191
- 189, , Look Right,
192
- 190, , Masc Furrowed Variant 1,
193
- 191, , Masc Furrowed Variant 2,
194
- 192, , Masc Furrowed Variant 3,
195
- 193, , Masc Furrowed Variant 4,
196
- 194, , Masc Furrowed,
197
- 195, , Masc Idle Variant 1,
198
- 196, , Masc Idle Variant 2,
199
- 197, , Masc Idle Variant 3,
200
- 198, , Masc Idle Variant 4,
201
- 199, , Masc Idle,
202
- 200, , Masc Shade Eyes Variant 1,
203
- 201, , Masc Shade Eyes Variant 2,
204
- 202, , Masc Shade Eyes Variant 3,
205
- 203, , Masc Shade Eyes Variant 4,
206
- 204, , Masc Shade Eyes,
207
- 205, , Masc Wide Variant 1,
208
- 206, , Masc Wide Variant 2,
209
- 207, , Masc Wide Variant 3,
210
- 208, , Masc Wide Variant 4,
211
- 209, , Masc Wide,
212
- 210, , Robo-Eyes Variant 1,
213
- 211, , Robo-Eyes Variant 2,
214
- 212, , Robo-Eyes,
215
- 213, , Skull Glowing Blue,
216
- 214, , Skull Red Dot,
217
- 215, , Skull Yellow Dot,
218
- 216, , Uninterested Variant 1,
219
- 217, , Uninterested Variant 2,
220
- 218, , Uninterested,
221
- 219, , Villian Eyes Variant 1,
222
- 220, , Villian Eyes Variant 2,
223
- 221, , Villian Eyes,
224
- 222, , Aviators,
225
- 223, , Chainspace Deck Basic,
226
- 224, , Chainspace Deck Elite I,
227
- 225, , Chainspace Deck Elite II,
228
- 226, , Chainspace Deck Elite III,
229
- 227, , Chainspace Deck Pro,
230
- 228, , Chainspace Deck SE,
231
- 229, , Cybernetic Implants,
232
- 230, , Deal With It,
233
- 231, , Eye Patch Monocle,
234
- 232, , Eye Patch Sight,
235
- 233, , Eye Patch,
236
- 234, , Geordi Visor,
237
- 235, , Glass Visor,
238
- 236, , Glasses,
239
- 237, , Goggles,
240
- 238, , Hunter Eyes,
241
- 239, , Kaneda Goggles,
242
- 240, , Lennon Glasses,
243
- 241, , Mad-Eye Monocle,
244
- 242, , Night Vision Goggles,
245
- 243, , Nouns,
246
- 244, , Robo-Cyclopian,
247
- 245, , Rodman Wrap Arounds,
248
- 246, , Scouter Green,
249
- 247, , Scouter Red,
250
- 248, , Single Eye Reader,
251
- 249, , Sniper Goggles,
252
- 250, , Sun Glasses Red,
253
- 251, , Sun Glasses,
254
- 252, , Target Visor,
255
- 253, , Thin Glasses,
256
- 254, , Alien Hat,
257
- 255, , Backwards Hat 1,
258
- 256, , Backwards Hat 2,
259
- 257, , Beanie Hair Blonde,
260
- 258, , Beanie Hair Green,
261
- 259, , Beanie,
262
- 260, , Blitmap Hat,
263
- 261, , Chain Hat,
264
- 262, , Chain Headband,
265
- 263, , Classic Top Hat,
266
- 264, , Cowboy Hat Brown,
267
- 265, , Cowboy Hat Pink,
268
- 266, , Cowboy Hat White,
269
- 267, , Crown Bald,
270
- 268, , Crown Long Hair Blue,
271
- 269, , Crown Long Hair Grey,
272
- 270, , Divine Robe,
273
- 271, , Dreadlocks,
274
- 272, , Dual Horn,
275
- 273, , E-Girl Hair,
276
- 274, , Eye Hat,
277
- 275, , Flux Hair,
278
- 276, , Funky Bandana Bald,
279
- 277, , Genesis Hat,
280
- 278, , Goggles Forehead,
281
- 279, , Good Morning Bandana Top Knot,
282
- 280, , Green Short Hair,
283
- 281, , Half Buzz Half Long Blue Hair,
284
- 282, , Half Buzz Half Long Hair,
285
- 283, , Hood,
286
- 284, , Horns,
287
- 285, , Leather Bandana Bald,
288
- 286, , Long Green Front Braid,
289
- 287, , Long Pink Pigtails,
290
- 288, , Long Styled Hair,
291
- 289, , Metal Rice Hat,
292
- 290, , Mystic Top Hat,
293
- 291, , Neon Green Industrial Dreads,
294
- 292, , Pyramid Hat,
295
- 293, , Silly Copter Hat,
296
- 294, , Skull Skulletor Hood,
297
- 295, , Straight Long Hair,
298
- 296, , Straight Long Purple Hair,
299
- 297, , Straw Hat,
300
- 298, , Techno Horns,
301
- 299, , Tie-Dye Bandana Bald,
302
- 300, , Trunks Hair,
303
- 301, , Zorg Hair,
304
- 302, , Bald Unkempt,
305
- 303, , Bleached Vertical Spikes,
306
- 304, , Blue Vertical Spikes,
307
- 305, , Bob Hair,
308
- 306, , Cornrows Dark Hair,
309
- 307, , Cornrows Dark Topknot Hair,
310
- 308, , Cornrows Green Hair,
311
- 309, , Cornrows Light Hair,
312
- 310, , Cropped Cut Dark,
313
- 311, , Double Pigtail Hair Brown,
314
- 312, , Double Pigtail Hair Pink,
315
- 313, , Double Spike,
316
- 314, , Face Chain,
317
- 315, , Grey Ceaser,
318
- 316, , Meditation Circlet,
319
- 317, , Messy Bun,
320
- 318, , Messy Hair Dark,
321
- 319, , Messy Hair Light,
322
- 320, , Metal Skullcap,
323
- 321, , Mohawk Hair Neon Blue,
324
- 322, , Mohawk Hair Neon Pink,
325
- 323, , Mohawk Hair,
326
- 324, , Pompadour,
327
- 325, , Punker Spike Neon Green,
328
- 326, , Punker Spike Neon Pink,
329
- 327, , Purple Fro Hawk,
330
- 328, , Rough Punk Hair Black,
331
- 329, , Rough Punk Hair Pink,
332
- 330, , Ruby Rhod Hair,
333
- 331, , Slicked Blonde Hair,
334
- 332, , Slicked Dark Hair,
335
- 333, , Sushi Chef Bandana,
336
- 334, , Well Combed Hair Blk,
337
- 335, , Well Combed Hair Brwn,
338
- 336, , Widows Peak Blue Hair,
339
- 337, , Widows Peak Hair,
2
+ 0, Race, Alien,
3
+ 1, Race, Bot,
4
+ 2, Race, Human 1,
5
+ 3, Race, Human 10,
6
+ 4, Race, Human 2,
7
+ 5, Race, Human 3,
8
+ 6, Race, Human 4,
9
+ 7, Race, Human 5,
10
+ 8, Race, Human 6,
11
+ 9, Race, Human 7,
12
+ 10, Race, Human 8,
13
+ 11, Race, Human 9,
14
+ 12, Race, Skull Blue,
15
+ 13, Race, Skull Gold,
16
+ 14, Race, Skull,
17
+ 15, Mouth, Buck Teeth,
18
+ 16, Mouth, Frown,
19
+ 17, Mouth, Idle,
20
+ 18, Mouth, Lipstick Black,
21
+ 19, Mouth, Lipstick Blue,
22
+ 20, Mouth, Lipstick Green,
23
+ 21, Mouth, Lipstick Purple,
24
+ 22, Mouth, Lipstick Red,
25
+ 23, Mouth, Missing Tooth,
26
+ 24, Mouth, Open Teeth,
27
+ 25, Mouth, Smile Double Monroe Piercing,
28
+ 26, Mouth, Smile,
29
+ 27, Mouth, Teeth Smile,
30
+ 28, Mouth, Teethy Grin,
31
+ 29, Face, Basic Mustache Black,
32
+ 30, Face, Basic Mustache Brwn, Basic Mustache Brown
33
+ 31, Face, Beard Black,
34
+ 32, Face, Beard Brown,
35
+ 33, Face, Beard Neon Green,
36
+ 34, Face, Blu Manchu Mustache,
37
+ 35, Face, Bot Missing Face w Teeth,
38
+ 36, Face, Bot Missing Face,
39
+ 37, Face, Clown Facepaint,
40
+ 38, Face, Forehead X Tattoo,
41
+ 39, Face, Fu Manchu Mustache Black,
42
+ 40, Face, Fu Manchu Mustache Brown,
43
+ 41, Face, Furies Facepaint,
44
+ 42, Face, Goatee Black,
45
+ 43, Face, Jet Black,
46
+ 44, Face, Joker Facepaint,
47
+ 45, Face, Mutton Chop Curled Mustache Black,
48
+ 46, Face, Mutton Chop Curled Mustache Brown,
49
+ 47, Face, Mutton Chop Winged Mustache Black,
50
+ 48, Face, Mutton Chop Winged Mustache Brown,
51
+ 49, Face, Rough Mustache Black,
52
+ 50, Face, Rough Mustache Brwn, Rough Mustache Brown
53
+ 51, Face, Skeleton Facepaint,
54
+ 52, Face, Soul Patch Long Neon Blue,
55
+ 53, Face, Soul Patch Long,
56
+ 54, Face, Soul Patch Short,
57
+ 55, Face, Thick Curled Mustache Black,
58
+ 56, Face, Thick Curled Mustache Brown,
59
+ 57, Face, Thin Curled Mustache Black,
60
+ 58, Face, Thin Curled Mustache Brown,
61
+ 59, Face, Winged Mustache Black,
62
+ 60, Face, Winged Mustache Brown,
63
+ 61, Face Accessory, Gas Mask,
64
+ 62, Face Accessory, Ninja,
65
+ 63, Face Accessory, Oni Mask Green,
66
+ 64, Face Accessory, Oni Mask Purple,
67
+ 65, Face Accessory, Oni Mask Red,
68
+ 66, Face Accessory, Oxygen mask,
69
+ 67, Face Accessory, Viral Mask,
70
+ 68, Mask, Full Head Bandage,
71
+ 69, Mask, Gas Tank Mask,
72
+ 70, Mask, Hockey Mask,
73
+ 71, Mask, Jack-O'-Lantern,
74
+ 72, Mask, Polygon Mask,
75
+ 73, Mask, Robo-Jaw,
76
+ 74, Mask, Squid Mask,
77
+ 75, Ear Accessory, Candy Raver Earrings,
78
+ 76, Ear Accessory, Chain Earring,
79
+ 77, Ear Accessory, Earpiece,
80
+ 78, Ear Accessory, Gold Stud Cross Combo,
81
+ 79, Ear Accessory, Gold Stud Earrings,
82
+ 80, Ear Accessory, Large Hoop Earrings,
83
+ 81, Ear Accessory, Open Face Shield,
84
+ 82, Ear Accessory, Silver Stud Cross Combo,
85
+ 83, Ear Accessory, Silver Stud Earrings,
86
+ 84, Ear Accessory, Small Hoop Earrings,
87
+ 85, Mouth Accessory, Blunt,
88
+ 86, Mouth Accessory, Cig,
89
+ 87, Mouth Accessory, Cigar,
90
+ 88, Mouth Accessory, Dom Rose,
91
+ 89, Mouth Accessory, Joint,
92
+ 90, Mouth Accessory, Pipe,
93
+ 91, Mouth Accessory, Tongue Out,
94
+ 92, Mouth Accessory, Tongue Pill,
95
+ 93, Nose, Bot Nose 1,
96
+ 94, Nose, Bot Nose 2,
97
+ 95, Nose, Bot Nose 3,
98
+ 96, Nose, Delicate,
99
+ 97, Nose, Downturned,
100
+ 98, Nose, Droopy Stud Piercing,
101
+ 99, Nose, Droopy,
102
+ 100, Nose, Prominent Stud Piercing,
103
+ 101, Nose, Prominent,
104
+ 102, Nose, Upturned Septum Piercing,
105
+ 103, Nose, Upturned,
106
+ 104, Eyes, Beady Variant 1,
107
+ 105, Eyes, Beady Variant 2,
108
+ 106, Eyes, Beady Variant 3,
109
+ 107, Eyes, Beady Variant 4,
110
+ 108, Eyes, Beady Variant 5,
111
+ 109, Eyes, Beady Variant 6,
112
+ 110, Eyes, Beady,
113
+ 111, Eyes, Bot Beady Wide,
114
+ 112, Eyes, Bot Beady,
115
+ 113, Eyes, Bot Busted Eye,
116
+ 114, Eyes, Bot Idle,
117
+ 115, Eyes, Closed Variant 1,
118
+ 116, Eyes, Closed Variant 2,
119
+ 117, Eyes, Closed,
120
+ 118, Eyes, Draag Alien Variant 1,
121
+ 119, Eyes, Draag Alien Variant 2,
122
+ 120, Eyes, Draag Alien,
123
+ 121, Eyes, Femme Furrowed Variant 1,
124
+ 122, Eyes, Femme Furrowed Variant 2,
125
+ 123, Eyes, Femme Furrowed Variant 3,
126
+ 124, Eyes, Femme Furrowed Variant 4,
127
+ 125, Eyes, Femme Furrowed Variant 5,
128
+ 126, Eyes, Femme Furrowed,
129
+ 127, Eyes, Femme Idle Variant 1,
130
+ 128, Eyes, Femme Idle Variant 2,
131
+ 129, Eyes, Femme Idle Variant 3,
132
+ 130, Eyes, Femme Idle Variant 4,
133
+ 131, Eyes, Femme Idle,
134
+ 132, Eyes, Femme Shade Eyes Variant 1,
135
+ 133, Eyes, Femme Shade Eyes Variant 2,
136
+ 134, Eyes, Femme Shade Eyes Variant 3,
137
+ 135, Eyes, Femme Shade Eyes,
138
+ 136, Eyes, Femme Star Liner,
139
+ 137, Eyes, Femme Wide Variant 1,
140
+ 138, Eyes, Femme Wide Variant 2,
141
+ 139, Eyes, Femme Wide Variant 3,
142
+ 140, Eyes, Femme Wide,
143
+ 141, Eyes, Look Right Variant 1,
144
+ 142, Eyes, Look Right Variant 2,
145
+ 143, Eyes, Look Right Variant 3,
146
+ 144, Eyes, Look Right Variant 4,
147
+ 145, Eyes, Look Right,
148
+ 146, Eyes, Masc Furrowed Variant 1,
149
+ 147, Eyes, Masc Furrowed Variant 2,
150
+ 148, Eyes, Masc Furrowed Variant 3,
151
+ 149, Eyes, Masc Furrowed Variant 4,
152
+ 150, Eyes, Masc Furrowed,
153
+ 151, Eyes, Masc Idle Variant 1,
154
+ 152, Eyes, Masc Idle Variant 2,
155
+ 153, Eyes, Masc Idle Variant 3,
156
+ 154, Eyes, Masc Idle Variant 4,
157
+ 155, Eyes, Masc Idle,
158
+ 156, Eyes, Masc Shade Eyes Variant 1,
159
+ 157, Eyes, Masc Shade Eyes Variant 2,
160
+ 158, Eyes, Masc Shade Eyes Variant 3,
161
+ 159, Eyes, Masc Shade Eyes Variant 4,
162
+ 160, Eyes, Masc Shade Eyes,
163
+ 161, Eyes, Masc Wide Variant 1,
164
+ 162, Eyes, Masc Wide Variant 2,
165
+ 163, Eyes, Masc Wide Variant 3,
166
+ 164, Eyes, Masc Wide Variant 4,
167
+ 165, Eyes, Masc Wide,
168
+ 166, Eyes, Robo-Eyes Variant 1,
169
+ 167, Eyes, Robo-Eyes Variant 2,
170
+ 168, Eyes, Robo-Eyes,
171
+ 169, Eyes, Skull Glowing Blue,
172
+ 170, Eyes, Skull Red Dot,
173
+ 171, Eyes, Skull Yellow Dot,
174
+ 172, Eyes, Uninterested Variant 1,
175
+ 173, Eyes, Uninterested Variant 2,
176
+ 174, Eyes, Uninterested,
177
+ 175, Eyes, Villian Eyes Variant 1,
178
+ 176, Eyes, Villian Eyes Variant 2,
179
+ 177, Eyes, Villian Eyes,
180
+ 178, Eye Accessory, Aviators,
181
+ 179, Eye Accessory, Chainspace Deck Basic,
182
+ 180, Eye Accessory, Chainspace Deck Elite I,
183
+ 181, Eye Accessory, Chainspace Deck Elite II,
184
+ 182, Eye Accessory, Chainspace Deck Elite III,
185
+ 183, Eye Accessory, Chainspace Deck Pro,
186
+ 184, Eye Accessory, Chainspace Deck SE,
187
+ 185, Eye Accessory, Cybernetic Implants,
188
+ 186, Eye Accessory, Deal With It,
189
+ 187, Eye Accessory, Eye Patch Monocle,
190
+ 188, Eye Accessory, Eye Patch Sight,
191
+ 189, Eye Accessory, Eye Patch,
192
+ 190, Eye Accessory, Geordi Visor,
193
+ 191, Eye Accessory, Glass Visor,
194
+ 192, Eye Accessory, Glasses,
195
+ 193, Eye Accessory, Goggles,
196
+ 194, Eye Accessory, Hunter Eyes,
197
+ 195, Eye Accessory, Kaneda Goggles,
198
+ 196, Eye Accessory, Lennon Glasses,
199
+ 197, Eye Accessory, Mad-Eye Monocle,
200
+ 198, Eye Accessory, Night Vision Goggles,
201
+ 199, Eye Accessory, Nouns,
202
+ 200, Eye Accessory, Robo-Cyclopian,
203
+ 201, Eye Accessory, Rodman Wrap Arounds,
204
+ 202, Eye Accessory, Scouter Green,
205
+ 203, Eye Accessory, Scouter Red,
206
+ 204, Eye Accessory, Single Eye Reader,
207
+ 205, Eye Accessory, Sniper Goggles,
208
+ 206, Eye Accessory, Sun Glasses Red,
209
+ 207, Eye Accessory, Sun Glasses,
210
+ 208, Eye Accessory, Target Visor,
211
+ 209, Eye Accessory, Thin Glasses,
212
+ 210, Head (Above), Alien Hat,
213
+ 211, Head (Above), Backwards Hat 1,
214
+ 212, Head (Above), Backwards Hat 2,
215
+ 213, Head (Above), Beanie Hair Blonde,
216
+ 214, Head (Above), Beanie Hair Green,
217
+ 215, Head (Above), Beanie,
218
+ 216, Head (Above), Blitmap Hat,
219
+ 217, Head (Above), Chain Hat,
220
+ 218, Head (Above), Chain Headband,
221
+ 219, Head (Above), Classic Top Hat,
222
+ 220, Head (Above), Cowboy Hat Brown,
223
+ 221, Head (Above), Cowboy Hat Pink,
224
+ 222, Head (Above), Cowboy Hat White,
225
+ 223, Head (Above), Crown Bald,
226
+ 224, Head (Above), Crown Long Hair Blue,
227
+ 225, Head (Above), Crown Long Hair Grey, Crown Long Hair Gray
228
+ 226, Head (Above), Divine Robe,
229
+ 227, Head (Above), Dreadlocks,
230
+ 228, Head (Above), Dual Horn,
231
+ 229, Head (Above), E-Girl Hair,
232
+ 230, Head (Above), Eye Hat,
233
+ 231, Head (Above), Flux Hair,
234
+ 232, Head (Above), Funky Bandana Bald,
235
+ 233, Head (Above), Genesis Hat,
236
+ 234, Head (Above), Goggles Forehead,
237
+ 235, Head (Above), Good Morning Bandana Top Knot,
238
+ 236, Head (Above), Green Short Hair,
239
+ 237, Head (Above), Half Buzz Half Long Blue Hair,
240
+ 238, Head (Above), Half Buzz Half Long Hair,
241
+ 239, Head (Above), Hood,
242
+ 240, Head (Above), Horns,
243
+ 241, Head (Above), Leather Bandana Bald,
244
+ 242, Head (Above), Long Green Front Braid,
245
+ 243, Head (Above), Long Pink Pigtails,
246
+ 244, Head (Above), Long Styled Hair,
247
+ 245, Head (Above), Metal Rice Hat,
248
+ 246, Head (Above), Mystic Top Hat,
249
+ 247, Head (Above), Neon Green Industrial Dreads,
250
+ 248, Head (Above), Pyramid Hat,
251
+ 249, Head (Above), Silly Copter Hat,
252
+ 250, Head (Above), Skull Skulletor Hood,
253
+ 251, Head (Above), Straight Long Hair,
254
+ 252, Head (Above), Straight Long Purple Hair,
255
+ 253, Head (Above), Straw Hat,
256
+ 254, Head (Above), Techno Horns,
257
+ 255, Head (Above), Tie-Dye Bandana Bald,
258
+ 256, Head (Above), Trunks Hair,
259
+ 257, Head (Above), Zorg Hair,
260
+ 258, Head (Below), Bald Unkempt,
261
+ 259, Head (Below), Bleached Vertical Spikes,
262
+ 260, Head (Below), Blue Vertical Spikes,
263
+ 261, Head (Below), Bob Hair,
264
+ 262, Head (Below), Cornrows Dark Hair,
265
+ 263, Head (Below), Cornrows Dark Topknot Hair,
266
+ 264, Head (Below), Cornrows Green Hair,
267
+ 265, Head (Below), Cornrows Light Hair,
268
+ 266, Head (Below), Cropped Cut Dark,
269
+ 267, Head (Below), Double Pigtail Hair Brown,
270
+ 268, Head (Below), Double Pigtail Hair Pink,
271
+ 269, Head (Below), Double Spike,
272
+ 270, Head (Below), Face Chain,
273
+ 271, Head (Below), Grey Ceaser, Gray Ceaser
274
+ 272, Head (Below), Meditation Circlet,
275
+ 273, Head (Below), Messy Bun,
276
+ 274, Head (Below), Messy Hair Dark,
277
+ 275, Head (Below), Messy Hair Light,
278
+ 276, Head (Below), Metal Skullcap,
279
+ 277, Head (Below), Mohawk Hair Neon Blue,
280
+ 278, Head (Below), Mohawk Hair Neon Pink,
281
+ 279, Head (Below), Mohawk Hair,
282
+ 280, Head (Below), Pompadour,
283
+ 281, Head (Below), Punker Spike Neon Green,
284
+ 282, Head (Below), Punker Spike Neon Pink,
285
+ 283, Head (Below), Purple Fro Hawk,
286
+ 284, Head (Below), Rough Punk Hair Black,
287
+ 285, Head (Below), Rough Punk Hair Pink,
288
+ 286, Head (Below), Ruby Rhod Hair,
289
+ 287, Head (Below), Slicked Blonde Hair,
290
+ 288, Head (Below), Slicked Dark Hair,
291
+ 289, Head (Below), Sushi Chef Bandana,
292
+ 290, Head (Below), Well Combed Hair Blk, Well Combed Hair Black
293
+ 291, Head (Below), Well Combed Hair Brwn, Well Combed Hair Brown
294
+ 292, Head (Below), Widows Peak Blue Hair,
295
+ 293, Head (Below), Widows Peak Hair,
Binary file
@@ -1,9 +1,10 @@
1
1
 
2
-
2
+ module Pixelart
3
+ module Module
3
4
  module Cyberpunks
4
5
 
5
- MAJOR = 0
6
- MINOR = 1
6
+ MAJOR = 1
7
+ MINOR = 0
7
8
  PATCH = 0
8
9
  VERSION = [MAJOR,MINOR,PATCH].join('.')
9
10
 
@@ -19,5 +20,7 @@ module Cyberpunks
19
20
  File.expand_path( File.dirname(File.dirname(File.dirname(__FILE__))) )
20
21
  end
21
22
 
23
+ end # module Pixelart
24
+ end # module Module
22
25
  end # module Cyberpunks
23
26
 
data/lib/cyberpunks.rb CHANGED
@@ -1,59 +1,59 @@
1
- ## 3rd party
2
- require 'pixelart/base'
1
+ ## our own "3rd" party gems
2
+ require 'artfactory/base'
3
3
 
4
4
 
5
5
 
6
6
  ## our own code
7
- require 'cyberpunks/version' # note: let version always go first
7
+ require_relative 'cyberpunks/version' # note: let version always go first
8
8
 
9
9
 
10
10
 
11
- ## forward define superclass for image
12
- module Cyberpunks
13
- class Image < Pixelart::Image; end
14
- end
15
-
16
11
  ###
17
12
  ## add convenience pre-configurated generatored with build-in spritesheet (see config)
18
-
19
- module Cyberpunks
20
-
21
- def self.generator
22
- @generator ||= Pixelart::Generator.new( "#{root}/config/spritesheet.png",
23
- "#{root}/config/spritesheet.csv",
24
- width: 32,
25
- height: 32 )
26
- end
27
-
28
-
29
- class Image
30
- def self.generate( *values, background: nil )
31
- img = Cyberpunks.generator.generate( *values, background: background )
32
- ## note: unwrap inner image before passing on to c'tor (requires ChunkyPNG image for now)
33
- new( 32, 32, img.image )
34
- end # method Image.generate
35
- end # class Image
36
-
37
-
13
+ module Cyberpunk
38
14
  class Spritesheet
15
+ def self.builtin
16
+ @builtin ||= Pixelart::Spritesheet.read( "#{Pixelart::Module::Cyberpunks.root}/config/spritesheet.png",
17
+ "#{Pixelart::Module::Cyberpunks.root}/config/spritesheet.csv",
18
+ width: 32,
19
+ height: 32 )
20
+ end
39
21
  ## note: for now class used for "namespace" only
40
22
  def self.find_by( name: ) ## return archetype/attribute image by name
41
- # note: pass along name as q (query string)
42
- Cyberpunks.generator.find( name )
23
+ builtin.find_by( name: name )
43
24
  end
44
25
  end # class Spritesheet
45
26
  ## add convenience (alternate spelling) alias - why? why not?
46
27
  SpriteSheet = Spritesheet
47
28
  Sheet = Spritesheet
48
29
  Sprite = Spritesheet
49
- end # module Coolcats
30
+
31
+
32
+ class Image < Pixelart::Image
33
+ def self.generator
34
+ @generator ||= Artfactory.use( Cyberpunk::Sheet.builtin,
35
+ image_class: Image )
36
+ end
37
+
38
+
39
+ NAMES = ['cyberpunk', 'cyberpunks']
40
+
41
+ DEFAULT_ATTRIBUTES = ['Human 9',
42
+ 'Smile',
43
+ 'Delicate',
44
+ 'Femme Wide',
45
+ 'Large Hoop Earrings',
46
+ 'Messy Bun']
47
+
48
+ def self.generate( *names )
49
+ generator.generate( *names )
50
+ end
51
+ end # class Image
52
+ end # module Cyberpunk
50
53
 
51
54
 
52
55
  ### add some convenience shortcuts
53
- CyberPunks = Cyberpunks
54
- ## add singular too -why? why not?
55
- Cyberpunk = Cyberpunks
56
- CyberPunk = Cyberpunks
56
+ CyberPunk = Cyberpunk
57
57
 
58
58
 
59
59
 
@@ -64,6 +64,4 @@ include Pixelart
64
64
 
65
65
 
66
66
 
67
-
68
-
69
- puts Cyberpunks.banner # say hello
67
+ puts Pixelart::Module::Cyberpunks.banner # say hello
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cyberpunks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gerald Bauer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-23 00:00:00.000000000 Z
11
+ date: 2022-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: pixelart
14
+ name: artfactory
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 1.3.1
19
+ version: 0.2.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 1.3.1
26
+ version: 0.2.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rdoc
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +59,7 @@ dependencies:
59
59
  - !ruby/object:Gem::Version
60
60
  version: '3.23'
61
61
  description: cyberpunks - generate your own cyberpunk (blade runner) sci-fi 32×32
62
- pixel avatar images (off chain) from text attributes (via built-in spritesheet);
62
+ pixel avatar images (off-blockchain) from text attributes (via built-in spritesheet);
63
63
  incl. 2x/4x/8x zoom for bigger sizes and more
64
64
  email: wwwmake@googlegroups.com
65
65
  executables: []
@@ -77,7 +77,7 @@ files:
77
77
  - config/spritesheet.png
78
78
  - lib/cyberpunks.rb
79
79
  - lib/cyberpunks/version.rb
80
- homepage: https://github.com/pixelartexchange/pixelart
80
+ homepage: https://github.com/profilepic/text-to-image
81
81
  licenses:
82
82
  - Public Domain
83
83
  metadata: {}
@@ -102,6 +102,6 @@ rubygems_version: 3.3.7
102
102
  signing_key:
103
103
  specification_version: 4
104
104
  summary: cyberpunks - generate your own cyberpunk (blade runner) sci-fi 32×32 pixel
105
- avatar images (off chain) from text attributes (via built-in spritesheet); incl.
106
- 2x/4x/8x zoom for bigger sizes and more
105
+ avatar images (off-blockchain) from text attributes (via built-in spritesheet);
106
+ incl. 2x/4x/8x zoom for bigger sizes and more
107
107
  test_files: []