kittyverse 0.4.5 → 0.5.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 +4 -4
- data/CHANGELOG.md +3 -3
- data/Manifest.txt +3 -2
- data/README.md +428 -240
- data/Rakefile +30 -30
- data/lib/kittyverse.rb +47 -47
- data/lib/kittyverse/api/client.rb +147 -147
- data/lib/kittyverse/api/versions.rb +91 -91
- data/lib/kittyverse/cattributes.rb +131 -131
- data/lib/kittyverse/config/colors.rb +146 -146
- data/lib/kittyverse/config/fancies.rb +84 -6
- data/lib/kittyverse/config/purrstiges.rb +225 -215
- data/lib/kittyverse/config/traits_timeline.rb +288 -288
- data/lib/kittyverse/fancies.rb +205 -205
- data/lib/kittyverse/gene.rb +55 -55
- data/lib/kittyverse/genome.rb +236 -236
- data/lib/kittyverse/mewtations.rb +120 -120
- data/lib/kittyverse/version.rb +23 -23
- data/test/helper.rb +10 -10
- data/test/test_fancies.rb +16 -0
- data/test/test_genome.rb +62 -0
- data/test/test_traits.rb +174 -174
- metadata +13 -6
@@ -7,6 +7,13 @@
|
|
7
7
|
#
|
8
8
|
# or see
|
9
9
|
# https://blog.kotobaza.co/timeline/
|
10
|
+
#
|
11
|
+
# or see
|
12
|
+
# https://kittyhelper.co/price-floor/exclusive/
|
13
|
+
# https://kittyhelper.co/price-floor/specialedition/
|
14
|
+
# https://kittyhelper.co/price-floor/fancy/
|
15
|
+
|
16
|
+
|
10
17
|
|
11
18
|
|
12
19
|
##
|
@@ -144,6 +151,29 @@ EXCLUSIVES = {
|
|
144
151
|
exclusive: {
|
145
152
|
limit: 1, ids: [127] }
|
146
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
|
+
|
147
177
|
goldendragoncat: { name: 'Golden Dragon Cat', name_cn: '帝龙喵', date: '2018-03-08',
|
148
178
|
exclusive: {
|
149
179
|
limit: 1, ids: [888] },
|
@@ -177,24 +207,72 @@ EXCLUSIVES = {
|
|
177
207
|
|
178
208
|
|
179
209
|
RECIPES = {
|
180
|
-
|
210
|
+
# Aug 3, 2019 - DJ Meowlody Fancy Cat is discovered
|
211
|
+
djmeowlody: { name: 'DJ Meowlody',
|
212
|
+
recipe: {
|
213
|
+
time: { start: '2019-08-03', end: '2019-11-30' }, count: 155,
|
214
|
+
traits: ['happygokitty', 'ragdoll', 'tigerpunk', 'oceanid'] },
|
215
|
+
},
|
216
|
+
|
217
|
+
# Jul 22, 2019 - Poison Orchid Fancy Cat is discovered
|
218
|
+
poisonorchid: { name: 'Poison Orchid', date: '2019-07-22',
|
219
|
+
recipe: {
|
220
|
+
limit: 499,
|
221
|
+
traits: ['burmilla', 'henna', 'drama', 'onyx', 'wolfgrey', 'dreamboat', 'SE29'] },
|
222
|
+
desc: 'Ninja Fancy Cat' },
|
223
|
+
|
224
|
+
# Jul 18, 2019 - Catyrax Fancy Cat is discovered
|
225
|
+
catyrax: { name: 'Catyrax', date: '2019-07-18',
|
226
|
+
recipe: {
|
227
|
+
limit: 500,
|
228
|
+
traits: ['lykoi', 'henna', 'bornwithit', 'onyx', 'wolfgrey', 'fallspice', 'SE28'] },
|
229
|
+
desc: 'Fish-Flinging Ninja Fancy Cat' },
|
230
|
+
|
231
|
+
# Jul 6, 2019 - Catamari Fancy Cat is discovered
|
232
|
+
catamari: { name: 'Catamari',
|
233
|
+
recipe: {
|
234
|
+
time: { start: '2019-07-06', end: '2019-07-19' }, count: 378,
|
235
|
+
traits: ['moonrise', 'cobalt', 'ducky', 'salty'] },
|
236
|
+
desc: 'Monster Fancy Cat' },
|
237
|
+
|
238
|
+
# Jun 22, 2019 - Magmeow Fancy Cat is discovered
|
239
|
+
magmeow: { name: 'Magmeow',
|
240
|
+
recipe: {
|
241
|
+
time: { start: '2019-06-23', end: '2019-06-26' }, count: 736,
|
242
|
+
traits: ['liger', 'moonrise', 'redvelvet', 'dragontail' ] },
|
243
|
+
desc: 'Multi-Limbed Magma Monster Fancy Cat' },
|
244
|
+
|
245
|
+
# Jun 8, 2019 - Kitijira Fancy Cat is discovered
|
246
|
+
kitijira: { name: 'Kitijira',
|
247
|
+
recipe: {
|
248
|
+
time: { start: '2019-06-08', end: '2019-06-21' }, count: 645,
|
249
|
+
traits: ['mainecoon', 'moonrise', 'atlantis', 'universe', 'dragontail'] },
|
250
|
+
desc: 'City-Smashing Lizard Monster Fancy Cat' },
|
251
|
+
|
252
|
+
# May 25, 2019 - The Whisper Fancy Cat is discovered
|
253
|
+
whisper: { name: 'Whisper',
|
254
|
+
recipe: {
|
255
|
+
time: { start: '2019-05-25', end: '2019-05-31' }, count: 861,
|
256
|
+
traits: ['onyx', 'henna', 'wolfgrey', 'sully', 'candyshoppe' ] },
|
257
|
+
desc: 'Ninja Fancy Cat' },
|
258
|
+
|
259
|
+
# May 11, 2019 - Curdlin Fancy Cat is discovered
|
260
|
+
curdlin: { name: 'Curdlin',
|
181
261
|
recipe: {
|
182
262
|
time: { start: '2019-05-11', end: '2019-11-30' }, count: 4,
|
183
263
|
traits: ['nachocheez', 'saycheese', 'missmuffett', 'dippedcone']},
|
184
264
|
desc: 'Cheeze Wizard Cat - Celebrating the Launch of the Cheeze Wizards on the Blockchain'
|
185
265
|
## see https://www.cryptokitties.co/blog/post/things-are-getting-cheezy-in-cryptokitties
|
186
266
|
},
|
187
|
-
|
188
|
-
# Apr 27, 2019
|
189
|
-
# Krakitten Fancy Cat is discovered. Fancy Cat
|
267
|
+
|
268
|
+
# Apr 27, 2019 - Krakitten Fancy Cat is discovered
|
190
269
|
krakitten: { name: 'Krakitten',
|
191
270
|
recipe: {
|
192
271
|
time: { start: '2019-04-27', end: '2019-05-06' }, count: 1221,
|
193
272
|
traits: ['cobalt', 'ducky', 'salty', 'splat']},
|
194
273
|
## desc: 'Beware the Krakitten in the briny deep.'
|
195
274
|
},
|
196
|
-
# Apr 13, 2019
|
197
|
-
# Furbeard Fancy Cat is discovered. Fancy Cat
|
275
|
+
# Apr 13, 2019 - Furbeard Fancy Cat is discovered
|
198
276
|
furbeard: { name: 'Furbeard',
|
199
277
|
recipe: {
|
200
278
|
time: { start: '2019-04-13', end: '2019-04-26'}, count: 3733,
|
@@ -1,215 +1,225 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
###########################################
|
4
|
-
## Purrstige Traits / Cattributes
|
5
|
-
|
6
|
-
PURRSTIGES_ROBOKITTY = {
|
7
|
-
###
|
8
|
-
# May 1, 2019
|
9
|
-
# 7 Robokitty Purrstiges
|
10
|
-
bionic: { name: 'Bionic',
|
11
|
-
recipe: {
|
12
|
-
time: { start: '2019-05-01', end: '2019-08-31' },
|
13
|
-
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU30'] }
|
14
|
-
},
|
15
|
-
fileshare: { name: 'Fileshare',
|
16
|
-
recipe: {
|
17
|
-
time: { start: '2019-05-01', end: '2019-08-31' },
|
18
|
-
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU29'] }
|
19
|
-
},
|
20
|
-
pawsfree: { name: 'Pawsfree',
|
21
|
-
recipe: {
|
22
|
-
time: { start: '2019-05-01', end: '2019-08-31' },
|
23
|
-
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU28'] }
|
24
|
-
},
|
25
|
-
uplink: { name: 'Uplink',
|
26
|
-
recipe: {
|
27
|
-
time: { start: '2019-05-01', end: '2019-08-31' },
|
28
|
-
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU27'] }
|
29
|
-
},
|
30
|
-
gaunlet: { name: 'Gauntlet',
|
31
|
-
recipe: {
|
32
|
-
time: { start: '2019-05-01', end: '2019-08-31' },
|
33
|
-
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU26'] }
|
34
|
-
},
|
35
|
-
catterypack: { name: 'Catterypack',
|
36
|
-
recipe: {
|
37
|
-
time: { start: '2019-05-01', end: '2019-08-31' },
|
38
|
-
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU25'] }
|
39
|
-
},
|
40
|
-
squelch: { name: 'Squelch',
|
41
|
-
recipe: {
|
42
|
-
time: { start: '2019-05-01', end: '2019-08-31' },
|
43
|
-
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU24'] }
|
44
|
-
}
|
45
|
-
}
|
46
|
-
|
47
|
-
|
48
|
-
PURRSTIGES_PIRATE = {
|
49
|
-
##
|
50
|
-
# Apr 13, 2019
|
51
|
-
# 7 Pirate Purrstiges
|
52
|
-
# Scratchingpost trait is discovered. Purrstige
|
53
|
-
scratchingpost: { name: 'Scratchingpost',
|
54
|
-
recipe: {
|
55
|
-
time: { start: '2019-04-13', end: '2019-05-10' }, count: 772,
|
56
|
-
traits: ['WE10', 'PU26'] }
|
57
|
-
},
|
58
|
-
# Hooked trait is discovered. Purrstige
|
59
|
-
hooked: { name: 'Hooked',
|
60
|
-
recipe: {
|
61
|
-
time: { start: '2019-04-13', end: '2019-05-10' }, count: 1277,
|
62
|
-
traits: ['WE10', 'PU27'] }
|
63
|
-
},
|
64
|
-
# Landlubber trait is discovered. Purrstige
|
65
|
-
landlubber: { name: 'Landlubber',
|
66
|
-
recipe: {
|
67
|
-
time: { start: '2019-04-13', end: '2019-05-10' }, count: 711,
|
68
|
-
traits: ['WE10', 'PU29'] }
|
69
|
-
},
|
70
|
-
# Wrecked trait is discovered. Purrstige
|
71
|
-
wrecked: { name: 'Wrecked',
|
72
|
-
recipe: {
|
73
|
-
time: { start: '2019-04-13', end: '2019-05-10' }, count: 959,
|
74
|
-
traits: ['EN00', 'PU26'] }
|
75
|
-
},
|
76
|
-
# Purrbados trait is discovered. Purrstige
|
77
|
-
purrbados: { name: 'Purrbados',
|
78
|
-
recipe: {
|
79
|
-
time: { start: '2019-04-13', end: '2019-05-10' }, count: 1344,
|
80
|
-
traits: ['EN01', 'PU26'] }
|
81
|
-
},
|
82
|
-
# Timbers trait is discovered. Purrstige
|
83
|
-
timbers: { name: 'Timbers',
|
84
|
-
recipe: {
|
85
|
-
time: { start: '2019-04-13', end: '2019-05-10' }, count: 472,
|
86
|
-
traits: ['WE10', 'EN00', 'PU26'] }
|
87
|
-
},
|
88
|
-
# Maraud trait is discovered. Purrstige
|
89
|
-
maraud: { name: 'Maraud',
|
90
|
-
recipe: {
|
91
|
-
time: { start: '2019-04-13', end: '2019-05-10' }, count: 620,
|
92
|
-
traits: ['WE10', 'EN01', 'PU26'] }
|
93
|
-
}
|
94
|
-
}
|
95
|
-
|
96
|
-
|
97
|
-
PURRSTIGES_ALPACAT = {
|
98
|
-
##
|
99
|
-
# Feb 21, 2019
|
100
|
-
# 7 Alpacat "hairstyle" purrstiges
|
101
|
-
# Dreamcloud trait is discovered. Purrstige
|
102
|
-
dreamcloud: { name: 'Dreamcloud',
|
103
|
-
recipe: {
|
104
|
-
time: { start: '2019-02-22', end: '2019-03-25' }, count: 1246,
|
105
|
-
traits: ['munchkin', 'WE10', 'PU24'] }
|
106
|
-
},
|
107
|
-
# Alpunka trait is discovered. Purrstige
|
108
|
-
alpunka: { name: 'Alpunka',
|
109
|
-
recipe: {
|
110
|
-
time: { start: '2019-02-22', end: '2019-03-25' }, count: 926,
|
111
|
-
traits: ['munchkin', 'WE10', 'PU28'] }
|
112
|
-
},
|
113
|
-
# Cindylou trait is discovered. Purrstige
|
114
|
-
cindylou: { name: 'Cindylou',
|
115
|
-
recipe: {
|
116
|
-
time: { start: '2019-02-22', end: '2019-03-25' }, count: 905,
|
117
|
-
traits: ['munchkin', 'WE10', 'PU30'] }
|
118
|
-
},
|
119
|
-
# Alpacacino trait is discovered. Purrstige
|
120
|
-
alpacacino: { name: 'Alpacacino',
|
121
|
-
recipe: {
|
122
|
-
time: { start: '2019-02-22', end: '2019-03-25' }, count: 1220,
|
123
|
-
traits: ['munchkin', 'WE10', 'PU27'] }
|
124
|
-
},
|
125
|
-
# Beatlesque trait is discovered. Purrstige
|
126
|
-
beatlesque: { name: 'Beatlesque',
|
127
|
-
recipe: {
|
128
|
-
time: { start: '2019-02-22', end: '2019-03-25' }, count: 783,
|
129
|
-
traits: ['munchkin', 'WE10', 'PU29'] }
|
130
|
-
},
|
131
|
-
# Huacool trait is discovered. Purrstige
|
132
|
-
huacool: { name: 'Huacool',
|
133
|
-
recipe: {
|
134
|
-
time: { start: '2019-02-22', end: '2019-03-25' }, count: 837,
|
135
|
-
traits: ['munchkin', 'WE10', 'PU25'] }
|
136
|
-
},
|
137
|
-
# Inaband trait is discovered. Purrstige
|
138
|
-
inaband: { name: 'Inaband',
|
139
|
-
recipe: {
|
140
|
-
time: { start: '2019-02-22', end: '2019-03-25' }, count: 1048,
|
141
|
-
traits: ['munchkin', 'WE10', 'PU26'] }
|
142
|
-
}
|
143
|
-
}
|
144
|
-
|
145
|
-
|
146
|
-
###############
|
147
|
-
## todo:
|
148
|
-
## - use PURRSTIGES_XMAS?! and other themes too - why? why not?
|
149
|
-
|
150
|
-
## thatsawrap: { date: '2018-10-21' }, ## prestige
|
151
|
-
## duckduckcat: { date: '2018-10-19' }, ## prestige
|
152
|
-
|
153
|
-
## prune: { date: '2018-09-19' }, ## prestige
|
154
|
-
## furball: { date: '2018-09-19' }, ## prestige
|
155
|
-
|
156
|
-
|
157
|
-
PRESTIGES = PURRSTIGES =
|
158
|
-
{
|
159
|
-
|
160
|
-
#
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
##
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
###########################################
|
4
|
+
## Purrstige Traits / Cattributes
|
5
|
+
|
6
|
+
PURRSTIGES_ROBOKITTY = {
|
7
|
+
###
|
8
|
+
# May 1, 2019
|
9
|
+
# 7 Robokitty Purrstiges
|
10
|
+
bionic: { name: 'Bionic',
|
11
|
+
recipe: {
|
12
|
+
time: { start: '2019-05-01', end: '2019-08-31' },
|
13
|
+
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU30'] }
|
14
|
+
},
|
15
|
+
fileshare: { name: 'Fileshare',
|
16
|
+
recipe: {
|
17
|
+
time: { start: '2019-05-01', end: '2019-08-31' },
|
18
|
+
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU29'] }
|
19
|
+
},
|
20
|
+
pawsfree: { name: 'Pawsfree',
|
21
|
+
recipe: {
|
22
|
+
time: { start: '2019-05-01', end: '2019-08-31' },
|
23
|
+
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU28'] }
|
24
|
+
},
|
25
|
+
uplink: { name: 'Uplink',
|
26
|
+
recipe: {
|
27
|
+
time: { start: '2019-05-01', end: '2019-08-31' },
|
28
|
+
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU27'] }
|
29
|
+
},
|
30
|
+
gaunlet: { name: 'Gauntlet',
|
31
|
+
recipe: {
|
32
|
+
time: { start: '2019-05-01', end: '2019-08-31' },
|
33
|
+
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU26'] }
|
34
|
+
},
|
35
|
+
catterypack: { name: 'Catterypack',
|
36
|
+
recipe: {
|
37
|
+
time: { start: '2019-05-01', end: '2019-08-31' },
|
38
|
+
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU25'] }
|
39
|
+
},
|
40
|
+
squelch: { name: 'Squelch',
|
41
|
+
recipe: {
|
42
|
+
time: { start: '2019-05-01', end: '2019-08-31' },
|
43
|
+
traits: ['ragdoll', 'WE05', TOTESBASIC, 'PU24'] }
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
|
48
|
+
PURRSTIGES_PIRATE = {
|
49
|
+
##
|
50
|
+
# Apr 13, 2019
|
51
|
+
# 7 Pirate Purrstiges
|
52
|
+
# Scratchingpost trait is discovered. Purrstige
|
53
|
+
scratchingpost: { name: 'Scratchingpost',
|
54
|
+
recipe: {
|
55
|
+
time: { start: '2019-04-13', end: '2019-05-10' }, count: 772,
|
56
|
+
traits: ['WE10', 'PU26'] }
|
57
|
+
},
|
58
|
+
# Hooked trait is discovered. Purrstige
|
59
|
+
hooked: { name: 'Hooked',
|
60
|
+
recipe: {
|
61
|
+
time: { start: '2019-04-13', end: '2019-05-10' }, count: 1277,
|
62
|
+
traits: ['WE10', 'PU27'] }
|
63
|
+
},
|
64
|
+
# Landlubber trait is discovered. Purrstige
|
65
|
+
landlubber: { name: 'Landlubber',
|
66
|
+
recipe: {
|
67
|
+
time: { start: '2019-04-13', end: '2019-05-10' }, count: 711,
|
68
|
+
traits: ['WE10', 'PU29'] }
|
69
|
+
},
|
70
|
+
# Wrecked trait is discovered. Purrstige
|
71
|
+
wrecked: { name: 'Wrecked',
|
72
|
+
recipe: {
|
73
|
+
time: { start: '2019-04-13', end: '2019-05-10' }, count: 959,
|
74
|
+
traits: ['EN00', 'PU26'] }
|
75
|
+
},
|
76
|
+
# Purrbados trait is discovered. Purrstige
|
77
|
+
purrbados: { name: 'Purrbados',
|
78
|
+
recipe: {
|
79
|
+
time: { start: '2019-04-13', end: '2019-05-10' }, count: 1344,
|
80
|
+
traits: ['EN01', 'PU26'] }
|
81
|
+
},
|
82
|
+
# Timbers trait is discovered. Purrstige
|
83
|
+
timbers: { name: 'Timbers',
|
84
|
+
recipe: {
|
85
|
+
time: { start: '2019-04-13', end: '2019-05-10' }, count: 472,
|
86
|
+
traits: ['WE10', 'EN00', 'PU26'] }
|
87
|
+
},
|
88
|
+
# Maraud trait is discovered. Purrstige
|
89
|
+
maraud: { name: 'Maraud',
|
90
|
+
recipe: {
|
91
|
+
time: { start: '2019-04-13', end: '2019-05-10' }, count: 620,
|
92
|
+
traits: ['WE10', 'EN01', 'PU26'] }
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
|
97
|
+
PURRSTIGES_ALPACAT = {
|
98
|
+
##
|
99
|
+
# Feb 21, 2019
|
100
|
+
# 7 Alpacat "hairstyle" purrstiges
|
101
|
+
# Dreamcloud trait is discovered. Purrstige
|
102
|
+
dreamcloud: { name: 'Dreamcloud',
|
103
|
+
recipe: {
|
104
|
+
time: { start: '2019-02-22', end: '2019-03-25' }, count: 1246,
|
105
|
+
traits: ['munchkin', 'WE10', 'PU24'] }
|
106
|
+
},
|
107
|
+
# Alpunka trait is discovered. Purrstige
|
108
|
+
alpunka: { name: 'Alpunka',
|
109
|
+
recipe: {
|
110
|
+
time: { start: '2019-02-22', end: '2019-03-25' }, count: 926,
|
111
|
+
traits: ['munchkin', 'WE10', 'PU28'] }
|
112
|
+
},
|
113
|
+
# Cindylou trait is discovered. Purrstige
|
114
|
+
cindylou: { name: 'Cindylou',
|
115
|
+
recipe: {
|
116
|
+
time: { start: '2019-02-22', end: '2019-03-25' }, count: 905,
|
117
|
+
traits: ['munchkin', 'WE10', 'PU30'] }
|
118
|
+
},
|
119
|
+
# Alpacacino trait is discovered. Purrstige
|
120
|
+
alpacacino: { name: 'Alpacacino',
|
121
|
+
recipe: {
|
122
|
+
time: { start: '2019-02-22', end: '2019-03-25' }, count: 1220,
|
123
|
+
traits: ['munchkin', 'WE10', 'PU27'] }
|
124
|
+
},
|
125
|
+
# Beatlesque trait is discovered. Purrstige
|
126
|
+
beatlesque: { name: 'Beatlesque',
|
127
|
+
recipe: {
|
128
|
+
time: { start: '2019-02-22', end: '2019-03-25' }, count: 783,
|
129
|
+
traits: ['munchkin', 'WE10', 'PU29'] }
|
130
|
+
},
|
131
|
+
# Huacool trait is discovered. Purrstige
|
132
|
+
huacool: { name: 'Huacool',
|
133
|
+
recipe: {
|
134
|
+
time: { start: '2019-02-22', end: '2019-03-25' }, count: 837,
|
135
|
+
traits: ['munchkin', 'WE10', 'PU25'] }
|
136
|
+
},
|
137
|
+
# Inaband trait is discovered. Purrstige
|
138
|
+
inaband: { name: 'Inaband',
|
139
|
+
recipe: {
|
140
|
+
time: { start: '2019-02-22', end: '2019-03-25' }, count: 1048,
|
141
|
+
traits: ['munchkin', 'WE10', 'PU26'] }
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
|
146
|
+
###############
|
147
|
+
## todo:
|
148
|
+
## - use PURRSTIGES_XMAS?! and other themes too - why? why not?
|
149
|
+
|
150
|
+
## thatsawrap: { date: '2018-10-21' }, ## prestige
|
151
|
+
## duckduckcat: { date: '2018-10-19' }, ## prestige
|
152
|
+
|
153
|
+
## prune: { date: '2018-09-19' }, ## prestige
|
154
|
+
## furball: { date: '2018-09-19' }, ## prestige
|
155
|
+
|
156
|
+
|
157
|
+
PRESTIGES = PURRSTIGES =
|
158
|
+
{
|
159
|
+
|
160
|
+
# Jun 28, 2019 - Werekitty trait is discovered. Purrstige
|
161
|
+
werekitty: { name: 'Werekitty',
|
162
|
+
recipe: {
|
163
|
+
time: { start: '2019-06-28', end: '2019-07-27' }, count: 438,
|
164
|
+
traits: ['moonrise', 'littlefoot', 'PU24',
|
165
|
+
['EN00','EN01','EN02','EN03','EN04','EN05','EN06','EN07','EN08','EN09','EN10','EN11','EN12','EN13','EN14','EN15']] }, # Any non-visible Env (EN00-EN15)
|
166
|
+
desc: 'Monster Month Purrstige Trait'
|
167
|
+
},
|
168
|
+
|
169
|
+
##
|
170
|
+
# Mar 15, 2019
|
171
|
+
# Oohshiny trait is discovered. Purrstige
|
172
|
+
oohshiny: { name: 'Oohshiny',
|
173
|
+
recipe: {
|
174
|
+
time: { start: '2019-03-15', end: '2019-03-28'}, count: 2484,
|
175
|
+
traits: ['roadtogold', 'PU27'] }
|
176
|
+
},
|
177
|
+
|
178
|
+
## 2018
|
179
|
+
## December
|
180
|
+
|
181
|
+
reindeer: { name: 'Reindeer',
|
182
|
+
recipe: {
|
183
|
+
time: { start: '2018-12-14', end: '2019-01-07' }, count: 854,
|
184
|
+
traits: ['elk', ['PU24','PU25','PU26','PU27']] }
|
185
|
+
},
|
186
|
+
holidaycheer: { name: 'Holidaycheer',
|
187
|
+
recipe: {
|
188
|
+
time: { start: '2018-12-14', end: '2019-01-07' }, count: 759,
|
189
|
+
traits: ['elk', ['PU28','PU29']] }
|
190
|
+
},
|
191
|
+
lit: { name: 'Lit',
|
192
|
+
recipe: {
|
193
|
+
time: { start: '2018-12-14', end: '2019-01-07' }, count: 1006,
|
194
|
+
traits: ['elk', 'PU30'] }
|
195
|
+
},
|
196
|
+
|
197
|
+
## October
|
198
|
+
## date: '2018-10-21' ??
|
199
|
+
thatsawrap: { name: 'Thatsawrap',
|
200
|
+
recipe: {
|
201
|
+
time: { start: '2018-10-20', end: '2018-11-06' }, count: 615,
|
202
|
+
traits: ['bobtail','WE00','PU28'] }
|
203
|
+
},
|
204
|
+
## date: '2018-10-19' ??
|
205
|
+
duckduckcat: { name: 'Duckduckcat',
|
206
|
+
recipe: {
|
207
|
+
time: { start: '2018-10-20', end: '2018-11-15' }, count: 1249,
|
208
|
+
traits: ['neckbeard',['PU24','PU25','PU26']] }
|
209
|
+
},
|
210
|
+
|
211
|
+
## September
|
212
|
+
## date: '2018-09-19' ??
|
213
|
+
prune: { name: 'Prune',
|
214
|
+
recipe: {
|
215
|
+
time: { start: '2018-09-18', end: '2018-09-30' }, count: 921,
|
216
|
+
traits: ['norwegianforest', TOTESBASIC, 'PU25'] }
|
217
|
+
},
|
218
|
+
furball: { name: 'Furball',
|
219
|
+
recipe: {
|
220
|
+
time: { start: '2018-09-19', end: '2018-09-30' }, count: 998,
|
221
|
+
traits: ['norwegianforest', TOTESBASIC, 'PU26'] }
|
222
|
+
}
|
223
|
+
}.merge( PURRSTIGES_ROBOKITTY )
|
224
|
+
.merge( PURRSTIGES_PIRATE )
|
225
|
+
.merge( PURRSTIGES_ALPACAT )
|