isaacscript-common 32.1.1 → 32.2.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 32.1.1
3
+ isaacscript-common 32.2.0
4
4
 
5
5
  This is the "isaacscript-common" library, which was created with the IsaacScript tool.
6
6
 
@@ -3151,6 +3151,14 @@ do
3151
3151
  end
3152
3152
  end
3153
3153
  end
3154
+ do
3155
+ local ____export = require("lua_modules.isaac-typescript-definitions.dist.src.enums.DebugCommand")
3156
+ for ____exportKey, ____exportValue in pairs(____export) do
3157
+ if ____exportKey ~= "default" then
3158
+ ____exports[____exportKey] = ____exportValue
3159
+ end
3160
+ end
3161
+ end
3154
3162
  do
3155
3163
  local ____export = require("lua_modules.isaac-typescript-definitions.dist.src.enums.Difficulty")
3156
3164
  for ____exportKey, ____exportValue in pairs(____export) do
@@ -15010,6 +15018,38 @@ ____exports.Difficulty.GREED = 2
15010
15018
  ____exports.Difficulty[____exports.Difficulty.GREED] = "GREED"
15011
15019
  ____exports.Difficulty.GREEDIER = 3
15012
15020
  ____exports.Difficulty[____exports.Difficulty.GREEDIER] = "GREEDIER"
15021
+ return ____exports
15022
+ end,
15023
+ ["lua_modules.isaac-typescript-definitions.dist.src.enums.DebugCommand"] = function(...)
15024
+ local ____exports = {}
15025
+ --- The values accepted by the `debug` console command.
15026
+ ____exports.DebugCommand = {}
15027
+ ____exports.DebugCommand.ENTITY_POSITIONS = 1
15028
+ ____exports.DebugCommand[____exports.DebugCommand.ENTITY_POSITIONS] = "ENTITY_POSITIONS"
15029
+ ____exports.DebugCommand.GRID_COST = 2
15030
+ ____exports.DebugCommand[____exports.DebugCommand.GRID_COST] = "GRID_COST"
15031
+ ____exports.DebugCommand.INFINITE_HP = 3
15032
+ ____exports.DebugCommand[____exports.DebugCommand.INFINITE_HP] = "INFINITE_HP"
15033
+ ____exports.DebugCommand.HIGH_DAMAGE = 4
15034
+ ____exports.DebugCommand[____exports.DebugCommand.HIGH_DAMAGE] = "HIGH_DAMAGE"
15035
+ ____exports.DebugCommand.SHOW_ROOM_INFO = 5
15036
+ ____exports.DebugCommand[____exports.DebugCommand.SHOW_ROOM_INFO] = "SHOW_ROOM_INFO"
15037
+ ____exports.DebugCommand.SHOW_HITSPHERES = 6
15038
+ ____exports.DebugCommand[____exports.DebugCommand.SHOW_HITSPHERES] = "SHOW_HITSPHERES"
15039
+ ____exports.DebugCommand.SHOW_DAMAGE_VALUES = 7
15040
+ ____exports.DebugCommand[____exports.DebugCommand.SHOW_DAMAGE_VALUES] = "SHOW_DAMAGE_VALUES"
15041
+ ____exports.DebugCommand.INFINITE_ITEM_CHARGES = 8
15042
+ ____exports.DebugCommand[____exports.DebugCommand.INFINITE_ITEM_CHARGES] = "INFINITE_ITEM_CHARGES"
15043
+ ____exports.DebugCommand.HIGH_LUCK = 9
15044
+ ____exports.DebugCommand[____exports.DebugCommand.HIGH_LUCK] = "HIGH_LUCK"
15045
+ ____exports.DebugCommand.QUICK_KILL = 10
15046
+ ____exports.DebugCommand[____exports.DebugCommand.QUICK_KILL] = "QUICK_KILL"
15047
+ ____exports.DebugCommand.GRID_INFO = 11
15048
+ ____exports.DebugCommand[____exports.DebugCommand.GRID_INFO] = "GRID_INFO"
15049
+ ____exports.DebugCommand.PLAYER_ITEM_INFO = 12
15050
+ ____exports.DebugCommand[____exports.DebugCommand.PLAYER_ITEM_INFO] = "PLAYER_ITEM_INFO"
15051
+ ____exports.DebugCommand.SHOW_GRID_COLLISION_POINTS = 13
15052
+ ____exports.DebugCommand[____exports.DebugCommand.SHOW_GRID_COLLISION_POINTS] = "SHOW_GRID_COLLISION_POINTS"
15013
15053
  return ____exports
15014
15054
  end,
15015
15055
  ["lua_modules.isaac-typescript-definitions.dist.src.enums.CopyableIsaacAPIClassType"] = function(...)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isaacscript-common",
3
- "version": "32.1.1",
3
+ "version": "32.2.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": "^15.1.0"
28
+ "isaac-typescript-definitions": "^15.2.0"
29
29
  }
30
30
  }