isaacscript-common 65.0.0 → 66.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.
@@ -1,6 +1,6 @@
1
1
  --[[
2
2
 
3
- isaacscript-common 65.0.0
3
+ isaacscript-common 66.0.0
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -8284,8 +8284,8 @@ ____exports.CollectibleType.BLOOD_OATH = 569
8284
8284
  ____exports.CollectibleType[____exports.CollectibleType.BLOOD_OATH] = "BLOOD_OATH"
8285
8285
  ____exports.CollectibleType.PLAYDOUGH_COOKIE = 570
8286
8286
  ____exports.CollectibleType[____exports.CollectibleType.PLAYDOUGH_COOKIE] = "PLAYDOUGH_COOKIE"
8287
- ____exports.CollectibleType.SOCKS = 571
8288
- ____exports.CollectibleType[____exports.CollectibleType.SOCKS] = "SOCKS"
8287
+ ____exports.CollectibleType.ORPHAN_SOCKS = 571
8288
+ ____exports.CollectibleType[____exports.CollectibleType.ORPHAN_SOCKS] = "ORPHAN_SOCKS"
8289
8289
  ____exports.CollectibleType.EYE_OF_THE_OCCULT = 572
8290
8290
  ____exports.CollectibleType[____exports.CollectibleType.EYE_OF_THE_OCCULT] = "EYE_OF_THE_OCCULT"
8291
8291
  ____exports.CollectibleType.IMMACULATE_HEART = 573
@@ -22590,7 +22590,7 @@ ____exports.COLLECTIBLE_DESCRIPTIONS = {
22590
22590
  [CollectibleType.DIVINE_INTERVENTION] = "Double tap shield",
22591
22591
  [CollectibleType.BLOOD_OATH] = "Bleed me dry",
22592
22592
  [CollectibleType.PLAYDOUGH_COOKIE] = "Tasty rainbow",
22593
- [CollectibleType.SOCKS] = "Speed up + your feet feel stronger",
22593
+ [CollectibleType.ORPHAN_SOCKS] = "Speed up + your feet feel stronger",
22594
22594
  [CollectibleType.EYE_OF_THE_OCCULT] = "DMG up + range up + controlled tears",
22595
22595
  [CollectibleType.IMMACULATE_HEART] = "Halo of tears",
22596
22596
  [CollectibleType.MONSTRANCE] = "Purifying light",
@@ -23321,7 +23321,7 @@ ____exports.COLLECTIBLE_NAMES = {
23321
23321
  [CollectibleType.DIVINE_INTERVENTION] = "Divine Intervention",
23322
23322
  [CollectibleType.BLOOD_OATH] = "Blood Oath",
23323
23323
  [CollectibleType.PLAYDOUGH_COOKIE] = "Playdough Cookie",
23324
- [CollectibleType.SOCKS] = "Orphan Socks",
23324
+ [CollectibleType.ORPHAN_SOCKS] = "Orphan Socks",
23325
23325
  [CollectibleType.EYE_OF_THE_OCCULT] = "Eye of the Occult",
23326
23326
  [CollectibleType.IMMACULATE_HEART] = "Immaculate Heart",
23327
23327
  [CollectibleType.MONSTRANCE] = "Monstrance",
@@ -572,7 +572,7 @@ ____exports.COLLECTIBLE_DESCRIPTIONS = {
572
572
  [CollectibleType.DIVINE_INTERVENTION] = "Double tap shield",
573
573
  [CollectibleType.BLOOD_OATH] = "Bleed me dry",
574
574
  [CollectibleType.PLAYDOUGH_COOKIE] = "Tasty rainbow",
575
- [CollectibleType.SOCKS] = "Speed up + your feet feel stronger",
575
+ [CollectibleType.ORPHAN_SOCKS] = "Speed up + your feet feel stronger",
576
576
  [CollectibleType.EYE_OF_THE_OCCULT] = "DMG up + range up + controlled tears",
577
577
  [CollectibleType.IMMACULATE_HEART] = "Halo of tears",
578
578
  [CollectibleType.MONSTRANCE] = "Purifying light",
@@ -574,7 +574,7 @@ ____exports.COLLECTIBLE_NAMES = {
574
574
  [CollectibleType.DIVINE_INTERVENTION] = "Divine Intervention",
575
575
  [CollectibleType.BLOOD_OATH] = "Blood Oath",
576
576
  [CollectibleType.PLAYDOUGH_COOKIE] = "Playdough Cookie",
577
- [CollectibleType.SOCKS] = "Orphan Socks",
577
+ [CollectibleType.ORPHAN_SOCKS] = "Orphan Socks",
578
578
  [CollectibleType.EYE_OF_THE_OCCULT] = "Eye of the Occult",
579
579
  [CollectibleType.IMMACULATE_HEART] = "Immaculate Heart",
580
580
  [CollectibleType.MONSTRANCE] = "Monstrance",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "65.0.0",
3
+ "version": "66.0.0",
4
4
  "description": "Helper functions and features for IsaacScript mods.",
5
5
  "keywords": [
6
6
  "isaac",
@@ -25,6 +25,6 @@
25
25
  "main": "dist/src/index",
26
26
  "types": "dist/index.rollup.d.ts",
27
27
  "dependencies": {
28
- "isaac-typescript-definitions": "^31.0.0"
28
+ "isaac-typescript-definitions": "^32.0.0"
29
29
  }
30
30
  }
@@ -577,7 +577,7 @@ export const COLLECTIBLE_DESCRIPTIONS = {
577
577
  [CollectibleType.DIVINE_INTERVENTION]: "Double tap shield", // 568
578
578
  [CollectibleType.BLOOD_OATH]: "Bleed me dry", // 569
579
579
  [CollectibleType.PLAYDOUGH_COOKIE]: "Tasty rainbow", // 570
580
- [CollectibleType.SOCKS]: "Speed up + your feet feel stronger", // 571
580
+ [CollectibleType.ORPHAN_SOCKS]: "Speed up + your feet feel stronger", // 571
581
581
  [CollectibleType.EYE_OF_THE_OCCULT]: "DMG up + range up + controlled tears", // 572
582
582
  [CollectibleType.IMMACULATE_HEART]: "Halo of tears", // 573
583
583
  [CollectibleType.MONSTRANCE]: "Purifying light", // 574
@@ -579,7 +579,7 @@ export const COLLECTIBLE_NAMES = {
579
579
  [CollectibleType.DIVINE_INTERVENTION]: "Divine Intervention", // 568
580
580
  [CollectibleType.BLOOD_OATH]: "Blood Oath", // 569
581
581
  [CollectibleType.PLAYDOUGH_COOKIE]: "Playdough Cookie", // 570
582
- [CollectibleType.SOCKS]: "Orphan Socks", // 571
582
+ [CollectibleType.ORPHAN_SOCKS]: "Orphan Socks", // 571
583
583
  [CollectibleType.EYE_OF_THE_OCCULT]: "Eye of the Occult", // 572
584
584
  [CollectibleType.IMMACULATE_HEART]: "Immaculate Heart", // 573
585
585
  [CollectibleType.MONSTRANCE]: "Monstrance", // 574