@ak--47/dungeon-master 1.0.0 → 1.1.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.
Files changed (103) hide show
  1. package/README.md +7 -7
  2. package/dungeons/technical/ad-spend-schema.json +128 -0
  3. package/dungeons/technical/ad-spend.js +116 -0
  4. package/dungeons/technical/anonymous-users-schema.json +91 -0
  5. package/dungeons/technical/anonymous-users.js +102 -0
  6. package/dungeons/technical/array-of-object-lookup-schema.json +191 -0
  7. package/dungeons/{array-of-object-lookup.js → technical/array-of-object-lookup.js} +11 -4
  8. package/dungeons/technical/experiments-schema.json +197 -0
  9. package/dungeons/technical/experiments.js +168 -0
  10. package/dungeons/technical/foobar-schema.json +362 -0
  11. package/dungeons/{foobar.js → technical/foobar.js} +2 -2
  12. package/dungeons/technical/group-analytics-schema.json +149 -0
  13. package/dungeons/technical/group-analytics.js +151 -0
  14. package/dungeons/technical/mirror-strategies-schema.json +84 -0
  15. package/dungeons/technical/mirror-strategies.js +126 -0
  16. package/dungeons/technical/nested-objects-schema.json +145 -0
  17. package/dungeons/technical/nested-objects.js +207 -0
  18. package/dungeons/technical/retention-cadence-schema.json +37 -0
  19. package/dungeons/{retention-cadence.js → technical/retention-cadence.js} +1 -1
  20. package/dungeons/technical/sanity-schema.json +185 -0
  21. package/dungeons/{sanity.js → technical/sanity.js} +3 -2
  22. package/dungeons/technical/scale-test-schema.json +70 -0
  23. package/dungeons/technical/scale-test.js +90 -0
  24. package/dungeons/technical/scd-schema.json +270 -0
  25. package/dungeons/{scd.js → technical/scd.js} +19 -10
  26. package/dungeons/technical/simple-schema.json +278 -0
  27. package/dungeons/{simple.js → technical/simple.js} +6 -6
  28. package/dungeons/technical/simplest-schema.json +635 -0
  29. package/dungeons/{simplest.js → technical/simplest.js} +6 -6
  30. package/dungeons/technical/text-generation-schema.json +1059 -0
  31. package/dungeons/{text-generation.js → technical/text-generation.js} +23 -9
  32. package/dungeons/vertical/community-schema.json +557 -0
  33. package/dungeons/vertical/community.js +788 -0
  34. package/dungeons/vertical/devtools-schema.json +580 -0
  35. package/dungeons/vertical/devtools.js +837 -0
  36. package/dungeons/vertical/ecommerce-schema.json +586 -0
  37. package/dungeons/{ecommerce.js → vertical/ecommerce.js} +34 -3
  38. package/dungeons/vertical/education-schema.json +697 -0
  39. package/dungeons/{education.js → vertical/education.js} +54 -36
  40. package/dungeons/vertical/fintech-schema.json +563 -0
  41. package/dungeons/{fintech.js → vertical/fintech.js} +91 -53
  42. package/dungeons/vertical/fitness-schema.json +508 -0
  43. package/dungeons/vertical/fitness.js +802 -0
  44. package/dungeons/vertical/food-delivery-schema.json +678 -0
  45. package/dungeons/{food.js → vertical/food-delivery.js} +51 -23
  46. package/dungeons/vertical/gaming-schema.json +394 -0
  47. package/dungeons/{gaming.js → vertical/gaming.js} +9 -7
  48. package/dungeons/vertical/healthcare-schema.json +527 -0
  49. package/dungeons/vertical/healthcare.js +769 -0
  50. package/dungeons/vertical/insurance-application-schema.json +466 -0
  51. package/dungeons/{insurance-application.js → vertical/insurance-application.js} +33 -29
  52. package/dungeons/vertical/logistics-schema.json +552 -0
  53. package/dungeons/vertical/logistics.js +793 -0
  54. package/dungeons/vertical/marketplace-schema.json +511 -0
  55. package/dungeons/vertical/marketplace.js +844 -0
  56. package/dungeons/vertical/media-schema.json +787 -0
  57. package/dungeons/{media.js → vertical/media.js} +94 -16
  58. package/dungeons/vertical/rpg-schema.json +654 -0
  59. package/dungeons/{rpg.js → vertical/rpg.js} +78 -57
  60. package/dungeons/vertical/sass-schema.json +653 -0
  61. package/dungeons/{sass.js → vertical/sass.js} +49 -23
  62. package/dungeons/vertical/social-schema.json +552 -0
  63. package/dungeons/{social.js → vertical/social.js} +60 -14
  64. package/dungeons/vertical/travel-schema.json +558 -0
  65. package/dungeons/vertical/travel.js +736 -0
  66. package/index.js +19 -15
  67. package/lib/core/config-validator.js +286 -1
  68. package/lib/core/context.js +7 -5
  69. package/lib/generators/adspend.js +3 -3
  70. package/lib/generators/events.js +141 -14
  71. package/lib/generators/funnels.js +67 -7
  72. package/lib/generators/text.js +2 -2
  73. package/lib/orchestrators/user-loop.js +441 -22
  74. package/lib/templates/soup-presets.js +2 -2
  75. package/lib/utils/utils.js +4 -5
  76. package/package.json +4 -3
  77. package/scripts/dungeon-to-json.mjs +163 -0
  78. package/scripts/extract-dungeon-schema.mjs +297 -0
  79. package/scripts/json-to-dungeon.mjs +200 -0
  80. package/scripts/run-dungeon.mjs +76 -0
  81. package/scripts/run-many.mjs +118 -0
  82. package/scripts/verify-runner.mjs +42 -0
  83. package/types.d.ts +313 -1
  84. package/dungeons/array-of-object-lookup-schema.json +0 -327
  85. package/dungeons/ecommerce-schema.json +0 -462
  86. package/dungeons/education-schema.json +0 -2409
  87. package/dungeons/fintech-schema.json +0 -14034
  88. package/dungeons/foobar-schema.json +0 -403
  89. package/dungeons/food-delivery-schema.json +0 -192
  90. package/dungeons/food-delivery.js +0 -602
  91. package/dungeons/food-schema.json +0 -1152
  92. package/dungeons/gaming-schema.json +0 -1270
  93. package/dungeons/insurance-application-schema.json +0 -204
  94. package/dungeons/media-schema.json +0 -906
  95. package/dungeons/retention-cadence-schema.json +0 -78
  96. package/dungeons/rpg-schema.json +0 -4526
  97. package/dungeons/sanity-schema.json +0 -255
  98. package/dungeons/sass-schema.json +0 -1291
  99. package/dungeons/scd-schema.json +0 -919
  100. package/dungeons/simple-schema.json +0 -608
  101. package/dungeons/simplest-schema.json +0 -1418
  102. package/dungeons/social-schema.json +0 -1118
  103. package/dungeons/text-generation-schema.json +0 -3096
@@ -0,0 +1,635 @@
1
+ {
2
+ "events": [
3
+ {
4
+ "event": "page view",
5
+ "weight": 10,
6
+ "properties": {
7
+ "page": [
8
+ "/blog",
9
+ "/",
10
+ "/about",
11
+ "/help"
12
+ ],
13
+ "utm_source": [
14
+ "facebook",
15
+ "google",
16
+ "$organic",
17
+ "twitter",
18
+ "linkedin"
19
+ ]
20
+ }
21
+ },
22
+ {
23
+ "event": "sign up",
24
+ "isFirstEvent": true,
25
+ "properties": {
26
+ "signupMethod": [
27
+ "email",
28
+ "google",
29
+ "facebook",
30
+ "github"
31
+ ],
32
+ "referral": [
33
+ "none",
34
+ "friend",
35
+ "ad"
36
+ ]
37
+ }
38
+ },
39
+ {
40
+ "event": "login",
41
+ "weight": 8,
42
+ "properties": {
43
+ "method": [
44
+ "password",
45
+ "google",
46
+ "facebook",
47
+ "github"
48
+ ]
49
+ }
50
+ },
51
+ {
52
+ "event": "search",
53
+ "weight": 7,
54
+ "properties": {
55
+ "query_length": {
56
+ "$range": [
57
+ 8,
58
+ 41
59
+ ]
60
+ },
61
+ "resultsReturned": {
62
+ "$range": [
63
+ 19,
64
+ 79
65
+ ]
66
+ },
67
+ "category": [
68
+ "Garden",
69
+ "Automotive",
70
+ "Home",
71
+ "Outdoors",
72
+ "Pet",
73
+ "Books",
74
+ "Handmade",
75
+ "Toys"
76
+ ]
77
+ }
78
+ },
79
+ {
80
+ "event": "view item",
81
+ "weight": 9,
82
+ "properties": {
83
+ "isFeaturedItem": [
84
+ true,
85
+ false
86
+ ],
87
+ "itemCategory": [
88
+ "Toys",
89
+ "Electronics",
90
+ "Computers",
91
+ "Beauty",
92
+ "Outdoors",
93
+ "Appliances",
94
+ "Music",
95
+ "Garden"
96
+ ],
97
+ "price": {
98
+ "$range": [
99
+ 99,
100
+ 402
101
+ ]
102
+ },
103
+ "rating": {
104
+ "$range": [
105
+ 1,
106
+ 4
107
+ ]
108
+ }
109
+ }
110
+ },
111
+ {
112
+ "event": "add to cart",
113
+ "weight": 5,
114
+ "properties": {
115
+ "amount": {
116
+ "$range": [
117
+ 108,
118
+ 400
119
+ ]
120
+ },
121
+ "itemCategory": [
122
+ "Baby",
123
+ "Wedding",
124
+ "Outdoors",
125
+ "Software",
126
+ "Books"
127
+ ],
128
+ "numItems": {
129
+ "$range": [
130
+ 1,
131
+ 5
132
+ ]
133
+ }
134
+ }
135
+ },
136
+ {
137
+ "event": "checkout",
138
+ "weight": 3,
139
+ "properties": {
140
+ "amount": {
141
+ "$range": [
142
+ 109,
143
+ 381
144
+ ]
145
+ },
146
+ "currency": [
147
+ "USD",
148
+ "CAD",
149
+ "EUR",
150
+ "JPY"
151
+ ],
152
+ "coupon": [
153
+ "none",
154
+ "10%OFF",
155
+ "20%OFF",
156
+ "30%OFF"
157
+ ],
158
+ "numItems": {
159
+ "$range": [
160
+ 1,
161
+ 10
162
+ ]
163
+ }
164
+ }
165
+ },
166
+ {
167
+ "event": "watch video",
168
+ "weight": 6,
169
+ "properties": {
170
+ "videoCategory": [
171
+ "music",
172
+ "news",
173
+ "funny",
174
+ "travel",
175
+ "inspirational",
176
+ "educational"
177
+ ],
178
+ "watchTimeSec": {
179
+ "$range": [
180
+ 126,
181
+ 493
182
+ ]
183
+ },
184
+ "quality": [
185
+ "1080p",
186
+ "720p",
187
+ "480p",
188
+ "360p"
189
+ ]
190
+ }
191
+ },
192
+ {
193
+ "event": "share content",
194
+ "weight": 2,
195
+ "properties": {
196
+ "platform": [
197
+ "twitter",
198
+ "facebook",
199
+ "linkedin",
200
+ "email",
201
+ "link"
202
+ ],
203
+ "contentType": [
204
+ "video",
205
+ "product",
206
+ "article"
207
+ ]
208
+ }
209
+ },
210
+ {
211
+ "event": "rate item",
212
+ "weight": 4,
213
+ "properties": {
214
+ "rating": {
215
+ "$range": [
216
+ 1,
217
+ 5
218
+ ]
219
+ },
220
+ "itemCategory": [
221
+ "Food",
222
+ "Wedding",
223
+ "Office",
224
+ "Outdoors",
225
+ "Home",
226
+ "Appliances",
227
+ "Entertainment",
228
+ "Health",
229
+ "Software"
230
+ ],
231
+ "hasReviewText": [
232
+ true,
233
+ false
234
+ ]
235
+ }
236
+ },
237
+ {
238
+ "event": "support ticket",
239
+ "weight": 2,
240
+ "properties": {
241
+ "priority": [
242
+ "low",
243
+ "medium",
244
+ "high"
245
+ ],
246
+ "category": [
247
+ "billing",
248
+ "technical",
249
+ "account",
250
+ "shipping",
251
+ "returns"
252
+ ]
253
+ }
254
+ },
255
+ {
256
+ "event": "add to wishlist",
257
+ "weight": 4,
258
+ "properties": {
259
+ "itemCategory": [
260
+ "Books",
261
+ "Games",
262
+ "Beauty",
263
+ "Toys",
264
+ "Software",
265
+ "Movies",
266
+ "Office"
267
+ ],
268
+ "price": {
269
+ "$range": [
270
+ 100,
271
+ 413
272
+ ]
273
+ }
274
+ }
275
+ },
276
+ {
277
+ "event": "remove from cart",
278
+ "weight": 3,
279
+ "properties": {
280
+ "reason": [
281
+ "changed mind",
282
+ "too expensive",
283
+ "found better",
284
+ "duplicate"
285
+ ]
286
+ }
287
+ },
288
+ {
289
+ "event": "apply coupon",
290
+ "weight": 2,
291
+ "properties": {
292
+ "couponCode": [
293
+ "SAVE10",
294
+ "SAVE20",
295
+ "WELCOME",
296
+ "FREESHIP",
297
+ "VIP30"
298
+ ],
299
+ "discountPercent": {
300
+ "$range": [
301
+ 5,
302
+ 47
303
+ ]
304
+ }
305
+ }
306
+ },
307
+ {
308
+ "event": "notification received",
309
+ "weight": 7,
310
+ "properties": {
311
+ "channel": [
312
+ "push",
313
+ "email",
314
+ "in-app",
315
+ "sms"
316
+ ],
317
+ "type": [
318
+ "promo",
319
+ "order update",
320
+ "recommendation",
321
+ "reminder"
322
+ ]
323
+ }
324
+ },
325
+ {
326
+ "event": "notification clicked",
327
+ "weight": 5,
328
+ "properties": {
329
+ "channel": [
330
+ "push",
331
+ "email",
332
+ "in-app",
333
+ "sms"
334
+ ],
335
+ "type": [
336
+ "promo",
337
+ "order update",
338
+ "recommendation",
339
+ "reminder"
340
+ ]
341
+ }
342
+ },
343
+ {
344
+ "event": "add payment method",
345
+ "properties": {
346
+ "type": [
347
+ "credit card",
348
+ "debit card",
349
+ "paypal",
350
+ "apple pay",
351
+ "google pay"
352
+ ]
353
+ }
354
+ },
355
+ {
356
+ "event": "update profile",
357
+ "weight": 3,
358
+ "properties": {
359
+ "field": [
360
+ "avatar",
361
+ "name",
362
+ "email",
363
+ "address",
364
+ "phone",
365
+ "preferences"
366
+ ]
367
+ }
368
+ },
369
+ {
370
+ "event": "invite friend",
371
+ "properties": {
372
+ "method": [
373
+ "email",
374
+ "link",
375
+ "sms"
376
+ ]
377
+ }
378
+ },
379
+ {
380
+ "event": "view category",
381
+ "weight": 8,
382
+ "properties": {
383
+ "category": [
384
+ "Smart Home",
385
+ "Electronics",
386
+ "Pet",
387
+ "Software",
388
+ "Books",
389
+ "Movies",
390
+ "Computers",
391
+ "Music"
392
+ ],
393
+ "sortBy": [
394
+ "popular",
395
+ "newest",
396
+ "price low",
397
+ "price high",
398
+ "rating"
399
+ ]
400
+ }
401
+ },
402
+ {
403
+ "event": "save address",
404
+ "properties": {
405
+ "type": [
406
+ "home",
407
+ "work",
408
+ "other"
409
+ ]
410
+ }
411
+ },
412
+ {
413
+ "event": "compare items",
414
+ "weight": 3,
415
+ "properties": {
416
+ "numItems": {
417
+ "$range": [
418
+ 2,
419
+ 5
420
+ ]
421
+ },
422
+ "itemCategory": [
423
+ "Wedding",
424
+ "Art",
425
+ "Software",
426
+ "Movies",
427
+ "Electronics",
428
+ "Toys",
429
+ "Baby",
430
+ "Appliances"
431
+ ]
432
+ }
433
+ },
434
+ {
435
+ "event": "subscribe newsletter",
436
+ "properties": {
437
+ "frequency": [
438
+ "daily",
439
+ "weekly",
440
+ "monthly"
441
+ ],
442
+ "topics": [
443
+ "deals",
444
+ "new arrivals",
445
+ "recommendations"
446
+ ]
447
+ }
448
+ },
449
+ {
450
+ "event": "leave review",
451
+ "weight": 2,
452
+ "properties": {
453
+ "rating": {
454
+ "$range": [
455
+ 1,
456
+ 4
457
+ ]
458
+ },
459
+ "wordCount": {
460
+ "$range": [
461
+ 51,
462
+ 157
463
+ ]
464
+ },
465
+ "hasPhotos": [
466
+ true,
467
+ false
468
+ ]
469
+ }
470
+ },
471
+ {
472
+ "event": "redeem reward",
473
+ "properties": {
474
+ "rewardType": [
475
+ "discount",
476
+ "free shipping",
477
+ "free item",
478
+ "points bonus"
479
+ ],
480
+ "pointsUsed": {
481
+ "$range": [
482
+ 1169,
483
+ 3988
484
+ ]
485
+ }
486
+ }
487
+ }
488
+ ],
489
+ "superProps": {
490
+ "theme": [
491
+ "light",
492
+ "dark",
493
+ "custom"
494
+ ]
495
+ },
496
+ "userProps": {
497
+ "title": {
498
+ "$type": "string"
499
+ },
500
+ "luckyNumber": {
501
+ "$range": [
502
+ 123,
503
+ 346
504
+ ]
505
+ },
506
+ "spiritAnimal": [
507
+ "penguin",
508
+ "otter",
509
+ "elephant",
510
+ "mite",
511
+ "tick",
512
+ "goliath beetle",
513
+ "mosquito",
514
+ "damselfly",
515
+ "hercules beetle"
516
+ ]
517
+ },
518
+ "funnels": [
519
+ {
520
+ "sequence": [
521
+ "page view",
522
+ "sign up"
523
+ ],
524
+ "isFirstFunnel": true,
525
+ "conversionRate": 55,
526
+ "timeToConvert": 1,
527
+ "weight": 5
528
+ },
529
+ {
530
+ "sequence": [
531
+ "search",
532
+ "view item",
533
+ "add to cart",
534
+ "checkout"
535
+ ],
536
+ "conversionRate": 35,
537
+ "timeToConvert": 3,
538
+ "weight": 8
539
+ },
540
+ {
541
+ "sequence": [
542
+ "page view",
543
+ "watch video",
544
+ "share content"
545
+ ],
546
+ "conversionRate": 40,
547
+ "timeToConvert": 2,
548
+ "weight": 6
549
+ },
550
+ {
551
+ "sequence": [
552
+ "view item",
553
+ "rate item"
554
+ ],
555
+ "conversionRate": 25,
556
+ "timeToConvert": 5,
557
+ "weight": 3
558
+ },
559
+ {
560
+ "sequence": [
561
+ "view category",
562
+ "view item",
563
+ "compare items",
564
+ "add to cart"
565
+ ],
566
+ "conversionRate": 30,
567
+ "timeToConvert": 3,
568
+ "weight": 7
569
+ },
570
+ {
571
+ "sequence": [
572
+ "notification received",
573
+ "notification clicked",
574
+ "view item"
575
+ ],
576
+ "conversionRate": 45,
577
+ "timeToConvert": 1,
578
+ "weight": 4
579
+ },
580
+ {
581
+ "sequence": [
582
+ "view item",
583
+ "add to wishlist",
584
+ "apply coupon",
585
+ "add to cart",
586
+ "checkout"
587
+ ],
588
+ "conversionRate": 20,
589
+ "timeToConvert": 7,
590
+ "weight": 2
591
+ },
592
+ {
593
+ "sequence": [
594
+ "checkout",
595
+ "leave review",
596
+ "invite friend"
597
+ ],
598
+ "conversionRate": 15,
599
+ "timeToConvert": 14
600
+ },
601
+ {
602
+ "sequence": [
603
+ "login",
604
+ "view item",
605
+ "add to cart",
606
+ "apply coupon",
607
+ "checkout"
608
+ ],
609
+ "conversionRate": 30,
610
+ "timeToConvert": 2,
611
+ "weight": 9
612
+ },
613
+ {
614
+ "sequence": [
615
+ "subscribe newsletter",
616
+ "notification received",
617
+ "notification clicked",
618
+ "checkout"
619
+ ],
620
+ "conversionRate": 10,
621
+ "timeToConvert": 14,
622
+ "weight": 3
623
+ },
624
+ {
625
+ "sequence": [
626
+ "support ticket",
627
+ "update profile",
628
+ "checkout"
629
+ ],
630
+ "conversionRate": 20,
631
+ "timeToConvert": 7,
632
+ "weight": 10
633
+ }
634
+ ]
635
+ }
@@ -4,7 +4,7 @@ import dayjs from "dayjs";
4
4
  import utc from "dayjs/plugin/utc.js";
5
5
  dayjs.extend(utc);
6
6
  import { uid, comma } from 'ak-tools';
7
- import { pickAWinner, weighNumRange, date, integer, weighChoices } from "../lib/utils/utils.js";
7
+ import { pickAWinner, weighNumRange, date, integer, weighChoices } from "../../lib/utils/utils.js";
8
8
 
9
9
  const itemCategories = ["Books", "Movies", "Music", "Games", "Electronics", "Computers", "Smart Home", "Home", "Garden", "Pet", "Beauty", "Health", "Toys", "Kids", "Baby", "Handmade", "Sports", "Outdoors", "Automotive", "Industrial", "Entertainment", "Art", "Food", "Appliances", "Office", "Wedding", "Software"];
10
10
 
@@ -60,8 +60,8 @@ const config = {
60
60
  event: "page view",
61
61
  weight: 10,
62
62
  properties: {
63
- page: pickAWinner(["/", "/", "/help", "/account", "/pricing", "/product", "/about", "/blog"]),
64
- utm_source: pickAWinner(["$organic", "$organic", "$organic", "$organic", "google", "google", "google", "facebook", "facebook", "twitter", "linkedin"]),
63
+ page: ["/", "/", "/help", "/account", "/pricing", "/product", "/about", "/blog"],
64
+ utm_source: ["$organic", "$organic", "$organic", "$organic", "google", "google", "google", "facebook", "facebook", "twitter", "linkedin"],
65
65
  }
66
66
  },
67
67
  {
@@ -243,7 +243,7 @@ const config = {
243
243
  weight: 1,
244
244
  properties: {
245
245
  frequency: ["daily", "weekly", "monthly"],
246
- topics: pickAWinner(["deals", "new arrivals", "recommendations", "deals", "deals"]),
246
+ topics: ["deals", "new arrivals", "recommendations", "deals", "deals"],
247
247
  }
248
248
  },
249
249
  {
@@ -358,7 +358,7 @@ const config = {
358
358
 
359
359
  ],
360
360
  superProps: {
361
- theme: pickAWinner(["light", "dark", "custom", "light", "dark"]),
361
+ theme: ["light", "dark", "custom", "light", "dark"],
362
362
  },
363
363
  /*
364
364
  user properties work the same as event properties
@@ -367,7 +367,7 @@ const config = {
367
367
  userProps: {
368
368
  title: chance.profession.bind(chance),
369
369
  luckyNumber: weighNumRange(42, 420, .3),
370
- spiritAnimal: pickAWinner(["duck", "dog", "otter", "penguin", "cat", "elephant", "lion", "cheetah", "giraffe", "zebra", "rhino", "hippo", "whale", "dolphin", "shark", "octopus", "squid", "jellyfish", "starfish", "seahorse", "crab", "lobster", "shrimp", "clam", "snail", "slug", "butterfly", "moth", "bee", "wasp", "ant", "beetle", "ladybug", "caterpillar", "centipede", "millipede", "scorpion", "spider", "tarantula", "tick", "mite", "mosquito", "fly", "dragonfly", "damselfly", "grasshopper", "cricket", "locust", "mantis", "cockroach", "termite", "praying mantis", "walking stick", "stick bug", "leaf insect", "lacewing", "aphid", "cicada", "thrips", "psyllid", "scale insect", "whitefly", "mealybug", "planthopper", "leafhopper", "treehopper", "flea", "louse", "bedbug", "flea beetle", "weevil", "longhorn beetle", "leaf beetle", "tiger beetle", "ground beetle", "lady beetle", "firefly", "click beetle", "rove beetle", "scarab beetle", "dung beetle", "stag beetle", "rhinoceros beetle", "hercules beetle", "goliath beetle", "jewel beetle", "tortoise beetle"])
370
+ spiritAnimal: ["duck", "dog", "otter", "penguin", "cat", "elephant", "lion", "cheetah", "giraffe", "zebra", "rhino", "hippo", "whale", "dolphin", "shark", "octopus", "squid", "jellyfish", "starfish", "seahorse", "crab", "lobster", "shrimp", "clam", "snail", "slug", "butterfly", "moth", "bee", "wasp", "ant", "beetle", "ladybug", "caterpillar", "centipede", "millipede", "scorpion", "spider", "tarantula", "tick", "mite", "mosquito", "fly", "dragonfly", "damselfly", "grasshopper", "cricket", "locust", "mantis", "cockroach", "termite", "praying mantis", "walking stick", "stick bug", "leaf insect", "lacewing", "aphid", "cicada", "thrips", "psyllid", "scale insect", "whitefly", "mealybug", "planthopper", "leafhopper", "treehopper", "flea", "louse", "bedbug", "flea beetle", "weevil", "longhorn beetle", "leaf beetle", "tiger beetle", "ground beetle", "lady beetle", "firefly", "click beetle", "rove beetle", "scarab beetle", "dung beetle", "stag beetle", "rhinoceros beetle", "hercules beetle", "goliath beetle", "jewel beetle", "tortoise beetle"]
371
371
  },
372
372
  scdProps: {},
373
373
  mirrorProps: {},