@flesh-and-blood/search 3.9.12 → 4.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.
package/README.md CHANGED
@@ -1,11 +1,25 @@
1
- # `search`
1
+ # `@flesh-and-blood/search`
2
2
 
3
- > TODO: description
3
+ TypeScript search engine for Flesh and Blood cards.
4
4
 
5
- ## Usage
5
+ ## Installation
6
+
7
+ `@flesh-and-blood/types` is a **peer dependency** — install it alongside this package so its enums
8
+ are shared rather than bundled twice:
6
9
 
7
10
  ```
8
- const search = require('search');
11
+ npm install @flesh-and-blood/search @flesh-and-blood/types
12
+ ```
13
+
14
+ This package is published as **ESM** (`"type": "module"`, per-file modules) so consumers can
15
+ tree-shake. Use a bundler (Vite, webpack, esbuild, Rollup) or a modern ESM-capable Node runtime.
16
+
17
+ ## Usage
18
+
19
+ ```ts
20
+ import Searcher from "@flesh-and-blood/search";
9
21
 
10
- // TODO: DEMONSTRATE API
22
+ // data-only modules are also available as subpath imports:
23
+ import { abbreviations } from "@flesh-and-blood/search/abbreviations";
24
+ import { shorthands } from "@flesh-and-blood/search/shorthands";
11
25
  ```
@@ -0,0 +1,385 @@
1
+ const getAbbreviation = (abbreviation) => {
2
+ return abbreviations.find(
3
+ ({ abbreviations: abbreviations2 }) => abbreviations2.find((a) => a.toLowerCase() === abbreviation)
4
+ );
5
+ };
6
+ const getAbbreviationByCard = (c) => {
7
+ return abbreviations.find(
8
+ ({ card }) => card.toLowerCase() === c.name.toLowerCase()
9
+ );
10
+ };
11
+ const abbreviations = [
12
+ {
13
+ abbreviations: ["10k"],
14
+ card: "10,000 Year Reunion"
15
+ },
16
+ {
17
+ abbreviations: ["Pajamas", "PJs"],
18
+ card: "Alluvion Constellas"
19
+ },
20
+ {
21
+ abbreviations: [
22
+ "Slippy",
23
+ "Arakni Slipped Through the Cracks",
24
+ "Arakni, Slipped Through the Cracks"
25
+ ],
26
+ card: "Arakni, 5L!p3d 7hRu 7h3 cR4X"
27
+ },
28
+ {
29
+ abbreviations: ["Dullcap"],
30
+ card: "Arcanite Skullcap"
31
+ },
32
+ {
33
+ abbreviations: ["ALS"],
34
+ card: "Arc Light Sentinel"
35
+ },
36
+ {
37
+ abbreviations: ["AoW"],
38
+ card: "Art of War"
39
+ },
40
+ {
41
+ abbreviations: ["BBD"],
42
+ card: "Barraging Beatdown"
43
+ },
44
+ {
45
+ abbreviations: ["BBS"],
46
+ card: "Big Blue Sky"
47
+ },
48
+ {
49
+ abbreviations: ["Starvo"],
50
+ card: "Bravo, Star of the Show"
51
+ },
52
+ {
53
+ abbreviations: ["BEB"],
54
+ card: "Bull's Eye Bracers"
55
+ },
56
+ {
57
+ abbreviations: ["BLW"],
58
+ card: "Be Like Water"
59
+ },
60
+ {
61
+ abbreviations: ["BoJ"],
62
+ card: "Balance of Justice"
63
+ },
64
+ {
65
+ abbreviations: ["BOHH"],
66
+ card: "Blood on Her Hands"
67
+ },
68
+ {
69
+ abbreviations: ["BRB"],
70
+ card: "Bloodrush Bellow"
71
+ },
72
+ {
73
+ abbreviations: ["Breezies"],
74
+ card: "Breeze Rider Boots"
75
+ },
76
+ {
77
+ abbreviations: ["BTA"],
78
+ card: "Burn Them All"
79
+ },
80
+ {
81
+ abbreviations: ["CStrike", "C-Strike", "C Strike"],
82
+ card: "Celestial Cataclysm"
83
+ },
84
+ { abbreviations: ["CBelly"], card: "Cerebellum Processor" },
85
+ {
86
+ abbreviations: ["CLF"],
87
+ card: "Channel Lake Frigid"
88
+ },
89
+ {
90
+ abbreviations: ["CLV"],
91
+ card: "Channel Lightning Valley"
92
+ },
93
+ {
94
+ abbreviations: ["CMH"],
95
+ card: "Channel Mount Heroic"
96
+ },
97
+ {
98
+ abbreviations: ["CMI"],
99
+ card: "Channel Mount Isen"
100
+ },
101
+ {
102
+ abbreviations: ["CMT"],
103
+ card: "Channel the Millennium Tree"
104
+ },
105
+ {
106
+ abbreviations: ["CnC", "C&C"],
107
+ card: "Command and Conquer"
108
+ },
109
+ {
110
+ abbreviations: ["Sea and Sea"],
111
+ card: "Conqueror of the High Seas"
112
+ },
113
+ {
114
+ abbreviations: ["CYB"],
115
+ card: "Count Your Blessings"
116
+ },
117
+ {
118
+ abbreviations: ["Cat", "Kitty"],
119
+ card: "Crouching Tiger"
120
+ },
121
+ {
122
+ abbreviations: ["CoD"],
123
+ card: "Crown of Dominion"
124
+ },
125
+ {
126
+ abbreviations: ["CoP"],
127
+ card: "Crown of Providence"
128
+ },
129
+ {
130
+ abbreviations: ["CtW"],
131
+ card: "Crush the Weak"
132
+ },
133
+ {
134
+ abbreviations: ["DD"],
135
+ card: "Death Dealer"
136
+ },
137
+ {
138
+ abbreviations: ["DnD"],
139
+ card: "Devotion Never Dies"
140
+ },
141
+ {
142
+ abbreviations: ["DIO"],
143
+ card: "Dash I/O"
144
+ },
145
+ {
146
+ abbreviations: ["EBTT"],
147
+ card: "Even Bigger Than That!"
148
+ },
149
+ {
150
+ abbreviations: ["NewNigma"],
151
+ card: "Enigma, New Moon"
152
+ },
153
+ {
154
+ abbreviations: ["EPot", "E Pot"],
155
+ card: "Energy Potion"
156
+ },
157
+ {
158
+ abbreviations: ["EStrike", "E-Strike", "E Strike"],
159
+ card: "Enlightened Strike"
160
+ },
161
+ {
162
+ abbreviations: ["FFS"],
163
+ card: "Fyendal's Fighting Spirit"
164
+ },
165
+ {
166
+ abbreviations: ["FoN"],
167
+ card: "Force of Nature"
168
+ },
169
+ {
170
+ abbreviations: ["Frosty", "\u{1F976}", "\u{1F9CA}", "\u2744\uFE0F"],
171
+ card: "Frostbite"
172
+ },
173
+ {
174
+ abbreviations: ["Yum yum"],
175
+ card: "Fruits of the Forest"
176
+ },
177
+ {
178
+ abbreviations: ["GnT"],
179
+ card: "Give and Take"
180
+ },
181
+ { abbreviations: ["Habibi"], card: "Hanabi Blaster" },
182
+ {
183
+ abbreviations: ["HMH"],
184
+ card: "Hope Merchant's Hood"
185
+ },
186
+ {
187
+ abbreviations: ["HoI"],
188
+ card: "Heart of Ice"
189
+ },
190
+ {
191
+ abbreviations: ["Pumpkin"],
192
+ card: "Jack-o'-lantern"
193
+ },
194
+ {
195
+ abbreviations: ["RKO", "Cheato"],
196
+ card: "Kayo, Underhanded Cheat"
197
+ },
198
+ {
199
+ abbreviations: ["KKBB"],
200
+ card: "Knick Knack Bric-a-brac"
201
+ },
202
+ {
203
+ abbreviations: ["BStrike"],
204
+ card: "Levels of Enlightenment"
205
+ },
206
+ {
207
+ abbreviations: ["LAG", "Twominaris"],
208
+ card: "Luminaris, Angel's Glow"
209
+ },
210
+ {
211
+ abbreviations: ["LCF", "Newminaris"],
212
+ card: "Luminaris, Celestial Fury"
213
+ },
214
+ {
215
+ abbreviations: ["LDE"],
216
+ card: "Last Ditch Effort"
217
+ },
218
+ {
219
+ abbreviations: ["LtC"],
220
+ card: "Lead the Charge"
221
+ },
222
+ {
223
+ abbreviations: ["LNW"],
224
+ card: "Leave No Witnesses"
225
+ },
226
+ {
227
+ abbreviations: ["LFaL", "L4aL"],
228
+ card: "Life for a Life"
229
+ },
230
+ {
231
+ abbreviations: ["LiT"],
232
+ card: "Lost in Thought"
233
+ },
234
+ {
235
+ abbreviations: ["MMB"],
236
+ card: "Mage Master Boots"
237
+ },
238
+ {
239
+ abbreviations: ["MaxV"],
240
+ card: "Maximum Velocity"
241
+ },
242
+ {
243
+ abbreviations: ["MoM"],
244
+ card: "Mask of Momentum"
245
+ },
246
+ {
247
+ abbreviations: ["MoPL"],
248
+ card: "Mask of the Pouncing Lynx"
249
+ },
250
+ {
251
+ abbreviations: ["MnG"],
252
+ card: "Meat and Greet"
253
+ },
254
+ {
255
+ abbreviations: ["Cake", "\u{1F382}"],
256
+ card: "Ninth Blade of the Blood Oath"
257
+ },
258
+ {
259
+ abbreviations: ["PoM"],
260
+ card: "Peace of Mind"
261
+ },
262
+ {
263
+ abbreviations: ["P-Bone"],
264
+ card: "Performance Bonus"
265
+ },
266
+ {
267
+ abbreviations: ["PF", "\u{1F525}"],
268
+ card: "Phoenix Flame"
269
+ },
270
+ {
271
+ abbreviations: ["PtW"],
272
+ card: "Poison the Well"
273
+ },
274
+ {
275
+ abbreviations: ["Thanos", "Infinity Gauntlet"],
276
+ card: "Polarity Reversal Script"
277
+ },
278
+ {
279
+ abbreviations: ["DPot", "D Pot"],
280
+ card: "Potion of D\xE9j\xE0 Vu"
281
+ },
282
+ {
283
+ abbreviations: ["Ponder Run"],
284
+ card: "Premeditate"
285
+ },
286
+ {
287
+ abbreviations: ["Qi Unbound"],
288
+ card: "Qi Unleashed"
289
+ },
290
+ {
291
+ abbreviations: ["RitL"],
292
+ card: "Red in the Ledger"
293
+ },
294
+ {
295
+ abbreviations: ["Cats", "Ghost cat", "Ghost cats"],
296
+ card: "Restless Coalescence"
297
+ },
298
+ {
299
+ abbreviations: ["Eugene"],
300
+ card: "Rhinar, Reckless Rampage",
301
+ isHidden: true
302
+ },
303
+ {
304
+ abbreviations: ["SSGB"],
305
+ card: "Sandscour Greatbow"
306
+ },
307
+ {
308
+ abbreviations: ["SSP"],
309
+ card: "Sand Sketched Plan"
310
+ },
311
+ {
312
+ abbreviations: ["SFaS", "S4aS"],
313
+ card: "Scar for a Scar"
314
+ },
315
+ {
316
+ abbreviations: ["Tyler"],
317
+ card: "Scurv, Stowaway",
318
+ isHidden: true
319
+ },
320
+ {
321
+ abbreviations: ["SWOMB"],
322
+ card: "Shifting Winds of the Mystic Beast"
323
+ },
324
+ {
325
+ abbreviations: ["Snaps"],
326
+ card: "Snapdragon Scalers"
327
+ },
328
+ {
329
+ abbreviations: ["SWK"],
330
+ card: "Spinning Wheel Kick"
331
+ },
332
+ {
333
+ abbreviations: ["SFTL"],
334
+ card: "Swing Fist, Think Later"
335
+ },
336
+ {
337
+ abbreviations: ["TTT"],
338
+ card: "Take the Tempo"
339
+ },
340
+ {
341
+ abbreviations: ["Ultron"],
342
+ card: "Teklovossen, the Mechropotent"
343
+ },
344
+ {
345
+ abbreviations: ["ToS"],
346
+ card: "Test of Strength"
347
+ },
348
+ {
349
+ abbreviations: ["TAYG"],
350
+ card: "That All You Got?"
351
+ },
352
+ {
353
+ abbreviations: ["TROM"],
354
+ card: "This Round's on Me"
355
+ },
356
+ {
357
+ abbreviations: ["3oak"],
358
+ card: "Three of a Kind"
359
+ },
360
+ {
361
+ abbreviations: ["Pox Malone", "Post Malone"],
362
+ card: "Virulent Touch"
363
+ },
364
+ {
365
+ abbreviations: ["Cast Homes"],
366
+ card: "Visit Goldmane Estate"
367
+ },
368
+ {
369
+ abbreviations: ["Frosty Hammer"],
370
+ card: "Winter's Wail"
371
+ },
372
+ {
373
+ abbreviations: ["Wreckless Wing"],
374
+ card: "War Cry of Bellona"
375
+ },
376
+ {
377
+ abbreviations: ["ZTS"],
378
+ card: "Zero to Sixty"
379
+ }
380
+ ];
381
+ export {
382
+ abbreviations,
383
+ getAbbreviation,
384
+ getAbbreviationByCard
385
+ };
@@ -0,0 +1,4 @@
1
+ const PUNCTUATION = /[!"#$%&'’(),./:;<=>?@[\]^_`|~]/g;
2
+ export {
3
+ PUNCTUATION
4
+ };