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.
- package/constants.d.ts +1 -1
- package/features/characterHealthConversion.lua +4 -1
- package/features/characterStats.lua +1 -1
- package/features/collectibleItemPoolType.lua +2 -2
- package/features/customTrapdoor/constants.d.ts +1 -1
- package/features/customTrapdoor/constants.lua +1 -1
- package/features/customTrapdoor/exports.lua +4 -0
- package/features/customTrapdoor/init.lua +2 -2
- package/features/debugDisplay/debugDisplay.d.ts +4 -0
- package/features/debugDisplay/debugDisplay.lua +2 -0
- package/features/deployJSONRoom.lua +2 -2
- package/features/{disableSound.d.ts → disableAllSound.d.ts} +3 -0
- package/features/{disableSound.lua → disableAllSound.lua} +3 -3
- package/features/disableInputs.lua +2 -2
- package/features/extraConsoleCommands/exports.d.ts +26 -0
- package/features/extraConsoleCommands/exports.lua +54 -0
- package/features/extraConsoleCommands/init.d.ts +1 -25
- package/features/extraConsoleCommands/init.lua +166 -195
- package/features/extraConsoleCommands/v.d.ts +8 -0
- package/features/extraConsoleCommands/v.lua +11 -0
- package/features/fadeInRemover.lua +2 -2
- package/features/fastReset.lua +1 -1
- package/features/forgottenSwitch.lua +2 -2
- package/features/persistentEntities.lua +6 -1
- package/features/playerInventory.lua +2 -2
- package/features/ponyDetection.lua +2 -2
- package/features/preventCollectibleRotation.lua +2 -2
- package/features/registerHotkey.d.ts +3 -0
- package/features/registerHotkey.lua +50 -0
- package/features/roomClearFrame.lua +2 -2
- package/features/runInNFrames.lua +2 -2
- package/features/saveDataManager/exports.lua +1 -0
- package/features/sirenHelpers.lua +2 -2
- package/features/stageHistory.lua +2 -2
- package/features/taintedLazarusPlayers.lua +2 -2
- package/featuresInitialized.lua +1 -1
- package/functions/minimap.d.ts +32 -0
- package/functions/minimap.lua +65 -0
- package/functions/nextStage.d.ts +1 -1
- package/functions/nextStage.lua +1 -1
- package/functions/rooms.d.ts +13 -3
- package/functions/rooms.lua +22 -5
- package/functions/run.d.ts +5 -2
- package/functions/run.lua +5 -2
- package/functions/saveFile.lua +3 -0
- package/functions/stage.d.ts +10 -0
- package/functions/stage.lua +20 -0
- package/functions/utils.d.ts +5 -0
- package/functions/utils.lua +7 -0
- package/index.d.ts +5 -3
- package/index.lua +30 -16
- package/initFeatures.lua +3 -3
- package/lualib_bundle.lua +6 -3
- package/objects/stageTypeSuffixes.d.ts +4 -0
- package/objects/stageTypeSuffixes.lua +12 -0
- package/package.json +1 -1
- package/sets/consoleCommandsSet.d.ts +5 -0
- 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
|