punks 0.4.1 → 0.5.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: 05cff2486baab314e77942573c124859309686f8af0ba3c735ccfc0d46213a2c
4
- data.tar.gz: '09d204e4ed0d258f002703a6ae9d08ecc7438046707086ef61de65fbe939f240'
3
+ metadata.gz: 9eb925127c4451cbf8badce2da52e7cbb766c8f0107ec8c6a3194a7bc7194016
4
+ data.tar.gz: df942f5efc5f3e789fb71a55354c4599a3b4242576cd8d9164432fa4e801e73d
5
5
  SHA512:
6
- metadata.gz: bde973256f77c0931ad6798995a57560b41af29a615eb2bffc998ef0187d7943f0e10880d77fc603bff62d5207f3e6a28d4c393ba4f06a830f6b8627665ddfed
7
- data.tar.gz: 7c2f2ea09a7b44c7adfa3a7d15efec8061d4f120e4a837a961cac5a9987dfdaa5731c67e8b2f2af9da8e70d1ac1230fba999d9359bb9b32c67b898cabf8f5578
6
+ metadata.gz: 713cc7a18bca888b65a24043a8d23036d045ba50a7d1e6c8361106de1403ad1216bf6c93a1f6c3c239e0c6d0ca0c5aba4d36af64db0f59df40a1710d336d4c42
7
+ data.tar.gz: d83b82014d3f91aabeb13f2519c8c142aed9351138c5f987b1a936bfe9c135c3fba391a43583e27ade7b315e677617824285bd37dbf74c6e21da17bd760ff797
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  The Do-It-Yourself (DIY) [Factory of Modern Originals (FoMO)](https://github.com/pixelartexchange/originals) Presents
2
2
 
3
- # Punks (Incl. Ye Olde Punks V1/V2 Anno 2017), Phunks, Philips, Marilyns, Saudis/Sheiks, Men In Black, Hotties & More (Pixel Characters / Avatars)
3
+ # Punks (Incl. Ye Olde Punks V1/V2 Anno 2017), Phunks, Philips, Marilyns, Marcs, Saudis/Sheiks, Men In Black, Hotties & More (Pixel Characters / Avatars)
4
4
 
5
- Yes, you can! Generate your own 24×24 (or 32×32) punk (incl. Matt & John's® ye olde punks v1/v2 anno 2017 style), phunk, philip, marilyn, saudi/sheik, man in black, hottie & more (pixel) avatar / character images (off chain) from text attributes (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and more
5
+ Yes, you can! Generate your own 24×24 (or 32×32) punk (incl. Matt & John's® ye olde punks v1/v2 anno 2017 style), phunk, philip, marilyn, marc, saudi/sheik, man in black, hottie & more (pixel) avatar / character images (off chain) from text attributes (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and more
6
6
 
7
7
 
8
8
 
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ Hoe.spec 'punks' do
13
13
 
14
14
  self.version = Pixelart::Module::Punks::VERSION
15
15
 
16
- self.summary = "punks - generate your own 24×24 (or 32×32) punk (incl. Matt & John's® ye olde punk v1/v2 anno 2017 style), phunk, philip, marilyn, saudi/sheik, man in black, hottie 'n' more (pixel) avatar / character images (off chain) from text attributes (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and more"
16
+ self.summary = "punks - generate your own 24×24 (or 32×32) punk (incl. Matt & John's® ye olde punk v1/v2 anno 2017 style), phunk, philip, marilyn, marc, saudi/sheik, man in black, hottie 'n' more (pixel) avatar / character images (off chain) from text attributes (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and more"
17
17
  self.description = summary
18
18
 
19
19
  self.urls = { home: 'https://github.com/cryptopunksnotdead/cryptopunks' }
@@ -41,6 +41,9 @@ module Punk32
41
41
 
42
42
  class Image < Pixelart::Image
43
43
 
44
+ NAMES = ['punk32', 'punks32']
45
+ DEFAULT_ATTRIBUTES = ['Male Mid 2']
46
+
44
47
  def self.generate( *values, patch: nil )
45
48
 
46
49
  attributes = [] ## collect all attribute images (32x32, 24x24, etc.) to merge/paste here
@@ -16,6 +16,9 @@ module Punk40
16
16
 
17
17
  class Image < Pixelart::Image
18
18
 
19
+ NAMES = ['punk40', 'punks40']
20
+ DEFAULT_ATTRIBUTES = ['Male Mid 2']
21
+
19
22
  def self.generate( *values, patch: nil )
20
23
 
21
24
  attributes = [] ## collect all attribute images (32x32, 24x24, etc.) to merge/paste here
data/lib/punks/marcs.rb CHANGED
@@ -18,6 +18,9 @@ module Marc
18
18
  Sprite = Spritesheet
19
19
 
20
20
 
21
+ NAMES = ['marc', 'marcs']
22
+ DEFAULT_ATTRIBUTES = ['Marc']
23
+
21
24
  class Image < Pixelart::Image
22
25
  def self.generator
23
26
  @generator ||= Artfactory.use( Sheet.builtin,
@@ -7,6 +7,8 @@ module Marilyn
7
7
  MARILYN_ATTRIBUTES = ['Female 3', 'Wild Blonde', 'Mole',
8
8
  'Blue Eye Shadow']
9
9
 
10
+ NAMES = ['marilyn', 'marilyns']
11
+
10
12
  def self.generate( *values, style: nil )
11
13
  punk = Punk::Image.generate( *MARILYN_ATTRIBUTES,
12
14
  *values, style: style )
data/lib/punks/philips.rb CHANGED
@@ -7,6 +7,10 @@ module Philip
7
7
  ## note: right-looking ("pre-phlipped") philip
8
8
  PHILIP = Pixelart::Image.read( "#{Pixelart::Module::Punks.root}/config/philip-24x24.png" )
9
9
 
10
+
11
+ NAMES = ['philip', 'philips',
12
+ 'philipp', 'philipps' ]
13
+
10
14
  def self.generate( *values )
11
15
  punk = new( 24, 24 )
12
16
  punk.compose!( PHILIP )
data/lib/punks/phunks.rb CHANGED
@@ -3,6 +3,9 @@ module Phunk
3
3
 
4
4
  class Image < Pixelart::Image
5
5
 
6
+ NAMES = ['phunk', 'phunks']
7
+ DEFAULT_ATTRIBUTES = ['Male 2']
8
+
6
9
  def self.generate( *values, style: nil )
7
10
  punk = Punk::Image.generate( *values, style: style )
8
11
  phunk = punk.mirror
data/lib/punks/punks.rb CHANGED
@@ -40,6 +40,12 @@ module Punk
40
40
  @generator ||= GeneratorEx.use( Sheet.builtin, image_class: Image )
41
41
  end
42
42
 
43
+
44
+
45
+
46
+ NAMES = ['punk', 'punks']
47
+ DEFAULT_ATTRIBUTES = ['Male 2']
48
+
43
49
  def self.generate( *values, style: nil, patch: nil )
44
50
 
45
51
  if values[0].is_a?( String )
@@ -26,6 +26,11 @@ module Punkxl
26
26
  @generator ||= Artfactory.use( Punkxl::Sheet.builtin,
27
27
  image_class: Image )
28
28
  end
29
+
30
+
31
+ NAMES = ['punkxl', 'punksxl']
32
+ DEFAULT_ATTRIBUTES = ['Male 2']
33
+
29
34
  def self.generate( *names )
30
35
  generator.generate( *names )
31
36
  end
data/lib/punks/saudis.rb CHANGED
@@ -36,6 +36,11 @@ module Saudi
36
36
  'none'
37
37
  ]
38
38
 
39
+ NAMES = ['saudi', 'saudis',
40
+ 'sheik', 'sheiks']
41
+ DEFAULT_ATTRIBUTES = ['Male 05', 'White Shemag']
42
+
43
+
39
44
  def self.generate( *names )
40
45
  names = names.filter { |name| !NA.include?( Pixelart::Spritesheet.normalize_key( name )) }
41
46
 
data/lib/punks/version.rb CHANGED
@@ -4,8 +4,8 @@ module Module
4
4
  module Punks
5
5
 
6
6
  MAJOR = 0
7
- MINOR = 4
8
- PATCH = 1
7
+ MINOR = 5
8
+ PATCH = 0
9
9
  VERSION = [MAJOR,MINOR,PATCH].join('.')
10
10
 
11
11
  def self.version
@@ -33,6 +33,13 @@ module YeOldePunkAnno2017
33
33
  @generator ||= GeneratorEx.use( Sheet.builtin, image_class: Image )
34
34
  end
35
35
 
36
+
37
+ NAMES = ['punkv1', 'punksv1',
38
+ 'punkv2', 'punksv2',
39
+ 'punk2017', 'punks2017',
40
+ 'yeoldepunk', 'yeoldepunks']
41
+ DEFAULT_ATTRIBUTES = ['Male 2']
42
+
36
43
  def self.generate( *values )
37
44
  generator.generate( *values )
38
45
  end # method Image.generate
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: punks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.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-07-28 00:00:00.000000000 Z
11
+ date: 2022-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pixelart
@@ -87,9 +87,10 @@ dependencies:
87
87
  - !ruby/object:Gem::Version
88
88
  version: '3.23'
89
89
  description: punks - generate your own 24×24 (or 32×32) punk (incl. Matt & John's®
90
- ye olde punk v1/v2 anno 2017 style), phunk, philip, marilyn, saudi/sheik, man in
91
- black, hottie 'n' more (pixel) avatar / character images (off chain) from text attributes
92
- (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and more
90
+ ye olde punk v1/v2 anno 2017 style), phunk, philip, marilyn, marc, saudi/sheik,
91
+ man in black, hottie 'n' more (pixel) avatar / character images (off chain) from
92
+ text attributes (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes
93
+ and more
93
94
  email: wwwmake@googlegroups.com
94
95
  executables: []
95
96
  extensions: []
@@ -154,7 +155,8 @@ rubygems_version: 3.3.7
154
155
  signing_key:
155
156
  specification_version: 4
156
157
  summary: punks - generate your own 24×24 (or 32×32) punk (incl. Matt & John's® ye
157
- olde punk v1/v2 anno 2017 style), phunk, philip, marilyn, saudi/sheik, man in black,
158
- hottie 'n' more (pixel) avatar / character images (off chain) from text attributes
159
- (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and more
158
+ olde punk v1/v2 anno 2017 style), phunk, philip, marilyn, marc, saudi/sheik, man
159
+ in black, hottie 'n' more (pixel) avatar / character images (off chain) from text
160
+ attributes (via built-in spritesheets); incl. 2x/4x/8x zoom for bigger sizes and
161
+ more
160
162
  test_files: []