@juice789/tf2items 1.0.24 → 1.0.26

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/fromEconItem.js CHANGED
@@ -311,6 +311,16 @@ const keyRemap = when(
311
311
  )
312
312
  )
313
313
 
314
+ //725 tour of duty ticket
315
+ const uncraftRemap = when(
316
+ compose(
317
+ includes(__, ['725']),
318
+ String,
319
+ prop('defindex')
320
+ ),
321
+ assoc('uncraftable', false)
322
+ )
323
+
314
324
  const kitRemap = when(
315
325
  compose(
316
326
  includes('Killstreakifier Basic'),
@@ -337,6 +347,7 @@ const otherRemap = when(
337
347
  const remaps = compose(
338
348
  kitRemap,
339
349
  keyRemap,
350
+ uncraftRemap,
340
351
  otherRemap
341
352
  )
342
353
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juice789/tf2items",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "tf2 item schema thingys",
5
5
  "main": "app.js",
6
6
  "scripts": {
@@ -33,5 +33,8 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "sideEffects": false
36
+ "sideEffects": false,
37
+ "dependencies": {
38
+ "remove-accents": "^0.5.0"
39
+ }
37
40
  }