@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
@@ -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
 
@@ -48,7 +48,7 @@ const videoCategories = ["funny", "educational", "inspirational", "music", "news
48
48
  * Expected: visible volume of abandoned cart events
49
49
  */
50
50
 
51
- /** @type {import('../types').Dungeon} */
51
+ /** @type {import('../../types').Dungeon} */
52
52
  const config = {
53
53
  token: "",
54
54
  seed: "simple is best",
@@ -78,7 +78,7 @@ const config = {
78
78
  currency: ["USD", "CAD", "EUR", "BTC", "ETH", "JPY"],
79
79
  coupon: weighChoices(["none", "none", "none", "none", "10%OFF", "20%OFF", "10%OFF", "20%OFF", "30%OFF", "40%OFF", "50%OFF"]),
80
80
  numItems: weighNumRange(1, 10),
81
-
81
+ discount_applied: [false],
82
82
  }
83
83
  },
84
84
  {
@@ -97,8 +97,8 @@ const config = {
97
97
  event: "page view",
98
98
  weight: 10,
99
99
  properties: {
100
- page: pickAWinner(["/", "/", "/help", "/account", "/watch", "/listen", "/product", "/people", "/peace"]),
101
- utm_source: pickAWinner(["$organic", "$organic", "$organic", "$organic", "google", "google", "google", "facebook", "facebook", "twitter", "linkedin"]),
100
+ page: ["/", "/", "/help", "/account", "/watch", "/listen", "/product", "/people", "/peace"],
101
+ utm_source: ["$organic", "$organic", "$organic", "$organic", "google", "google", "google", "facebook", "facebook", "twitter", "linkedin"],
102
102
  }
103
103
  },
104
104
  {
@@ -110,8 +110,8 @@ const config = {
110
110
  watchTimeSec: weighNumRange(10, 600, .25),
111
111
  quality: ["2160p", "1440p", "1080p", "720p", "480p", "360p", "240p"],
112
112
  format: ["mp4", "avi", "mov", "mpg"],
113
- uploader_id: chance.guid.bind(chance)
114
-
113
+ uploader_id: chance.guid.bind(chance),
114
+ is_weekend: [false],
115
115
  }
116
116
  },
117
117
  {
@@ -143,6 +143,14 @@ const config = {
143
143
  experiment_ids: ["1234", "5678", "9012", "3456", "7890"],
144
144
  multiVariate: [true, false]
145
145
  }
146
+ },
147
+ {
148
+ event: "cart_abandoned",
149
+ weight: 0,
150
+ isStrictEvent: true,
151
+ properties: {
152
+ amount: weighNumRange(5, 500, .25),
153
+ }
146
154
  }
147
155
  ],
148
156
  superProps: {
@@ -156,7 +164,8 @@ const config = {
156
164
  userProps: {
157
165
  title: chance.profession.bind(chance),
158
166
  luckyNumber: weighNumRange(42, 420, .3),
159
- 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"])
167
+ 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"],
168
+ spendTier: ["budget"],
160
169
  },
161
170
  scdProps: {
162
171
  role: {
@@ -257,11 +266,11 @@ const config = {
257
266
  const lastAdd = record.filter(e => e.event === "add to cart").pop();
258
267
  if (lastAdd) {
259
268
  record.push({
269
+ ...lastAdd,
260
270
  event: "cart_abandoned",
261
271
  time: dayjs(lastAdd.time).add(30, "minute").toISOString(),
262
272
  user_id: lastAdd.user_id,
263
- platform: lastAdd.platform,
264
- amount: lastAdd.amount
273
+ amount: lastAdd.amount,
265
274
  });
266
275
  }
267
276
  }
@@ -0,0 +1,278 @@
1
+ {
2
+ "events": [
3
+ {
4
+ "event": "ad impression",
5
+ "weight": 15,
6
+ "properties": {
7
+ "partner": [
8
+ "google",
9
+ "facebook",
10
+ "twitter",
11
+ "linkedin",
12
+ "bing",
13
+ "taboola",
14
+ "outbrain",
15
+ "quora",
16
+ "pinterest"
17
+ ]
18
+ }
19
+ },
20
+ {
21
+ "event": "ad click",
22
+ "weight": 10,
23
+ "properties": {
24
+ "partner": [
25
+ "google",
26
+ "facebook",
27
+ "twitter",
28
+ "linkedin",
29
+ "bing",
30
+ "taboola",
31
+ "outbrain",
32
+ "quora",
33
+ "pinterest"
34
+ ]
35
+ }
36
+ },
37
+ {
38
+ "event": "checkout",
39
+ "weight": 2,
40
+ "properties": {
41
+ "amount": {
42
+ "$range": [
43
+ 104,
44
+ 391
45
+ ]
46
+ },
47
+ "currency": [
48
+ "USD",
49
+ "CAD",
50
+ "EUR",
51
+ "BTC",
52
+ "ETH",
53
+ "JPY"
54
+ ],
55
+ "coupon": [
56
+ "none",
57
+ "10%OFF",
58
+ "20%OFF",
59
+ "30%OFF",
60
+ "40%OFF",
61
+ "50%OFF"
62
+ ],
63
+ "numItems": {
64
+ "$range": [
65
+ 2,
66
+ 9
67
+ ]
68
+ }
69
+ }
70
+ },
71
+ {
72
+ "event": "add to cart",
73
+ "weight": 4,
74
+ "properties": {
75
+ "amount": {
76
+ "$range": [
77
+ 110,
78
+ 395
79
+ ]
80
+ },
81
+ "rating": {
82
+ "$range": [
83
+ 1,
84
+ 5
85
+ ]
86
+ },
87
+ "reviews": {
88
+ "$range": [
89
+ 1,
90
+ 35
91
+ ]
92
+ },
93
+ "isFeaturedItem": [
94
+ true,
95
+ false
96
+ ],
97
+ "itemCategory": [
98
+ "Health",
99
+ "Wedding",
100
+ "Handmade",
101
+ "Outdoors",
102
+ "Computers",
103
+ "Software",
104
+ "Books",
105
+ "Home",
106
+ "Appliances"
107
+ ],
108
+ "dateItemListed": {
109
+ "$type": "string"
110
+ }
111
+ }
112
+ },
113
+ {
114
+ "event": "page view",
115
+ "weight": 10,
116
+ "properties": {
117
+ "page": [
118
+ "/peace",
119
+ "/product",
120
+ "/help",
121
+ "/watch",
122
+ "/people",
123
+ "/listen"
124
+ ],
125
+ "utm_source": [
126
+ "$organic",
127
+ "google",
128
+ "twitter",
129
+ "linkedin"
130
+ ]
131
+ }
132
+ },
133
+ {
134
+ "event": "watch video",
135
+ "weight": 8,
136
+ "properties": {
137
+ "videoCategory": [
138
+ "cooking",
139
+ "gaming",
140
+ "educational",
141
+ "travel",
142
+ "funny",
143
+ "inspirational"
144
+ ],
145
+ "isFeaturedItem": [
146
+ true,
147
+ false
148
+ ],
149
+ "watchTimeSec": {
150
+ "$range": [
151
+ 130,
152
+ 469
153
+ ]
154
+ },
155
+ "quality": [
156
+ "2160p",
157
+ "1440p",
158
+ "1080p",
159
+ "720p",
160
+ "480p",
161
+ "360p",
162
+ "240p"
163
+ ],
164
+ "format": [
165
+ "mp4",
166
+ "avi",
167
+ "mov",
168
+ "mpg"
169
+ ],
170
+ "uploader_id": {
171
+ "$type": "string"
172
+ }
173
+ }
174
+ },
175
+ {
176
+ "event": "view item",
177
+ "weight": 8,
178
+ "properties": {
179
+ "isFeaturedItem": [
180
+ true,
181
+ false
182
+ ],
183
+ "itemCategory": [
184
+ "Games",
185
+ "Music",
186
+ "Books",
187
+ "Garden"
188
+ ],
189
+ "dateItemListed": {
190
+ "$type": "string"
191
+ }
192
+ }
193
+ },
194
+ {
195
+ "event": "save item",
196
+ "weight": 5,
197
+ "properties": {
198
+ "isFeaturedItem": [
199
+ true,
200
+ false
201
+ ],
202
+ "itemCategory": [
203
+ "Food",
204
+ "Art",
205
+ "Wedding",
206
+ "Toys",
207
+ "Office"
208
+ ],
209
+ "dateItemListed": {
210
+ "$type": "string"
211
+ }
212
+ }
213
+ },
214
+ {
215
+ "event": "sign up",
216
+ "isFirstEvent": true,
217
+ "properties": {
218
+ "signupMethod": [
219
+ "email",
220
+ "google",
221
+ "facebook",
222
+ "twitter",
223
+ "linkedin",
224
+ "github"
225
+ ],
226
+ "referral": [
227
+ "none",
228
+ "friend",
229
+ "ad"
230
+ ]
231
+ }
232
+ }
233
+ ],
234
+ "superProps": {
235
+ "theme": [
236
+ "custom",
237
+ "dark",
238
+ "light"
239
+ ]
240
+ },
241
+ "userProps": {
242
+ "title": {
243
+ "$type": "string"
244
+ },
245
+ "luckyNumber": {
246
+ "$range": [
247
+ 114,
248
+ 333
249
+ ]
250
+ },
251
+ "spiritAnimal": [
252
+ "millipede",
253
+ "giraffe",
254
+ "tarantula",
255
+ "bedbug",
256
+ "louse",
257
+ "flea beetle",
258
+ "leaf beetle",
259
+ "cricket"
260
+ ]
261
+ },
262
+ "funnels": [
263
+ {
264
+ "sequence": [
265
+ "page view",
266
+ "view item",
267
+ "save item",
268
+ "page view",
269
+ "sign up"
270
+ ],
271
+ "isFirstFunnel": true,
272
+ "conversionRate": 50,
273
+ "timeToConvert": 2,
274
+ "order": "first-and-last-fixed",
275
+ "experiment": true
276
+ }
277
+ ]
278
+ }
@@ -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
 
@@ -57,7 +57,7 @@ const videoCategories = ["funny", "educational", "inspirational", "music", "news
57
57
  * Expected: low-quality cohort volume thins out after midpoint
58
58
  */
59
59
 
60
- /** @type {import('../types').Dungeon} */
60
+ /** @type {import('../../types').Dungeon} */
61
61
  const config = {
62
62
  token: "",
63
63
  seed: "simple is best",
@@ -123,8 +123,8 @@ const config = {
123
123
  event: "page view",
124
124
  weight: 10,
125
125
  properties: {
126
- page: pickAWinner(["/", "/", "/help", "/account", "/watch", "/listen", "/product", "/people", "/peace"]),
127
- utm_source: pickAWinner(["$organic", "$organic", "$organic", "$organic", "google", "google", "google", "facebook", "facebook", "twitter", "linkedin"]),
126
+ page: ["/", "/", "/help", "/account", "/watch", "/listen", "/product", "/people", "/peace"],
127
+ utm_source: ["$organic", "$organic", "$organic", "$organic", "google", "google", "google", "facebook", "facebook", "twitter", "linkedin"],
128
128
  }
129
129
  },
130
130
  {
@@ -184,7 +184,7 @@ const config = {
184
184
 
185
185
  ],
186
186
  superProps: {
187
- theme: pickAWinner(["light", "dark", "custom", "light", "dark"]),
187
+ theme: ["light", "dark", "custom", "light", "dark"],
188
188
  },
189
189
  /*
190
190
  user properties work the same as event properties
@@ -193,7 +193,7 @@ const config = {
193
193
  userProps: {
194
194
  title: chance.profession.bind(chance),
195
195
  luckyNumber: weighNumRange(42, 420, .3),
196
- 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"])
196
+ 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"]
197
197
  },
198
198
  scdProps: {},
199
199
  mirrorProps: {},