isaacscript-common 32.0.0 → 32.1.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.
- package/dist/isaacscript-common.lua +11 -1
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 32.
|
|
3
|
+
isaacscript-common 32.1.0
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -9491,6 +9491,16 @@ ____exports.TallLadderSubType.TALL_LADDER = 0
|
|
|
9491
9491
|
____exports.TallLadderSubType[____exports.TallLadderSubType.TALL_LADDER] = "TALL_LADDER"
|
|
9492
9492
|
____exports.TallLadderSubType.STAIRWAY = 1
|
|
9493
9493
|
____exports.TallLadderSubType[____exports.TallLadderSubType.STAIRWAY] = "STAIRWAY"
|
|
9494
|
+
--- For `EntityType.EFFECT` (1000), `EffectVariant.PORTAL_TELEPORT` (161).
|
|
9495
|
+
____exports.PortalTeleportSubType = {}
|
|
9496
|
+
____exports.PortalTeleportSubType.TREASURE_ROOM = 0
|
|
9497
|
+
____exports.PortalTeleportSubType[____exports.PortalTeleportSubType.TREASURE_ROOM] = "TREASURE_ROOM"
|
|
9498
|
+
____exports.PortalTeleportSubType.BOSS_ROOM = 1
|
|
9499
|
+
____exports.PortalTeleportSubType[____exports.PortalTeleportSubType.BOSS_ROOM] = "BOSS_ROOM"
|
|
9500
|
+
____exports.PortalTeleportSubType.SECRET_ROOM = 2
|
|
9501
|
+
____exports.PortalTeleportSubType[____exports.PortalTeleportSubType.SECRET_ROOM] = "SECRET_ROOM"
|
|
9502
|
+
____exports.PortalTeleportSubType.RANDOM_ROOM = 3
|
|
9503
|
+
____exports.PortalTeleportSubType[____exports.PortalTeleportSubType.RANDOM_ROOM] = "RANDOM_ROOM"
|
|
9494
9504
|
--- For `EntityType.EFFECT` (1000), `EffectVariant.PURGATORY` (189).
|
|
9495
9505
|
____exports.PurgatorySubType = {}
|
|
9496
9506
|
____exports.PurgatorySubType.RIFT = 0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "32.
|
|
3
|
+
"version": "32.1.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.0
|
|
28
|
+
"isaac-typescript-definitions": "^15.1.0"
|
|
29
29
|
}
|
|
30
30
|
}
|