kittyverse 0.5.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Manifest.txt +2 -3
- data/README.md +28 -24
- data/Rakefile +1 -1
- data/lib/kittyverse.rb +5 -9
- data/lib/kittyverse/cattributes.rb +1 -1
- data/lib/kittyverse/config/exclusives.rb +197 -0
- data/lib/kittyverse/config/fancies.rb +310 -178
- data/lib/kittyverse/config/purrstiges.rb +178 -11
- data/lib/kittyverse/config/special_editions.rb +135 -0
- data/lib/kittyverse/fancies.rb +4 -1
- data/lib/kittyverse/version.rb +4 -7
- data/test/test_cattributes.rb +0 -2
- data/test/test_fancies.rb +0 -2
- data/test/test_genome.rb +3 -0
- data/test/test_traits.rb +0 -2
- metadata +10 -13
- data/LICENSE.md +0 -116
- data/lib/kittyverse/api/client.rb +0 -147
- data/lib/kittyverse/api/versions.rb +0 -91
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2c9a1e3b4124c7cfc32ae01192d0ae57348ef143a79fabfe9517deb5494ea8f8
|
4
|
+
data.tar.gz: a32acc4988391b51d6d4bd9d84810fcbf642283431da8d8648a309e139c157f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 520e64e77f3a60bc3da660a247cd2067bba1fa1de14ca4d7cf2f4d8f700d11edd545987a68ed6afcf318e01a89d08dd68b7f42f540cc0f65e7c2876971d9a745
|
7
|
+
data.tar.gz: 0b0f530b74d3643a767f163d5fa8fe16225e016f8b3fbcc3476bae0f800e20393e25ca460cd9d247b5758a5118500c7066a1652891c987dc5a6e2079e34effc7
|
data/Manifest.txt
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
CHANGELOG.md
|
2
|
-
LICENSE.md
|
3
2
|
Manifest.txt
|
4
3
|
README.md
|
5
4
|
Rakefile
|
6
5
|
lib/kittyverse.rb
|
7
|
-
lib/kittyverse/api/client.rb
|
8
|
-
lib/kittyverse/api/versions.rb
|
9
6
|
lib/kittyverse/cattributes.rb
|
10
7
|
lib/kittyverse/config/colors.rb
|
8
|
+
lib/kittyverse/config/exclusives.rb
|
11
9
|
lib/kittyverse/config/fancies.rb
|
12
10
|
lib/kittyverse/config/purrstiges.rb
|
11
|
+
lib/kittyverse/config/special_editions.rb
|
13
12
|
lib/kittyverse/config/traits.rb
|
14
13
|
lib/kittyverse/config/traits_timeline.rb
|
15
14
|
lib/kittyverse/fancies.rb
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Kittyverse
|
2
2
|
|
3
3
|
|
4
|
-
kittyverse
|
4
|
+
kittyverse - helper classes for cattributes, trait types, traits, genes, genomes and more for cryptokitties and copycats
|
5
5
|
|
6
6
|
* home :: [github.com/cryptocopycats/kittyverse](https://github.com/cryptocopycats/kittyverse)
|
7
7
|
* bugs :: [github.com/cryptocopycats/kittyverse/issues](https://github.com/cryptocopycats/kittyverse/issues)
|
@@ -205,7 +205,7 @@ Use the `Genome` helper class to
|
|
205
205
|
decipher the genes and lookup traits, mewtation tiers / levels,
|
206
206
|
recessive / hidden genes and more.
|
207
207
|
|
208
|
-
Let's build a gene reader. Pass in the "magic" 256-bit integer number for kitty #1001
|
208
|
+
Let's build a gene reader. Pass in the "magic" 256-bit integer number for kitty #1001
|
209
209
|
from the blockchain
|
210
210
|
and get all 48 genes deciphered in 12x4 slices / blocks:
|
211
211
|
|
@@ -217,14 +217,14 @@ genome.kai
|
|
217
217
|
#=> "aaaa 7885 22f2 agff 1661 7755 e979 2441 6667 7664 a9aa cfff"
|
218
218
|
|
219
219
|
genome.codes
|
220
|
-
#=> "09-09-09-09 06-07-07-04 01-01-14-01 09-15-14-14 00-05-05-00 06-06-04-04
|
220
|
+
#=> "09-09-09-09 06-07-07-04 01-01-14-01 09-15-14-14 00-05-05-00 06-06-04-04
|
221
221
|
# 13-08-06-08 01-03-03-00 05-05-05-06 06-05-05-03 09-08-09-09 11-14-14-14"
|
222
222
|
|
223
223
|
genome.binary
|
224
|
-
#=> "01001-01001-01001-01001 00110-00111-00111-00100 00001-00001-01110-00001
|
225
|
-
# 01001-01111-01110-01110 00000-00101-00101-00000 00110-00110-00100-00100
|
226
|
-
# 01101-01000-00110-01000 00001-00011-00011-00000 00101-00101-00101-00110
|
227
|
-
# 00110-00101-00101-00011 01001-01000-01001-01001 01011-01110-01110-01110"
|
224
|
+
#=> "01001-01001-01001-01001 00110-00111-00111-00100 00001-00001-01110-00001
|
225
|
+
# 01001-01111-01110-01110 00000-00101-00101-00000 00110-00110-00100-00100
|
226
|
+
# 01101-01000-00110-01000 00001-00011-00011-00000 00101-00101-00101-00110
|
227
|
+
# 00110-00101-00101-00011 01001-01000-01001-01001 01011-01110-01110-01110"
|
228
228
|
|
229
229
|
genome.each_with_index do |slice,i|
|
230
230
|
offset = i*4
|
@@ -316,7 +316,7 @@ Purrstige (PU) - Genes 44-47:
|
|
316
316
|
|
317
317
|
|
318
318
|
Tip: See the chapter 2 in the
|
319
|
-
"[Programming Crypto Collectibles Step-by-Step Book / Guide. Let's start with CryptoKitties & Copycats. Inside Unique Bits & Bytes on the Blockchain...](https://github.com/
|
319
|
+
"[Programming Crypto Collectibles Step-by-Step Book / Guide. Let's start with CryptoKitties & Copycats. Inside Unique Bits & Bytes on the Blockchain...](https://github.com/cryptocopycats/programming-crypto-collectibles/blob/master/02_genereader.md)"
|
320
320
|
for how to create your own gene reader from scratch.
|
321
321
|
|
322
322
|
|
@@ -339,23 +339,23 @@ genome.body.class #=> Gene::Slice
|
|
339
339
|
genome.body.type.name #=> "Fur"
|
340
340
|
genome.body.type.code #=> "FU"
|
341
341
|
# -or-
|
342
|
-
genome[:body].class #=> Gene::Slice
|
343
|
-
genome[:body].type.name #=> "Fur"
|
342
|
+
genome[:body].class #=> Gene::Slice
|
343
|
+
genome[:body].type.name #=> "Fur"
|
344
344
|
genome[:body].type.code #=> "FU"
|
345
345
|
# -or-
|
346
|
-
genome.fu.class #=> Gene::Slice
|
347
|
-
genome.fu.type.name #=> "Fur"
|
346
|
+
genome.fu.class #=> Gene::Slice
|
347
|
+
genome.fu.type.name #=> "Fur"
|
348
348
|
genome.fu.type.code #=> "FU"
|
349
349
|
# -or-
|
350
350
|
genome[:FU].class #=> Gene::Slice
|
351
|
-
genome[:FU].type.name #=> "Fur"
|
351
|
+
genome[:FU].type.name #=> "Fur"
|
352
352
|
genome[:FU].type.code #=> "FU"
|
353
353
|
|
354
|
-
genome.body.d.class #=> Trait
|
354
|
+
genome.body.d.class #=> Trait
|
355
355
|
genome.body.d.name #=> "Ragamuffin"
|
356
356
|
genome.body.d.code #=> "FU14"
|
357
357
|
# -or-
|
358
|
-
genome[:body].d.class #=> Trait
|
358
|
+
genome[:body].d.class #=> Trait
|
359
359
|
genome[:body].d.name #=> "Ragamuffin"
|
360
360
|
genome[:body].d.code #=> "FU14"
|
361
361
|
# -or-
|
@@ -372,7 +372,7 @@ genome.fu.d.name #=> "Ragamuffin"
|
|
372
372
|
genome.fu.d.code #=> "FU14"
|
373
373
|
# -or-
|
374
374
|
genome.fu[0].class #=> Trait
|
375
|
-
genome.fu[0].name #=> "Ragamuffin"
|
375
|
+
genome.fu[0].name #=> "Ragamuffin"
|
376
376
|
genome.fu[0].code #=> "FU14"
|
377
377
|
|
378
378
|
genome.fu.r1.class #=> Trait
|
@@ -387,21 +387,24 @@ genome.body[1].code #=> "FU14"
|
|
387
387
|
and so on and so forth.
|
388
388
|
|
389
389
|
|
390
|
+
|
390
391
|
## Real World Usage
|
391
392
|
|
392
|
-
### Reference Pages / Cheat Sheets
|
393
|
+
### Reference Pages / Cheat Sheets @ Kittypedia
|
393
394
|
|
394
|
-
Auto-generated
|
395
|
+
Auto-generated reference pages / cheat sheets
|
396
|
+
in the [Kittypedia - The Free CryptoKitties Encyclopedia](https://github.com/cryptocopycats/kittypedia) include:
|
395
397
|
|
396
|
-
- [
|
397
|
-
- [
|
398
|
-
- [
|
399
|
-
- [
|
400
|
-
- [
|
398
|
+
- [Cattributes Rarity / Popularity Statistics](https://github.com/cryptocopycats/kittypedia/blob/master/CATTRIBUTES.md)
|
399
|
+
- [Genome / Genes Cheat Sheet](https://github.com/cryptocopycats/kittypedia/blob/master/GENES.md) - Fur (FU) · Pattern (PA) · Eye Color (EC) · Eye Shape (ES) · Base Color (BC) · Highlight Color (HC) · Accent Color (AC) · Wild Element (WE) · Mouth (MO) · Environment (EN) · Secret Y Gene (SE) · Purrstige (PU)
|
400
|
+
- [Traits Cheat Sheet (with Codes, Mewtation Levels / Tiers, Search Links and More)](https://github.com/cryptocopycats/kittypedia/blob/master/TRAITS.md)
|
401
|
+
- [Fancy / Exclusive / Special Edition Cats - Timeline](https://github.com/cryptocopycats/kittypedia/blob/master/TIMELINE-FANCIES.md)
|
402
|
+
- [Purrstige Trait Recipes / Formulas - Timeline](https://github.com/cryptocopycats/kittypedia/blob/master/TIMELINE-PURRSTIGES.md)
|
401
403
|
- and others
|
402
404
|
|
403
405
|
|
404
406
|
|
407
|
+
|
405
408
|
### More
|
406
409
|
|
407
410
|
See the [copycats command line tool (and core library)](https://github.com/cryptocopycats/copycats) - crypto cats / kitties collectibles unchained - buy! sell! hodl! sire! - play for free - runs off the blockchain - no ether / gas required
|
@@ -409,12 +412,13 @@ See the [copycats command line tool (and core library)](https://github.com/crypt
|
|
409
412
|
|
410
413
|
## More Documentation / Articles / Samples
|
411
414
|
|
412
|
-
- [Programming Crypto Collectibles Step-by-Step Book / Guide](https://github.com/
|
415
|
+
- [Programming Crypto Collectibles Step-by-Step Book / Guide](https://github.com/cryptocopycats/programming-crypto-collectibles) -
|
413
416
|
Let's start with CryptoKitties & Copycats. Inside Unique Bits & Bytes on the Blockchain...
|
414
417
|
- [Ruby Quiz - Challenge #8 - Base32 Alphabet](https://github.com/planetruby/quiz/tree/master/008) - Convert the Super "Sekretoooo" 256-Bit CryptoKitties Genome to Kai Notation - Annipurrsary!
|
415
418
|
|
416
419
|
|
417
420
|
|
421
|
+
|
418
422
|
## License
|
419
423
|
|
420
424
|

|
data/Rakefile
CHANGED
@@ -8,7 +8,7 @@ Hoe.spec 'kittyverse' do
|
|
8
8
|
self.summary = "kittyverse - helper classes for cattributes, trait types, traits, genes, genomes and more for cryptokitties and copycats"
|
9
9
|
self.description = summary
|
10
10
|
|
11
|
-
self.urls =
|
11
|
+
self.urls = { home: 'https://github.com/cryptocopycats/kittyverse' }
|
12
12
|
|
13
13
|
self.author = 'Gerald Bauer'
|
14
14
|
self.email = 'wwwmake@googlegroups.com'
|
data/lib/kittyverse.rb
CHANGED
@@ -1,12 +1,9 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
1
|
## std libs
|
2
|
+
require 'pp'
|
4
3
|
require 'date'
|
4
|
+
require 'time'
|
5
5
|
require 'json'
|
6
|
-
require 'pp'
|
7
6
|
require 'uri'
|
8
|
-
require 'net/http'
|
9
|
-
require 'net/https'
|
10
7
|
require 'fileutils'
|
11
8
|
|
12
9
|
|
@@ -19,6 +16,8 @@ require 'kittyverse/version' # note: let version always go first
|
|
19
16
|
|
20
17
|
require 'kittyverse/config/traits'
|
21
18
|
require 'kittyverse/config/traits_timeline'
|
19
|
+
require 'kittyverse/config/exclusives'
|
20
|
+
require 'kittyverse/config/special_editions'
|
22
21
|
require 'kittyverse/config/fancies'
|
23
22
|
require 'kittyverse/config/purrstiges'
|
24
23
|
require 'kittyverse/config/colors'
|
@@ -34,9 +33,6 @@ require 'kittyverse/traits'
|
|
34
33
|
require 'kittyverse/cattributes'
|
35
34
|
require 'kittyverse/fancies'
|
36
35
|
|
37
|
-
## api support
|
38
|
-
require 'kittyverse/api/client'
|
39
|
-
require 'kittyverse/api/versions'
|
40
36
|
|
41
37
|
## genes / genome
|
42
38
|
require 'kittyverse/gene'
|
@@ -44,4 +40,4 @@ require 'kittyverse/genome'
|
|
44
40
|
|
45
41
|
|
46
42
|
# say hello
|
47
|
-
puts Kittyverse.banner
|
43
|
+
puts Kittyverse.banner
|
@@ -112,7 +112,7 @@ class Cattribute
|
|
112
112
|
traits: h[:recipe][:traits], ## todo/fix: turn strings into trait objs!!!!
|
113
113
|
limit: h[:recipe][:limit],
|
114
114
|
time_start: h[:recipe][:time] && h[:recipe][:time][:start] ? Date.strptime( h[:recipe][:time][:start], '%Y-%m-%d' ) : nil,
|
115
|
-
time_end: h[:recipe][:time] && h[:recipe][:time][:end]
|
115
|
+
time_end: h[:recipe][:time] && h[:recipe][:time][:end] && h[:recipe][:time][:end] != '?' ? Date.strptime( h[:recipe][:time][:end], '%Y-%m-%d' ) : nil )
|
116
116
|
|
117
117
|
cattribute = Cattribute.new(
|
118
118
|
key: key,
|
@@ -0,0 +1,197 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
EXCLUSIVES = {
|
4
|
+
|
5
|
+
# 11.07.20 - New Exclusive - Pepito
|
6
|
+
# The Morse Meows Shelter is saving kitties from Strasburg, Virginia
|
7
|
+
# by taking them off the streets and getting them ready
|
8
|
+
# to find their furrever homes! Community cool cat and ultra-high generation collector,
|
9
|
+
# Club 1000, sounded the Kitty alarm to support this shelter in need.
|
10
|
+
#
|
11
|
+
# Our newest Exclusive, Pepito, the Mascot, is intended to be distributed
|
12
|
+
# in support of social causes and we've given Morse Meows one for auction!
|
13
|
+
'pepitothemascot': { name: 'Pepito The Mascot', date: '2020-11-07',
|
14
|
+
exclusive: {
|
15
|
+
limit: 20, ids: (231..250).to_a },
|
16
|
+
},
|
17
|
+
|
18
|
+
## 21.05.20 - New Exclusive - MegaFlowtron
|
19
|
+
'megaflowtron': { name: 'Mega Flowtron', date: '2020-05-21',
|
20
|
+
exclusive: {
|
21
|
+
limit: 1, ids: [303] },
|
22
|
+
},
|
23
|
+
|
24
|
+
## 15.05.20 - New Exclusive - Koshkat - 222
|
25
|
+
'koshkat': { name: 'Koshkat', date: '2020-05-15',
|
26
|
+
exclusive: {
|
27
|
+
limit: 1, ids: [222] },
|
28
|
+
},
|
29
|
+
|
30
|
+
## 01.02.20 - New Exclusive - Gale
|
31
|
+
## celebrating the way to 2 000 000 million
|
32
|
+
## check if limit goes up (on jan/31 it is 33)
|
33
|
+
##
|
34
|
+
## A total of 36 Exclusive Gale Kitties will be discovered
|
35
|
+
## through random breeding in the Race to the 2,000,000th Kitty.
|
36
|
+
##
|
37
|
+
## Each of these 36 Exclusive Kitties will be born, at random,
|
38
|
+
## until we reach 2,000,000. And these super-rare Exclusives
|
39
|
+
## can be born from any parents, from any generation.
|
40
|
+
## But beware this is a ID-limited window.
|
41
|
+
'gale': { name: 'Gale', date: '2020-02-01',
|
42
|
+
exclusive: {
|
43
|
+
limit: 33, ids: [
|
44
|
+
1995387, 1995323, 1990934, 1987022,
|
45
|
+
1986452, 1984873, 1984313, 1980813,
|
46
|
+
1979910, 1976399, 1973254, 1971383,
|
47
|
+
1970499, 1968361, 1961950, 1960448,
|
48
|
+
1957257, 1956528, 1952165, 1946384,
|
49
|
+
1932696, 1923247, 1909523, 1906470,
|
50
|
+
1895691, 1895007, 1893341, 1887536,
|
51
|
+
1861789, 1859088, 1836698, 1825688,
|
52
|
+
1825574 ] },
|
53
|
+
},
|
54
|
+
|
55
|
+
#####
|
56
|
+
# 2019
|
57
|
+
|
58
|
+
'dapp-e': { name: 'DAPP-E', date: '2019-05-10',
|
59
|
+
exclusive: {
|
60
|
+
limit: 50, ids: (1829..1878).to_a },
|
61
|
+
desc: 'Dapper (Crypto Contract) Wallet Promotion Cat'
|
62
|
+
},
|
63
|
+
papacatuanuku: { name: 'Papacatuanuku', date: '2019-03-31',
|
64
|
+
exclusive: {
|
65
|
+
limit: 1, ids: [1500000] },
|
66
|
+
desc: 'Kitty #1500000'
|
67
|
+
},
|
68
|
+
# Mar 26, 2019
|
69
|
+
# Sir Meowsalot Exclusive Cat is released. Exclusive Cat
|
70
|
+
sirmeowsalot: { name: 'Sir Meowsalot', date: '2019-03-26',
|
71
|
+
exclusive: {
|
72
|
+
limit: 21, ids: (201..221).to_a }
|
73
|
+
},
|
74
|
+
|
75
|
+
cyberberry: { name: 'Cyber Berry', date: '2019-03-02',
|
76
|
+
exclusive: {
|
77
|
+
limit: 1, ids: [282] },
|
78
|
+
desc: "Winner of the NFTme Sweetstakes"
|
79
|
+
},
|
80
|
+
|
81
|
+
# Mar 1, 2019
|
82
|
+
# Hinecatone Exclusive Cat is discovered. Exclusive Cat
|
83
|
+
hinecatone: { name: 'Hinecatone', date: '2019-03-01',
|
84
|
+
exclusive: {
|
85
|
+
limit: 15, ids: [1423547, 1433380, 1433486, 1440835, 1453366, 1456935, 1456973, 1459319, 1463197, 1466118, 1474082, 1484593, 1484982, 1492154, 1498885]}
|
86
|
+
},
|
87
|
+
|
88
|
+
# Feb 15, 2019
|
89
|
+
# Felono Exclusive Cat is discovered. Exclusive Cat
|
90
|
+
felono: { name: 'Felono', date: '2019-02-15',
|
91
|
+
exclusive: {
|
92
|
+
limit: 30, ids: [1394641, 1404595, 1406021, 1413065, 1414375, 1420553, 1421315, 1421864, 1424104 ,1425433, 1431823, 1435517, 1436333, 1449860, 1451482, 1455458, 1459320, 1462952, 1463069, 1476999, 1483225, 1487210, 1487551, 1489681, 1490345, 1491632, 1492206, 1492739, 1492817, 1498778]}
|
93
|
+
},
|
94
|
+
hypurrion: { name: 'Hypurrion', date: '2019-01-10',
|
95
|
+
exclusive: {
|
96
|
+
limit: 1, ids: [269]},
|
97
|
+
desc: 'Hyperion - Mythic Titan of Light - Gods Unchained Promotion'
|
98
|
+
},
|
99
|
+
dracothemagnificent: { name: 'Draco The Magnificent', date: '2018-11-27',
|
100
|
+
exclusive: {
|
101
|
+
limit: 12, ids: (270..281).to_a }
|
102
|
+
},
|
103
|
+
bugcatv2: { name: 'Bug Cat V2', date: '2018-11-27',
|
104
|
+
exclusive: {
|
105
|
+
limit: 20, ids: (167..186).to_a },
|
106
|
+
desc: 'Bug Bounty II (Offers Contract etc) Kitty'
|
107
|
+
},
|
108
|
+
lilbubthemagicalspacecat: { name: 'Lil Bub Ub Bub (BUB) The Magical Space Cat', date: '2018-11-13',
|
109
|
+
exclusive: {
|
110
|
+
limit: 3, ids: [266,267,268]}
|
111
|
+
},
|
112
|
+
vulcat: { name: 'Vulcat', date: '2018-09-12',
|
113
|
+
exclusive: {
|
114
|
+
limit: 1, ids: [1000000] },
|
115
|
+
desc: '1 000 000th Kitty'
|
116
|
+
},
|
117
|
+
vulcant: { name: 'Vulcant', date: '2018-08-31',
|
118
|
+
exclusive: {
|
119
|
+
limit: 20, ids: [932914,937360,938299,946526,948925,949058,950617,952280,952981,956374,956908,958570,964205,967234,983046,984451,990713,992861,995745,997469] }
|
120
|
+
},
|
121
|
+
rabbidkitty: { name: 'Rabbid Kitty', date: '2018-08-23',
|
122
|
+
exclusive: {
|
123
|
+
limit: 6, ids: (260..265).to_a },
|
124
|
+
desc: 'Ubisoft Blockchain Heroes Hackathon'
|
125
|
+
},
|
126
|
+
honu: { name: 'Honu', date: '2018-07-20',
|
127
|
+
exclusive: {
|
128
|
+
limit: 1, ids: [251] },
|
129
|
+
desc: 'Kitties for Good - Save Turtle Habitats'
|
130
|
+
},
|
131
|
+
victoire: { name: 'Victoire', date: '2018-07-18',
|
132
|
+
exclusive: {
|
133
|
+
limit: 1, ids: [402] },
|
134
|
+
desc: 'France Football World Cup Champion'
|
135
|
+
},
|
136
|
+
furlin: { name: 'Furlin', date: '2018-06-26',
|
137
|
+
exclusive: {
|
138
|
+
limit: 52, ids: (115..126).to_a + (128..166).to_a }
|
139
|
+
},
|
140
|
+
celestialcyberdimension: { name: 'Celestial Cyber Dimension', date: '2018-05-12',
|
141
|
+
exclusive: {
|
142
|
+
limit: 1, ids: [127] }
|
143
|
+
},
|
144
|
+
|
145
|
+
=begin
|
146
|
+
## May 7, 2018
|
147
|
+
## old retired (failed) exclusive with Warriors' Steph Curry (NBA Superstar) Basketball Celebrity Promotion
|
148
|
+
|
149
|
+
'#30furry': { name: '#30 Furry', date: '2018-05-07', ## todo/fix: url-escape name '#30furry' for picture
|
150
|
+
exclusive: {
|
151
|
+
limit: 1, ids: [330] },
|
152
|
+
desc: 'Steph Curry (NBA Superstar) Basketball Celebrity Promotion Cat'
|
153
|
+
},
|
154
|
+
cheffurry: { name: 'Chef Furry', date: '2018-05-07',
|
155
|
+
exclusive: {
|
156
|
+
limit: 1, ids: [130] },
|
157
|
+
desc: 'Steph Curry (NBA Superstar) Basketball Celebrity Promotion Cat'
|
158
|
+
},
|
159
|
+
stephfurthree: { name: 'Steph Fur Three', date: '2018-05-07',
|
160
|
+
exclusive: {
|
161
|
+
limit: 1, ids: [230] },
|
162
|
+
desc: 'Steph Curry (NBA Superstar) Basketball Celebrity Promotion Cat'
|
163
|
+
},
|
164
|
+
=end
|
165
|
+
|
166
|
+
|
167
|
+
goldendragoncat: { name: 'Golden Dragon Cat', name_cn: '帝龙喵', date: '2018-03-08',
|
168
|
+
exclusive: {
|
169
|
+
limit: 1, ids: [888] },
|
170
|
+
desc: 'China Launch'
|
171
|
+
}, ## todo: check date for china launch specials!!!
|
172
|
+
goldendogcat: { name: 'Golden Dog Cat', name_cn: '旺财汪', date: '2018-03-08',
|
173
|
+
exclusive: {
|
174
|
+
limit: 11, ids: [1802,1803,1805,1806,1808,1809,1812,1816]+(1825..1828).to_a },
|
175
|
+
desc: 'China Launch'
|
176
|
+
}, ## todo: check date for china launch specials!!!
|
177
|
+
|
178
|
+
knightkitty: { name: 'Knight Kitty', date: '2018-03-01',
|
179
|
+
exclusive: {
|
180
|
+
limit: 11, ids: (104..114).to_a }
|
181
|
+
},
|
182
|
+
cathena: { name: 'Cathena', date: '2018-02-06',
|
183
|
+
exclusive: {
|
184
|
+
limit: 1, ids: [500000] },
|
185
|
+
desc: '500 000th Kitty'
|
186
|
+
},
|
187
|
+
genesis: { name: 'Genesis', date: '2017-11-24',
|
188
|
+
exclusive: {
|
189
|
+
limit: 1, ids: [1] },
|
190
|
+
desc: '1st Kitty'
|
191
|
+
},
|
192
|
+
bugcat: { name: 'Bug Cat', date: '2017-11-23',
|
193
|
+
exclusive: {
|
194
|
+
limit: 3, ids: [101,102,103] },
|
195
|
+
desc: 'Bug Bounty Kitty' }
|
196
|
+
}
|
197
|
+
|
@@ -1,6 +1,9 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
1
|
###
|
2
|
+
# Fancy Cats
|
3
|
+
# see https://www.cryptokitties.co/catalogue/fancy-cats
|
4
|
+
# These limited-edition Kitties boast special art.
|
5
|
+
# They can only be bred through a unique genetic recipe until the cap is reached
|
6
|
+
#
|
4
7
|
#
|
5
8
|
# for latest updates on new fancies/exclusives see:
|
6
9
|
# https://updates.cryptokitties.co (official latest updates/timeline)
|
@@ -14,8 +17,6 @@
|
|
14
17
|
# https://kittyhelper.co/price-floor/fancy/
|
15
18
|
|
16
19
|
|
17
|
-
|
18
|
-
|
19
20
|
##
|
20
21
|
## note:
|
21
22
|
## for time limits for fancies use:
|
@@ -24,189 +25,320 @@
|
|
24
25
|
## for overflows for limited edition use:
|
25
26
|
## e.g. overflow: 1 # 888+1 (=889)
|
26
27
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
28
|
+
|
29
|
+
RECIPES = {
|
30
|
+
|
31
|
+
######################
|
32
|
+
# 2021
|
33
|
+
|
34
|
+
# 16.01.21 - New fancy - Ellie
|
35
|
+
# An Elephantastic Fancy!
|
36
|
+
# The first of our next Fancy Family has been released into the wild...
|
37
|
+
# Shiny-enabled Fancy, Ellie!
|
38
|
+
ellie: { name: 'Ellie', date: '2021-01-16', ## 1st in Elephant series
|
39
|
+
recipe: {
|
40
|
+
limit: 2500, count: 2,
|
41
|
+
traits: [ 'shadowgrey', 'flamingo', 'littlefoot', 'walrus'] },
|
42
|
+
},
|
43
|
+
|
44
|
+
#################
|
45
|
+
# 2020
|
46
|
+
# 19.12.20 - New fancy - Dave -- Winter Series
|
47
|
+
dave: { name: 'Dave', ## todo/check: was time-limited?
|
48
|
+
recipe: {
|
49
|
+
time: { start: '2020-12-19', end: '?' }, count: 239,
|
50
|
+
traits: ['norwegianforest', 'icy', 'frozen'] },
|
51
|
+
},
|
52
|
+
# 19.12.20 - New fancy - Holly -- Winter Series
|
53
|
+
holly: { name: 'Holly', ## todo/check: was time-limited?
|
54
|
+
recipe: {
|
55
|
+
time: { start: '2020-12-19', end: '?' }, count: 261,
|
56
|
+
traits: ['chartreux', 'wingtips', 'icy'] },
|
57
|
+
},
|
58
|
+
# 06.12.20 - New fancy - CatFrost -- Winter Series
|
59
|
+
# The breeding window for the shiny-enabled Cat Frost ends at 9:50am PT on 12/19
|
60
|
+
catfrost: { name: 'Cat Frost', ## todo/check: was time-limited?
|
61
|
+
recipe: {
|
62
|
+
time: { start: '2020-12-06', end: '2020-12-19' }, count: 288,
|
63
|
+
traits: ['splat', 'wiley', 'icicle', 'icy'] },
|
64
|
+
},
|
65
|
+
|
66
|
+
# 21.11.20 - New fancy - Abby
|
67
|
+
abby: { name: 'Abby', ## todo/check: was time-limited?
|
68
|
+
recipe: {
|
69
|
+
time: { start: '2020-11-21', end: '?' }, count: 299,
|
70
|
+
traits: ['ragamuffin', 'swarley', 'dune'] },
|
71
|
+
},
|
72
|
+
# 08.11.20 - New fancy - Dart
|
73
|
+
dart: { name: 'Dart', ## todo/check: was time-limited?
|
74
|
+
recipe: {
|
75
|
+
time: { start: '2020-11-08', end: '?' }, count: 370,
|
76
|
+
traits: ['camo', 'oldlace', 'coffee', 'dune'] },
|
77
|
+
},
|
78
|
+
|
79
|
+
# 30.09.20 - New fancy - Boris
|
80
|
+
boris: { name: 'Boris', ## todo/check: was time-limited?
|
81
|
+
recipe: {
|
82
|
+
time: { start: '2020-09-30', end: '?' }, count: 667,
|
83
|
+
traits: ['savannah', 'safetyvest', 'jacked'] },
|
84
|
+
},
|
85
|
+
|
86
|
+
# 29.08.20 - New fancy - Mibbles
|
87
|
+
mibbles: { name: 'Mibbles', ## todo/check: was time-limited?
|
88
|
+
recipe: {
|
89
|
+
time: { start: '2020-08-29', end: '?' }, count: 1301,
|
90
|
+
traits: ['kurilian', 'impish'] },
|
91
|
+
},
|
92
|
+
# 08.08.20 - New fancy - Reeves - Wild West Series?
|
93
|
+
reeves: { name: 'Reeves', ## todo/check: was time-limited?
|
94
|
+
recipe: {
|
95
|
+
time: { start: '2020-08-08', end: '?' }, count: 198,
|
96
|
+
traits: ['rascal', 'swarley', 'daemonwings', 'dune'] },
|
97
|
+
},
|
98
|
+
# 25.07.20 - New fancy - Pickett - Wild West Series?
|
99
|
+
pickett: { name: 'Pickett', ## todo/check: was time-limited?
|
100
|
+
recipe: {
|
101
|
+
time: { start: '2020-07-25', end: '?' }, count: 224,
|
102
|
+
traits: ['swarley', 'lavender', 'dune'] },
|
103
|
+
},
|
104
|
+
|
105
|
+
|
106
|
+
# 16.07.20 - New fancy - Joan
|
107
|
+
joan: { name: 'Joan', ## todo/check: was time-limited?
|
108
|
+
recipe: {
|
109
|
+
time: { start: '2020-07-16', end: '?' }, count: 338,
|
110
|
+
traits: ['lykoi', 'drama', 'glacier', 'springcrocus', 'prism'] },
|
111
|
+
},
|
112
|
+
# 11.07.20 - New fancy - Starchild
|
113
|
+
starchild: { name: 'Starchild', ## todo/check: was time-limited?
|
114
|
+
recipe: {
|
115
|
+
time: { start: '2020-07-11', end: '?' }, count: 367,
|
116
|
+
traits: ['razzledazzle', 'drama', 'glacier', 'wolfgrey', 'prism'] },
|
117
|
+
},
|
118
|
+
|
119
|
+
# 04.07.20 - New fancy - Travis
|
120
|
+
travis: { name: 'Travis', ## todo/check: was time-limited?
|
121
|
+
recipe: {
|
122
|
+
time: { start: '2020-07-04', end: '?' }, count: 300,
|
123
|
+
traits: ['firedup', 'wolfgrey', 'glacier', 'prism'] },
|
124
|
+
},
|
125
|
+
# 04.07.20 - New fancy - Steel
|
126
|
+
steel: { name: 'Steel', ## todo/check: was time-limited?
|
127
|
+
recipe: {
|
128
|
+
time: { start: '2020-07-04', end: '?' }, count: 436,
|
129
|
+
traits: ['lykoi', 'hintomint', 'springcrocus', 'prism'] },
|
130
|
+
},
|
131
|
+
|
132
|
+
# 20.06.20 - New fancy - Pawvril
|
133
|
+
pawvril: { name: 'Pawvril', ## todo/check: was time-limited?
|
134
|
+
recipe: {
|
135
|
+
time: { start: '2020-06-20', end: '?' }, count: 700,
|
136
|
+
traits: ['glacier', 'springcrocus', 'drama'] },
|
137
|
+
},
|
138
|
+
# 20.06.20 - New fancy - Janis
|
139
|
+
janis: { name: 'Janis', ## todo/check: was time-limited?
|
140
|
+
recipe: {
|
141
|
+
time: { start: '2020-06-20', end: '?' }, count: 929,
|
142
|
+
traits: ['glacier', 'springcrocus', 'prism'] },
|
143
|
+
},
|
144
|
+
|
145
|
+
# 06.06.20 - New fancy - Kunst
|
146
|
+
kunst: { name: 'Kunst', ## todo/check: was time-limited?
|
147
|
+
recipe: {
|
148
|
+
time: { start: '2020-06-06', end: '?' }, count: 1001,
|
149
|
+
traits: ['mainecoon', 'candyshoppe', 'royalblue'] },
|
150
|
+
},
|
151
|
+
# 23.05.20 - New fancy - Kitiovanni
|
152
|
+
kitiovanni: { name: 'Kitiovanni', ## todo/check: was time-limited?
|
153
|
+
recipe: {
|
154
|
+
time: { start: '2020-05-23', end: '?' }, count: 735,
|
155
|
+
traits: ['manx', 'candyshoppe', 'firstblush', 'springcrocus', 'wyrm'] },
|
156
|
+
},
|
157
|
+
|
158
|
+
# 09.05.20 - New fancy - Hunter
|
159
|
+
hunter: { name: 'Hunter', ## todo/check: was time-limited?
|
160
|
+
recipe: {
|
161
|
+
time: { start: '2020-05-09', end: '?' }, count: 1140,
|
162
|
+
traits: ['avatar', 'chameleon', 'tongue', 'dragontail'] },
|
163
|
+
},
|
164
|
+
|
165
|
+
# 25.04.20 - New fancy - Vince
|
166
|
+
vince: { name: 'Vince', ## todo/check: was time-limited?
|
167
|
+
recipe: {
|
168
|
+
time: { start: '2020-04-25', end: '?' }, count: 1424,
|
169
|
+
traits: ['pixiebob', 'bananacream', 'daffodil', 'ooze'] },
|
170
|
+
},
|
171
|
+
# 18.04.20 - New fancy - Zelig
|
172
|
+
zelig: { name: 'Zelig', ## todo/check: was time-limited?
|
173
|
+
recipe: {
|
174
|
+
time: { start: '2020-04-18', end: '?' }, count: 505,
|
175
|
+
traits: ['avatar', 'glacier', 'chameleon', 'happygokitty'] },
|
176
|
+
},
|
177
|
+
# 11.04.20 - New fancy - Billie
|
178
|
+
billie: { name: 'Billie', ## todo/check: was time-limited?
|
179
|
+
recipe: {
|
180
|
+
time: { start: '2020-04-11', end: '?' }, count: 1261,
|
181
|
+
traits: ['pixiebob', 'cornflower', 'cerulian', 'mintmacaron'] },
|
182
|
+
},
|
183
|
+
|
184
|
+
# 28.03.20 - New fancy - Bodhi
|
185
|
+
bodhi: { name: 'Bodhi', ## todo/check: was time-limited?
|
186
|
+
recipe: {
|
187
|
+
time: { start: '2020-03-28', end: '?' }, count: 616,
|
188
|
+
traits: ['avatar', 'chameleon', 'mertail', 'majestic'] },
|
189
|
+
},
|
190
|
+
# 21.03.20 - New fancy - Cindi
|
191
|
+
cindi: { name: 'Cindi', ## todo/check: was time-limited?
|
192
|
+
recipe: {
|
193
|
+
time: { start: '2020-03-21', end: '?' }, count: 897,
|
194
|
+
traits: ['pixiebob', 'dragonfruit', 'prairierose', 'missmuffett'] },
|
195
|
+
},
|
196
|
+
# 17.03.20 - New fancy - Potricia
|
197
|
+
potricia: { name: 'Potricia', ## todo/check: was time-limited?
|
198
|
+
recipe: {
|
199
|
+
time: { start: '2020-03-17', end: '?' }, count: 665,
|
200
|
+
traits: ['onyx', 'gold', 'mertail', 'roadtogold'] },
|
201
|
+
},
|
202
|
+
# 07.03.20 - New fancy - Cai
|
203
|
+
cai: { name: 'Cai', ## todo/check: was time-limited?
|
204
|
+
recipe: {
|
205
|
+
time: { start: '2020-03-07', end: '?' }, count: 526,
|
206
|
+
traits: ['pixiebob', 'shamrock', 'mertail', 'hanauma'] },
|
207
|
+
},
|
208
|
+
# 20.02.20 - New fancy - MissMatheson
|
209
|
+
missmatheson: { name: 'Miss Matheson', ## todo/check: was time-limited?
|
210
|
+
recipe: {
|
211
|
+
time: { start: '2020-02-20', end: '?' }, count: 375,
|
212
|
+
traits: ['liger','icicle','hacker','kittencream'] },
|
213
|
+
},
|
214
|
+
|
215
|
+
# 15.02.20 - New fancy - Felis
|
216
|
+
felis: { name: 'Felis', ## todo/check: was time-limited?
|
217
|
+
recipe: {
|
218
|
+
time: { start: '2020-02-15', end: '?' }, count: 1264,
|
219
|
+
traits: ['mekong','moonrise','buzzed','finalfrontier'] },
|
220
|
+
},
|
221
|
+
# 08.02.20 - New fancy - Meuwn
|
222
|
+
meuwn: { name: 'Meuwn', ## todo/check: was time-limited?
|
223
|
+
recipe: {
|
224
|
+
time: { start: '2020-02-08', end: '?' }, count: 509,
|
225
|
+
traits: ['razzledazzle', 'cloudwhite', 'springcrocus', 'finalfrontier'] },
|
226
|
+
},
|
227
|
+
|
228
|
+
# 01.02.20 - New fancy - LilPurrfect
|
229
|
+
lilpurrfect: { name: 'Lil Purrfect', ## todo/check: was time-limited?
|
230
|
+
recipe: {
|
231
|
+
time: { start: '2020-02-01', end: '?' }, count: 662,
|
232
|
+
traits: ['allyouneed', 'garnet', 'flapflap'] },
|
233
|
+
},
|
234
|
+
|
235
|
+
# 18.01.20 - New fancy - Mars
|
236
|
+
mars: { name: 'Mars', ## todo/check: was time-limited?
|
237
|
+
recipe: {
|
238
|
+
time: { start: '2020-01-18', end: '?' }, count: 987,
|
239
|
+
traits: ['hacker', 'prairierose', 'delite', 'finalfrontier'] },
|
240
|
+
},
|
241
|
+
|
242
|
+
# 11.01.20 - New fancy - Cosmocat
|
243
|
+
cosmocat: { name: 'Cosmocat', ## todo/check: was time-limited?
|
244
|
+
recipe: {
|
245
|
+
time: { start: '2020-01-11', end: '?' }, count: 688,
|
246
|
+
traits: ['leopard', 'universe', 'topoftheworld', 'finalfrontier'] },
|
247
|
+
},
|
248
|
+
|
249
|
+
|
250
|
+
pepito: { name: 'Pepito',
|
251
|
+
recipe: {
|
252
|
+
time: { start: '2020-01-01', end: '2020-01-07' }, count: 443,
|
253
|
+
traits: ['ragdoll', 'simple', 'meowgarine', 'junglebook'] },
|
254
|
+
},
|
255
|
+
|
256
|
+
|
257
|
+
chitten: { name: 'Chitten', ## todo/check: was time-limited?
|
258
|
+
recipe: {
|
259
|
+
time: { start: '2019-12-21', end: '?' }, count: 829,
|
260
|
+
traits: ['burmilla', 'calicool', 'hotcocoa', 'tongue'] },
|
261
|
+
},
|
262
|
+
|
263
|
+
puuurrot: { name: 'Puuurrot', ## todo/check: was time-limited?
|
264
|
+
recipe: {
|
265
|
+
time: { start: '2019-12-07', end: '?' }, count: 650,
|
266
|
+
traits: ['chantilly', 'firstblush', 'skyblue', 'tinybox'] },
|
267
|
+
},
|
268
|
+
|
269
|
+
shoopadoop: { name: 'Shoopadoop', ## todo/check: was time-limited?
|
270
|
+
recipe: {
|
271
|
+
time: { start: '2019-11-23', end: '?' }, count: 1269,
|
272
|
+
traits: ['martian', 'wyrm', 'SE03'] },
|
273
|
+
},
|
274
|
+
|
275
|
+
bartholomeow: { name: 'Bartholomeow', date: '2019-11-12', # Page's Warriors series
|
276
|
+
recipe: {
|
277
|
+
limit: 10_000, count: 1269,
|
278
|
+
traits: ['burmilla', 'thunderstruck', 'salmon', 'flamingo', 'rosequartz', 'wasntme'] },
|
279
|
+
}, ## add shiny-enabled? see https://www.cryptokitties.co/blog/post/ooooooh-shiny
|
280
|
+
|
281
|
+
gwendolion: { name: 'Gwendolion', date: '2019-11-10', # Page's Warriors series - starter fancy
|
282
|
+
recipe: {
|
283
|
+
limit: 50_000, count: 297,
|
284
|
+
traits: ['burmilla', 'salmon', 'icy'] },
|
39
285
|
},
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
limit: 380 }, ## Don't sleep - there's only 380 up for grabs!
|
46
|
-
desc: 'Goddess Aeona - Goddess of Nature - Gods Unchained Promotion'
|
47
|
-
},
|
48
|
-
## 2018
|
49
|
-
## December
|
50
|
-
catzy: { name: 'Catzy', date: '2018-12-31',
|
51
|
-
specialedition: {
|
52
|
-
limit: 10, ids: (1137653..1137662).to_a },
|
53
|
-
desc: 'Changpeng "CZ" Zhao - CEO of Binance - Top 10 Blockchain Influencer of the Year 2018 by CoinDesk'
|
286
|
+
|
287
|
+
catseye: { name: 'Catseye', date: '2019-11-09',
|
288
|
+
recipe: {
|
289
|
+
limit: 30_000, count: 196,
|
290
|
+
traits: ['burmilla', 'rascal', 'salmon', 'flamingo'] },
|
54
291
|
},
|
55
|
-
purremyallaire: { name: 'Purremy Allaire', date: '2018-12-31',
|
56
|
-
specialedition: {
|
57
|
-
limit: 10, ids: (1137663..1137672).to_a },
|
58
|
-
desc: 'Jeremy Allaire - Top 10 Blockchain Influencer of the Year 2018 by CoinDesk'
|
59
|
-
},
|
60
|
-
lilbub: { name: 'Lil Bub Ub Bub (BUB)', date: '2018-11-13',
|
61
|
-
specialedition: {
|
62
|
-
limit: 468 }
|
63
|
-
},
|
64
|
-
}
|
65
292
|
|
293
|
+
# Oct 26, 2019 - Skeletonne Fancy Cat is discovered
|
294
|
+
skeletonne: { name: 'Skeletonne', ## todo/check: was time-limited?
|
295
|
+
recipe: {
|
296
|
+
time: { start: '2019-10-26', end: '?' }, count: 752,
|
297
|
+
traits: ['sphynx', 'scorpius', 'dreamboat', 'satiated'] },
|
298
|
+
},
|
66
299
|
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
papacatuanuku: { name: 'Papacatuanuku', date: '2019-03-31',
|
74
|
-
exclusive: {
|
75
|
-
limit: 1, ids: [1500000] },
|
76
|
-
desc: 'Kitty #1500000'
|
77
|
-
},
|
78
|
-
# Mar 26, 2019
|
79
|
-
# Sir Meowsalot Exclusive Cat is released. Exclusive Cat
|
80
|
-
sirmeowsalot: { name: 'Sir Meowsalot', date: '2019-03-26',
|
81
|
-
exclusive: {
|
82
|
-
limit: 21, ids: (201..221).to_a }
|
83
|
-
},
|
300
|
+
# Oct 12, 2019 - Furmione Fancy Cat is discovered
|
301
|
+
furmione: { name: 'Furmione', ## todo/check: was time-limited?
|
302
|
+
recipe: {
|
303
|
+
time: { start: '2019-10-12', end: '?' }, count: 832,
|
304
|
+
traits: ['spangled', 'firstblush', ['poisonberry', 'mallowflower']] },
|
305
|
+
},
|
84
306
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
307
|
+
# Sep 20, 2019 - Purrzival Fancy Cat is discovered
|
308
|
+
purrzival: { name: 'Purrzival the Paladin', date: '2019-09-20', ## todo/check: was time-limited too?
|
309
|
+
recipe: {
|
310
|
+
limit: 30_000, count: 316,
|
311
|
+
traits: ['thunderstruck', 'rosequartz', 'peach', 'wasntme'] },
|
312
|
+
},
|
90
313
|
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
314
|
+
# Sep 28, 2019 - Jack Fancy Cat is discovered
|
315
|
+
jack: { name: 'Jack', ## todo/check: was time-limited?
|
316
|
+
recipe: {
|
317
|
+
time: { start: '2019-09-28', end: '?' }, count: 721,
|
318
|
+
traits: ['savannah', 'shadowgrey', 'granitegrey', 'jacked'] },
|
319
|
+
},
|
97
320
|
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
hypurrion: { name: 'Hypurrion', date: '2019-01-10',
|
105
|
-
exclusive: {
|
106
|
-
limit: 1, ids: [269]},
|
107
|
-
desc: 'Hyperion - Mythic Titan of Light - Gods Unchained Promotion'
|
108
|
-
},
|
109
|
-
dracothemagnificent: { name: 'Draco The Magnificent', date: '2018-11-27',
|
110
|
-
exclusive: {
|
111
|
-
limit: 12, ids: (270..281).to_a }
|
112
|
-
},
|
113
|
-
bugcatv2: { name: 'Bug Cat V2', date: '2018-11-27',
|
114
|
-
exclusive: {
|
115
|
-
limit: 20, ids: (167..186).to_a },
|
116
|
-
desc: 'Bug Bounty II (Offers Contract) Kitty'
|
117
|
-
},
|
118
|
-
lilbubthemagicalspacecat: { name: 'Lil Bub Ub Bub (BUB) The Magical Space Cat', date: '2018-11-13',
|
119
|
-
exclusive: {
|
120
|
-
limit: 3, ids: [266,267,268]}
|
121
|
-
},
|
122
|
-
vulcat: { name: 'Vulcat', date: '2018-09-12',
|
123
|
-
exclusive: {
|
124
|
-
limit: 1, ids: [1000000] },
|
125
|
-
desc: '1 000 000th Kitty'
|
126
|
-
},
|
127
|
-
vulcant: { name: 'Vulcant', date: '2018-08-31',
|
128
|
-
exclusive: {
|
129
|
-
limit: 20, ids: [932914,937360,938299,946526,948925,949058,950617,952280,952981,956374,956908,958570,964205,967234,983046,984451,990713,992861,995745,997469] }
|
130
|
-
},
|
131
|
-
rabbidkitty: { name: 'Rabbid Kitty', date: '2018-08-23',
|
132
|
-
exclusive: {
|
133
|
-
limit: 6, ids: (260..265).to_a },
|
134
|
-
desc: 'Ubisoft Blockchain Heroes Hackathon'
|
135
|
-
},
|
136
|
-
honu: { name: 'Honu', date: '2018-07-20',
|
137
|
-
exclusive: {
|
138
|
-
limit: 1, ids: [251] },
|
139
|
-
desc: 'Kitties for Good - Save Turtle Habitats'
|
140
|
-
},
|
141
|
-
victoire: { name: 'Victoire', date: '2018-07-18',
|
142
|
-
exclusive: {
|
143
|
-
limit: 1, ids: [402] },
|
144
|
-
desc: 'France Football World Cup Champion'
|
145
|
-
},
|
146
|
-
furlin: { name: 'Furlin', date: '2018-06-26',
|
147
|
-
exclusive: {
|
148
|
-
limit: 52, ids: (115..126).to_a + (128..166).to_a }
|
149
|
-
},
|
150
|
-
celestialcyberdimension: { name: 'Celestial Cyber Dimension', date: '2018-05-12',
|
151
|
-
exclusive: {
|
152
|
-
limit: 1, ids: [127] }
|
153
|
-
},
|
154
|
-
|
155
|
-
=begin
|
156
|
-
## May 7, 2018
|
157
|
-
## old retired (failed) exclusive with Warriors' Steph Curry (NBA Superstar) Basketball Celebrity Promotion
|
158
|
-
|
159
|
-
'#30furry': { name: '#30 Furry', date: '2018-05-07', ## todo/fix: url-escape name '#30furry' for picture
|
160
|
-
exclusive: {
|
161
|
-
limit: 1, ids: [330] },
|
162
|
-
desc: 'Steph Curry (NBA Superstar) Basketball Celebrity Promotion Cat'
|
163
|
-
},
|
164
|
-
cheffurry: { name: 'Chef Furry', date: '2018-05-07',
|
165
|
-
exclusive: {
|
166
|
-
limit: 1, ids: [130] },
|
167
|
-
desc: 'Steph Curry (NBA Superstar) Basketball Celebrity Promotion Cat'
|
168
|
-
},
|
169
|
-
stephfurthree: { name: 'Steph Fur Three', date: '2018-05-07',
|
170
|
-
exclusive: {
|
171
|
-
limit: 1, ids: [230] },
|
172
|
-
desc: 'Steph Curry (NBA Superstar) Basketball Celebrity Promotion Cat'
|
173
|
-
},
|
174
|
-
=end
|
175
|
-
|
176
|
-
|
177
|
-
goldendragoncat: { name: 'Golden Dragon Cat', name_cn: '帝龙喵', date: '2018-03-08',
|
178
|
-
exclusive: {
|
179
|
-
limit: 1, ids: [888] },
|
180
|
-
desc: 'China Launch'
|
181
|
-
}, ## todo: check date for china launch specials!!!
|
182
|
-
goldendogcat: { name: 'Golden Dog Cat', name_cn: '旺财汪', date: '2018-03-08',
|
183
|
-
exclusive: {
|
184
|
-
limit: 11, ids: [1802,1803,1805,1806,1808,1809,1812,1816]+(1825..1828).to_a },
|
185
|
-
desc: 'China Launch'
|
186
|
-
}, ## todo: check date for china launch specials!!!
|
187
|
-
|
188
|
-
knightkitty: { name: 'Knight Kitty', date: '2018-03-01',
|
189
|
-
exclusive: {
|
190
|
-
limit: 11, ids: (104..114).to_a }
|
191
|
-
},
|
192
|
-
cathena: { name: 'Cathena', date: '2018-02-06',
|
193
|
-
exclusive: {
|
194
|
-
limit: 1, ids: [500000] },
|
195
|
-
desc: '500 000th Kitty'
|
196
|
-
},
|
197
|
-
genesis: { name: 'Genesis', date: '2017-11-24',
|
198
|
-
exclusive: {
|
199
|
-
limit: 1, ids: [1] },
|
200
|
-
desc: '1st Kitty'
|
201
|
-
},
|
202
|
-
bugcat: { name: 'Bug Cat', date: '2017-11-23',
|
203
|
-
exclusive: {
|
204
|
-
limit: 3, ids: [101,102,103] },
|
205
|
-
desc: 'Bug Bounty Kitty' }
|
206
|
-
}
|
321
|
+
# Sep 14, 2019 - Pawderick the Lancer Fancy Cat is discovered
|
322
|
+
pawderick: { name: 'Pawderick the Lancer', date: '2019-09-14', ## todo/check: was time-limited too?
|
323
|
+
recipe: {
|
324
|
+
limit: 50_000, count: 665,
|
325
|
+
traits: ['ganado', 'rosequartz', 'wasntme'] },
|
326
|
+
},
|
207
327
|
|
328
|
+
# Aug 31, 2019 - Robin Fancy Cat is discovered
|
329
|
+
robin: { name: 'Robin', ## todo/check: was time-limited?
|
330
|
+
recipe: {
|
331
|
+
time: { start: '2019-08-31', end: '?' }, count: 1837,
|
332
|
+
traits: ['stunned', 'meowgarine', 'kittencream', 'featherbrain'] },
|
333
|
+
},
|
334
|
+
|
335
|
+
# Aug 17, 2019 - Kitty Formerly Known as Prince Fancy Cat is discovered
|
336
|
+
kittyformerlyknownasprince: { name: 'Kitty Formerly Known As Prince', ## todo/check: was time-limited?
|
337
|
+
recipe: {
|
338
|
+
time: { start: '2019-08-17', end: '?' }, count: 503,
|
339
|
+
traits: ['leopard', 'tendertears', 'royalblue', 'pouty'] },
|
340
|
+
},
|
208
341
|
|
209
|
-
RECIPES = {
|
210
342
|
# Aug 3, 2019 - DJ Meowlody Fancy Cat is discovered
|
211
343
|
djmeowlody: { name: 'DJ Meowlody',
|
212
344
|
recipe: {
|