isaacscript-common 1.2.152 → 1.2.153
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/index.d.ts +4 -0
- package/dist/index.lua +32 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -70,6 +70,10 @@ export * from "./functions/trinketSet";
|
|
|
70
70
|
export * from "./functions/ui";
|
|
71
71
|
export * from "./functions/utils";
|
|
72
72
|
export * from "./functions/vector";
|
|
73
|
+
export * from "./maps/cardMap";
|
|
74
|
+
export * from "./maps/characterMap";
|
|
75
|
+
export * from "./maps/pillEffectMap";
|
|
76
|
+
export * from "./maps/roomTypeMap";
|
|
73
77
|
export * from "./types/AnyEntity";
|
|
74
78
|
export * from "./types/CallbackParametersCustom";
|
|
75
79
|
export * from "./types/CardType";
|
package/dist/index.lua
CHANGED
|
@@ -568,6 +568,38 @@ do
|
|
|
568
568
|
end
|
|
569
569
|
end
|
|
570
570
|
end
|
|
571
|
+
do
|
|
572
|
+
local ____export = require("maps.cardMap")
|
|
573
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
574
|
+
if ____exportKey ~= "default" then
|
|
575
|
+
____exports[____exportKey] = ____exportValue
|
|
576
|
+
end
|
|
577
|
+
end
|
|
578
|
+
end
|
|
579
|
+
do
|
|
580
|
+
local ____export = require("maps.characterMap")
|
|
581
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
582
|
+
if ____exportKey ~= "default" then
|
|
583
|
+
____exports[____exportKey] = ____exportValue
|
|
584
|
+
end
|
|
585
|
+
end
|
|
586
|
+
end
|
|
587
|
+
do
|
|
588
|
+
local ____export = require("maps.pillEffectMap")
|
|
589
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
590
|
+
if ____exportKey ~= "default" then
|
|
591
|
+
____exports[____exportKey] = ____exportValue
|
|
592
|
+
end
|
|
593
|
+
end
|
|
594
|
+
end
|
|
595
|
+
do
|
|
596
|
+
local ____export = require("maps.roomTypeMap")
|
|
597
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
598
|
+
if ____exportKey ~= "default" then
|
|
599
|
+
____exports[____exportKey] = ____exportValue
|
|
600
|
+
end
|
|
601
|
+
end
|
|
602
|
+
end
|
|
571
603
|
do
|
|
572
604
|
local ____export = require("types.CardType")
|
|
573
605
|
for ____exportKey, ____exportValue in pairs(____export) do
|