isaacscript-common 67.1.0 → 67.1.1

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 67.1.0
3
+ isaacscript-common 67.1.1
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -7147,6 +7147,22 @@ ____exports.BatterySubType[____exports.BatterySubType.GOLDEN] = "GOLDEN"
7147
7147
  --- For `EntityType.PICKUP` (5), `PickupVariant.COLLECTIBLE` (100).
7148
7148
  --
7149
7149
  -- This is the sub-type of a collectible.
7150
+ --
7151
+ -- This enum is not contiguous. In other words, the enum ranges from `CollectibleType.NULL` (0) to
7152
+ -- `CollectibleType.MOMS_RING` (732), but there is no corresponding `CollectibleType` with the
7153
+ -- following values:
7154
+ --
7155
+ -- 1. 43 (Pills here)
7156
+ -- 2. 61 (Tarot Card)
7157
+ -- 3. 235
7158
+ -- 4. 587 (Menorah)
7159
+ -- 5. 613 (Salt Shaker)
7160
+ -- 6. 620 (Voodoo Pin)
7161
+ -- 7. 630 (Lucky Seven)
7162
+ -- 8. 648 (Pill Crusher)
7163
+ -- 9. 662
7164
+ -- 10. 666
7165
+ -- 11. 718
7150
7166
  ____exports.CollectibleType = {}
7151
7167
  ____exports.CollectibleType.NULL = 0
7152
7168
  ____exports.CollectibleType[____exports.CollectibleType.NULL] = "NULL"
@@ -8598,6 +8614,8 @@ ____exports.CollectibleType[____exports.CollectibleType.MOMS_RING] = "MOMS_RING"
8598
8614
  --
8599
8615
  -- This enum was renamed from "Card" to be consistent with the `CollectibleType` and `TrinketType`
8600
8616
  -- enums.
8617
+ --
8618
+ -- This enum is contiguous. (Every value is satisfied between 0 and 97, inclusive.)
8601
8619
  ____exports.CardType = {}
8602
8620
  ____exports.CardType.NULL = 0
8603
8621
  ____exports.CardType[____exports.CardType.NULL] = "NULL"
@@ -8798,6 +8816,10 @@ ____exports.CardType[____exports.CardType.SOUL_OF_JACOB_AND_ESAU] = "SOUL_OF_JAC
8798
8816
  --- For `EntityType.PICKUP` (5), `PickupVariant.TRINKET` (350).
8799
8817
  --
8800
8818
  -- This is the sub-type of a trinket.
8819
+ --
8820
+ -- This enum is not contiguous. In other words, the enum ranges from `TrinketType.NULL` (0) to
8821
+ -- `TrinketType.SIGIL_OF_BAPHOMET` (189), but there is no corresponding `TrinketType` with a value
8822
+ -- of 47.
8801
8823
  ____exports.TrinketType = {}
8802
8824
  ____exports.TrinketType.NULL = 0
8803
8825
  ____exports.TrinketType[____exports.TrinketType.NULL] = "NULL"
@@ -9615,6 +9637,8 @@ ____exports.TreasureRoomSubType[____exports.TreasureRoomSubType.KNIFE_PIECE] = "
9615
9637
  -- The enum is named `BossID` instead of `BossRoomSubType` in order to match the `Entity.GetBossID`,
9616
9638
  -- `Room.GetBossID` and `Room.GetSecondBossID` methods.
9617
9639
  --
9640
+ -- This enum is contiguous. (Every value is satisfied between 1 and 102, inclusive.)
9641
+ --
9618
9642
  -- Also see the `MinibossID` enum.
9619
9643
  ____exports.BossID = {}
9620
9644
  ____exports.BossID.MONSTRO = 1
@@ -12529,6 +12553,7 @@ return ____exports
12529
12553
  end,
12530
12554
  ["lua_modules.isaac-typescript-definitions.dist.src.enums.PillEffect"] = function(...)
12531
12555
  local ____exports = {}
12556
+ --- This enum is contiguous. (Every value is satisfied between 0 and 49, inclusive.)
12532
12557
  ____exports.PillEffect = {}
12533
12558
  ____exports.PillEffect.BAD_GAS = 0
12534
12559
  ____exports.PillEffect[____exports.PillEffect.BAD_GAS] = "BAD_GAS"
@@ -15286,6 +15311,7 @@ return ____exports
15286
15311
  end,
15287
15312
  ["lua_modules.isaac-typescript-definitions.dist.src.enums.Challenge"] = function(...)
15288
15313
  local ____exports = {}
15314
+ --- This enum is contiguous. (Every value is satisfied between 0 and 45, inclusive.)
15289
15315
  ____exports.Challenge = {}
15290
15316
  ____exports.Challenge.NULL = 0
15291
15317
  ____exports.Challenge[____exports.Challenge.NULL] = "NULL"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "67.1.0",
3
+ "version": "67.1.1",
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": "^33.0.0"
28
+ "isaac-typescript-definitions": "^33.0.1"
29
29
  }
30
30
  }