isaacscript-common 4.3.3 → 4.5.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.
Files changed (58) hide show
  1. package/constants.d.ts +1 -1
  2. package/features/characterHealthConversion.lua +4 -1
  3. package/features/characterStats.lua +1 -1
  4. package/features/collectibleItemPoolType.lua +2 -2
  5. package/features/customTrapdoor/constants.d.ts +1 -1
  6. package/features/customTrapdoor/constants.lua +1 -1
  7. package/features/customTrapdoor/exports.lua +4 -0
  8. package/features/customTrapdoor/init.lua +2 -2
  9. package/features/debugDisplay/debugDisplay.d.ts +4 -0
  10. package/features/debugDisplay/debugDisplay.lua +2 -0
  11. package/features/deployJSONRoom.lua +2 -2
  12. package/features/{disableSound.d.ts → disableAllSound.d.ts} +3 -0
  13. package/features/{disableSound.lua → disableAllSound.lua} +3 -3
  14. package/features/disableInputs.lua +2 -2
  15. package/features/extraConsoleCommands/exports.d.ts +26 -0
  16. package/features/extraConsoleCommands/exports.lua +54 -0
  17. package/features/extraConsoleCommands/init.d.ts +1 -25
  18. package/features/extraConsoleCommands/init.lua +166 -195
  19. package/features/extraConsoleCommands/v.d.ts +8 -0
  20. package/features/extraConsoleCommands/v.lua +11 -0
  21. package/features/fadeInRemover.lua +2 -2
  22. package/features/fastReset.lua +1 -1
  23. package/features/forgottenSwitch.lua +2 -2
  24. package/features/persistentEntities.lua +6 -1
  25. package/features/playerInventory.lua +2 -2
  26. package/features/ponyDetection.lua +2 -2
  27. package/features/preventCollectibleRotation.lua +2 -2
  28. package/features/registerHotkey.d.ts +3 -0
  29. package/features/registerHotkey.lua +50 -0
  30. package/features/roomClearFrame.lua +2 -2
  31. package/features/runInNFrames.lua +2 -2
  32. package/features/saveDataManager/exports.lua +1 -0
  33. package/features/sirenHelpers.lua +2 -2
  34. package/features/stageHistory.lua +2 -2
  35. package/features/taintedLazarusPlayers.lua +2 -2
  36. package/featuresInitialized.lua +1 -1
  37. package/functions/minimap.d.ts +32 -0
  38. package/functions/minimap.lua +65 -0
  39. package/functions/nextStage.d.ts +1 -1
  40. package/functions/nextStage.lua +1 -1
  41. package/functions/rooms.d.ts +13 -3
  42. package/functions/rooms.lua +22 -5
  43. package/functions/run.d.ts +5 -2
  44. package/functions/run.lua +5 -2
  45. package/functions/saveFile.lua +3 -0
  46. package/functions/stage.d.ts +10 -0
  47. package/functions/stage.lua +20 -0
  48. package/functions/utils.d.ts +5 -0
  49. package/functions/utils.lua +7 -0
  50. package/index.d.ts +5 -3
  51. package/index.lua +30 -16
  52. package/initFeatures.lua +3 -3
  53. package/lualib_bundle.lua +6 -3
  54. package/objects/stageTypeSuffixes.d.ts +4 -0
  55. package/objects/stageTypeSuffixes.lua +12 -0
  56. package/package.json +1 -1
  57. package/sets/consoleCommandsSet.d.ts +5 -0
  58. package/sets/consoleCommandsSet.lua +61 -0
@@ -0,0 +1,61 @@
1
+ local ____lualib = require("lualib_bundle")
2
+ local Set = ____lualib.Set
3
+ local __TS__New = ____lualib.__TS__New
4
+ local ____exports = {}
5
+ --- The set of vanilla console commands, as documented here:
6
+ -- https://bindingofisaacrebirth.fandom.com/wiki/Debug_Console
7
+ ____exports.CONSOLE_COMMANDS_SET = __TS__New(Set, {
8
+ "achievement",
9
+ "challenge",
10
+ "clear",
11
+ "clearcache",
12
+ "clearseeds",
13
+ "combo",
14
+ "copy",
15
+ "costumetest",
16
+ "curse",
17
+ "cutscene",
18
+ "debug",
19
+ "delirious",
20
+ "eggs",
21
+ "giveitem",
22
+ "g",
23
+ "goto",
24
+ "gridspawn",
25
+ "listcollectibles",
26
+ "lua",
27
+ "l",
28
+ "luamem",
29
+ "luamod",
30
+ "luarun",
31
+ "macro",
32
+ "m",
33
+ "metro",
34
+ "playsfx",
35
+ "prof",
36
+ "profstop",
37
+ "remove",
38
+ "r",
39
+ "reloadfx",
40
+ "reloadshaders",
41
+ "repeat",
42
+ "reseed",
43
+ "restart",
44
+ "seed",
45
+ "spawn",
46
+ "stage",
47
+ "time",
48
+ "addplayer",
49
+ "forceroom",
50
+ "giveitem2",
51
+ "g2",
52
+ "netdelay",
53
+ "netstart",
54
+ "remove2",
55
+ "r2",
56
+ "reloadwisps",
57
+ "restock",
58
+ "rewind",
59
+ "testbosspool"
60
+ })
61
+ return ____exports