isaacscript-common 30.4.0 → 30.4.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common 30.4.
|
|
3
|
+
isaacscript-common 30.4.1
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -28052,7 +28052,7 @@ function ____exports.setPlayerHealth(self, player, playerHealth)
|
|
|
28052
28052
|
until true
|
|
28053
28053
|
end
|
|
28054
28054
|
)
|
|
28055
|
-
player:AddRottenHearts(playerHealth.rottenHearts)
|
|
28055
|
+
player:AddRottenHearts(playerHealth.rottenHearts * 2)
|
|
28056
28056
|
if character == PlayerType.MAGDALENE_B then
|
|
28057
28057
|
____repeat(
|
|
28058
28058
|
nil,
|
|
@@ -161,7 +161,7 @@ function ____exports.setPlayerHealth(self, player, playerHealth)
|
|
|
161
161
|
until true
|
|
162
162
|
end
|
|
163
163
|
)
|
|
164
|
-
player:AddRottenHearts(playerHealth.rottenHearts)
|
|
164
|
+
player:AddRottenHearts(playerHealth.rottenHearts * 2)
|
|
165
165
|
if character == PlayerType.MAGDALENE_B then
|
|
166
166
|
____repeat(
|
|
167
167
|
nil,
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
export * from "./classes/DefaultMap";
|
|
2
|
+
export * from "./classes/ModFeature";
|
|
3
|
+
export * from "./classes/ModUpgraded";
|
|
4
|
+
export * from "./core/cachedClasses";
|
|
5
|
+
export * from "./core/constants";
|
|
6
|
+
export * from "./core/constantsFirstLast";
|
|
7
|
+
export * from "./core/upgradeMod";
|
|
8
|
+
export * from "./enums/AmbushType";
|
|
9
|
+
export * from "./enums/CornerType";
|
|
10
|
+
export * from "./enums/HealthType";
|
|
11
|
+
export * from "./enums/ISCFeature";
|
|
12
|
+
export * from "./enums/LadderSubTypeCustom";
|
|
13
|
+
export * from "./enums/ModCallbackCustom";
|
|
14
|
+
export * from "./enums/MysteriousPaperEffect";
|
|
15
|
+
export * from "./enums/PocketItemType";
|
|
16
|
+
export * from "./enums/RockAltType";
|
|
17
|
+
export * from "./enums/SaveDataKey";
|
|
18
|
+
export * from "./enums/SerializationType";
|
|
19
|
+
export * from "./enums/SlotDestructionType";
|
|
20
|
+
export * from "./enums/StatType";
|
|
21
|
+
export * from "./functions/ambush";
|
|
22
|
+
export * from "./functions/array";
|
|
23
|
+
export * from "./functions/arrayLua";
|
|
24
|
+
export * from "./functions/benchmark";
|
|
25
|
+
export * from "./functions/bitSet128";
|
|
26
|
+
export * from "./functions/bitwise";
|
|
27
|
+
export * from "./functions/bombs";
|
|
28
|
+
export * from "./functions/bosses";
|
|
29
|
+
export * from "./functions/cards";
|
|
30
|
+
export * from "./functions/challenges";
|
|
31
|
+
export * from "./functions/characters";
|
|
32
|
+
export * from "./functions/charge";
|
|
33
|
+
export * from "./functions/chargeBar";
|
|
34
|
+
export * from "./functions/collectibles";
|
|
35
|
+
export * from "./functions/collectibleTag";
|
|
36
|
+
export * from "./functions/color";
|
|
37
|
+
export * from "./functions/console";
|
|
38
|
+
export * from "./functions/curses";
|
|
39
|
+
export * from "./functions/debugFunctions";
|
|
40
|
+
export * from "./functions/decorators";
|
|
41
|
+
export * from "./functions/deepCopy";
|
|
42
|
+
export * from "./functions/deepCopyTests";
|
|
43
|
+
export * from "./functions/dimensions";
|
|
44
|
+
export * from "./functions/direction";
|
|
45
|
+
export * from "./functions/doors";
|
|
46
|
+
export * from "./functions/easing";
|
|
47
|
+
export * from "./functions/effects";
|
|
48
|
+
export * from "./functions/emptyRoom";
|
|
49
|
+
export * from "./functions/entities";
|
|
50
|
+
export * from "./functions/entitiesSpecific";
|
|
51
|
+
export * from "./functions/entityTypes";
|
|
52
|
+
export * from "./functions/enums";
|
|
53
|
+
export * from "./functions/familiars";
|
|
54
|
+
export * from "./functions/flag";
|
|
55
|
+
export * from "./functions/globals";
|
|
56
|
+
export * from "./functions/gridEntities";
|
|
57
|
+
export * from "./functions/gridEntitiesSpecific";
|
|
58
|
+
export * from "./functions/gridIndex";
|
|
59
|
+
export * from "./functions/hex";
|
|
60
|
+
export * from "./functions/initArray";
|
|
61
|
+
export * from "./functions/input";
|
|
62
|
+
export * from "./functions/isaacAPIClass";
|
|
63
|
+
export * from "./functions/itemPool";
|
|
64
|
+
export * from "./functions/jsonHelpers";
|
|
65
|
+
export * from "./functions/jsonRoom";
|
|
66
|
+
export * from "./functions/kColor";
|
|
67
|
+
export * from "./functions/language";
|
|
68
|
+
export * from "./functions/level";
|
|
69
|
+
export * from "./functions/levelGrid";
|
|
70
|
+
export * from "./functions/log";
|
|
71
|
+
export * from "./functions/logEntities";
|
|
72
|
+
export * from "./functions/logMisc";
|
|
73
|
+
export * from "./functions/map";
|
|
74
|
+
export * from "./functions/math";
|
|
75
|
+
export * from "./functions/merge";
|
|
76
|
+
export * from "./functions/mergeTests";
|
|
77
|
+
export * from "./functions/minimap";
|
|
78
|
+
export * from "./functions/modFeatures";
|
|
79
|
+
export * from "./functions/nextStage";
|
|
80
|
+
export * from "./functions/npcs";
|
|
81
|
+
export * from "./functions/pickups";
|
|
82
|
+
export * from "./functions/pickupsSpecific";
|
|
83
|
+
export * from "./functions/pickupVariants";
|
|
84
|
+
export * from "./functions/pills";
|
|
85
|
+
export * from "./functions/playerCenter";
|
|
86
|
+
export * from "./functions/playerDataStructures";
|
|
87
|
+
export * from "./functions/playerHealth";
|
|
88
|
+
export * from "./functions/playerIndex";
|
|
89
|
+
export * from "./functions/players";
|
|
90
|
+
export * from "./functions/playerStats";
|
|
91
|
+
export * from "./functions/pocketItems";
|
|
92
|
+
export * from "./functions/positionVelocity";
|
|
93
|
+
export * from "./functions/pressurePlate";
|
|
94
|
+
export * from "./functions/projectiles";
|
|
95
|
+
export * from "./functions/random";
|
|
96
|
+
export * from "./functions/readOnly";
|
|
97
|
+
export * from "./functions/revive";
|
|
98
|
+
export * from "./functions/rng";
|
|
99
|
+
export * from "./functions/rockAlt";
|
|
100
|
+
export * from "./functions/roomData";
|
|
101
|
+
export * from "./functions/roomGrid";
|
|
102
|
+
export * from "./functions/rooms";
|
|
103
|
+
export * from "./functions/roomShape";
|
|
104
|
+
export * from "./functions/roomShapeWalls";
|
|
105
|
+
export * from "./functions/roomTransition";
|
|
106
|
+
export * from "./functions/run";
|
|
107
|
+
export * from "./functions/seeds";
|
|
108
|
+
export * from "./functions/serialization";
|
|
109
|
+
export * from "./functions/set";
|
|
110
|
+
export * from "./functions/slots";
|
|
111
|
+
export * from "./functions/sort";
|
|
112
|
+
export * from "./functions/sound";
|
|
113
|
+
export * from "./functions/spawnCollectible";
|
|
114
|
+
export * from "./functions/sprites";
|
|
115
|
+
export * from "./functions/stage";
|
|
116
|
+
export * from "./functions/stats";
|
|
117
|
+
export * from "./functions/string";
|
|
118
|
+
export * from "./functions/table";
|
|
119
|
+
export * from "./functions/tears";
|
|
120
|
+
export * from "./functions/transformations";
|
|
121
|
+
export * from "./functions/trinketGive";
|
|
122
|
+
export * from "./functions/trinkets";
|
|
123
|
+
export * from "./functions/tstlClass";
|
|
124
|
+
export * from "./functions/types";
|
|
125
|
+
export * from "./functions/ui";
|
|
126
|
+
export * from "./functions/utils";
|
|
127
|
+
export * from "./functions/vector";
|
|
128
|
+
export * from "./functions/weighted";
|
|
129
|
+
export * from "./interfaces/ChargeBarSprites";
|
|
130
|
+
export * from "./interfaces/Corner";
|
|
131
|
+
export * from "./interfaces/CustomStageTSConfig";
|
|
132
|
+
export * from "./interfaces/GridEntityCustomData";
|
|
133
|
+
export * from "./interfaces/JSONRoomsFile";
|
|
134
|
+
export * from "./interfaces/PlayerHealth";
|
|
135
|
+
export * from "./interfaces/PocketItemDescription";
|
|
136
|
+
export * from "./interfaces/RoomDescription";
|
|
137
|
+
export * from "./interfaces/SaveData";
|
|
138
|
+
export * from "./interfaces/StatTypeType";
|
|
139
|
+
export * from "./interfaces/TrinketSituation";
|
|
140
|
+
export * from "./interfaces/TSTLClassMetatable";
|
|
141
|
+
export * from "./maps/cardNameToTypeMap";
|
|
142
|
+
export * from "./maps/characterNameToTypeMap";
|
|
143
|
+
export * from "./maps/pillNameToEffectMap";
|
|
144
|
+
export * from "./maps/roomNameToTypeMap";
|
|
145
|
+
export * from "./maps/transformationNameToPlayerFormMap";
|
|
146
|
+
export * from "./objects/colors";
|
|
147
|
+
export * from "./objects/kColors";
|
|
148
|
+
export * from "./types/AllButFirst";
|
|
149
|
+
export * from "./types/AllButLast";
|
|
150
|
+
export * from "./types/AnyClass";
|
|
151
|
+
export * from "./types/AnyEntity";
|
|
152
|
+
export * from "./types/AnyFunction";
|
|
153
|
+
export * from "./types/AnyGridEntity";
|
|
154
|
+
export * from "./types/ConversionHeartSubType";
|
|
155
|
+
export * from "./types/Decrement";
|
|
156
|
+
export * from "./types/EntityID";
|
|
157
|
+
export * from "./types/FunctionTuple";
|
|
158
|
+
export * from "./types/GridEntityID";
|
|
159
|
+
export * from "./types/HasFunction";
|
|
160
|
+
export * from "./types/Immutable";
|
|
161
|
+
export * from "./types/Increment";
|
|
162
|
+
export * from "./types/LowercaseKeys";
|
|
163
|
+
export * from "./types/NaturalNumbersLessThan";
|
|
164
|
+
export * from "./types/NaturalNumbersLessThanOrEqualTo";
|
|
165
|
+
export * from "./types/PickingUpItem";
|
|
166
|
+
export * from "./types/PickupIndex";
|
|
167
|
+
export * from "./types/PlayerIndex";
|
|
168
|
+
export * from "./types/PossibleStatType";
|
|
169
|
+
export * from "./types/PublicInterface";
|
|
170
|
+
export * from "./types/Range";
|
|
171
|
+
export * from "./types/ReadonlyMap";
|
|
172
|
+
export * from "./types/ReadonlySet";
|
|
173
|
+
export * from "./types/StartsWithLowercase";
|
|
174
|
+
export * from "./types/StartsWithUppercase";
|
|
175
|
+
export * from "./types/TSTLClass";
|
|
176
|
+
export * from "./types/Tuple";
|
|
177
|
+
export * from "./types/TupleToIntersection";
|
|
178
|
+
export * from "./types/TupleToUnion";
|
|
179
|
+
export * from "./types/TupleWithMaxLength";
|
|
180
|
+
export * from "./types/UnionToIntersection";
|
|
181
|
+
export * from "./types/UppercaseKeys";
|
|
182
|
+
export * from "./types/WeightedArray";
|
|
183
|
+
export * from "./types/Writable";
|
|
184
|
+
export * from "isaac-typescript-definitions";
|
|
185
|
+
//# sourceMappingURL=indexLua.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"indexLua.d.ts","sourceRoot":"","sources":["../../../../../packages/isaacscript-common/src/indexLua.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,1114 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
do
|
|
3
|
+
local ____export = require("src.classes.DefaultMap")
|
|
4
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
5
|
+
if ____exportKey ~= "default" then
|
|
6
|
+
____exports[____exportKey] = ____exportValue
|
|
7
|
+
end
|
|
8
|
+
end
|
|
9
|
+
end
|
|
10
|
+
do
|
|
11
|
+
local ____export = require("src.classes.ModFeature")
|
|
12
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
13
|
+
if ____exportKey ~= "default" then
|
|
14
|
+
____exports[____exportKey] = ____exportValue
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
do
|
|
19
|
+
local ____export = require("src.classes.ModUpgraded")
|
|
20
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
21
|
+
if ____exportKey ~= "default" then
|
|
22
|
+
____exports[____exportKey] = ____exportValue
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
do
|
|
27
|
+
local ____export = require("src.core.cachedClasses")
|
|
28
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
29
|
+
if ____exportKey ~= "default" then
|
|
30
|
+
____exports[____exportKey] = ____exportValue
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
do
|
|
35
|
+
local ____export = require("src.core.constants")
|
|
36
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
37
|
+
if ____exportKey ~= "default" then
|
|
38
|
+
____exports[____exportKey] = ____exportValue
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
do
|
|
43
|
+
local ____export = require("src.core.constantsFirstLast")
|
|
44
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
45
|
+
if ____exportKey ~= "default" then
|
|
46
|
+
____exports[____exportKey] = ____exportValue
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
do
|
|
51
|
+
local ____export = require("src.core.upgradeMod")
|
|
52
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
53
|
+
if ____exportKey ~= "default" then
|
|
54
|
+
____exports[____exportKey] = ____exportValue
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
do
|
|
59
|
+
local ____export = require("src.enums.AmbushType")
|
|
60
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
61
|
+
if ____exportKey ~= "default" then
|
|
62
|
+
____exports[____exportKey] = ____exportValue
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
do
|
|
67
|
+
local ____export = require("src.enums.CornerType")
|
|
68
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
69
|
+
if ____exportKey ~= "default" then
|
|
70
|
+
____exports[____exportKey] = ____exportValue
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
do
|
|
75
|
+
local ____export = require("src.enums.HealthType")
|
|
76
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
77
|
+
if ____exportKey ~= "default" then
|
|
78
|
+
____exports[____exportKey] = ____exportValue
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
do
|
|
83
|
+
local ____export = require("src.enums.ISCFeature")
|
|
84
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
85
|
+
if ____exportKey ~= "default" then
|
|
86
|
+
____exports[____exportKey] = ____exportValue
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
do
|
|
91
|
+
local ____export = require("src.enums.LadderSubTypeCustom")
|
|
92
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
93
|
+
if ____exportKey ~= "default" then
|
|
94
|
+
____exports[____exportKey] = ____exportValue
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
do
|
|
99
|
+
local ____export = require("src.enums.ModCallbackCustom")
|
|
100
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
101
|
+
if ____exportKey ~= "default" then
|
|
102
|
+
____exports[____exportKey] = ____exportValue
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
do
|
|
107
|
+
local ____export = require("src.enums.MysteriousPaperEffect")
|
|
108
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
109
|
+
if ____exportKey ~= "default" then
|
|
110
|
+
____exports[____exportKey] = ____exportValue
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
do
|
|
115
|
+
local ____export = require("src.enums.PocketItemType")
|
|
116
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
117
|
+
if ____exportKey ~= "default" then
|
|
118
|
+
____exports[____exportKey] = ____exportValue
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
do
|
|
123
|
+
local ____export = require("src.enums.RockAltType")
|
|
124
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
125
|
+
if ____exportKey ~= "default" then
|
|
126
|
+
____exports[____exportKey] = ____exportValue
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
do
|
|
131
|
+
local ____export = require("src.enums.SaveDataKey")
|
|
132
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
133
|
+
if ____exportKey ~= "default" then
|
|
134
|
+
____exports[____exportKey] = ____exportValue
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
do
|
|
139
|
+
local ____export = require("src.enums.SerializationType")
|
|
140
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
141
|
+
if ____exportKey ~= "default" then
|
|
142
|
+
____exports[____exportKey] = ____exportValue
|
|
143
|
+
end
|
|
144
|
+
end
|
|
145
|
+
end
|
|
146
|
+
do
|
|
147
|
+
local ____export = require("src.enums.SlotDestructionType")
|
|
148
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
149
|
+
if ____exportKey ~= "default" then
|
|
150
|
+
____exports[____exportKey] = ____exportValue
|
|
151
|
+
end
|
|
152
|
+
end
|
|
153
|
+
end
|
|
154
|
+
do
|
|
155
|
+
local ____export = require("src.enums.StatType")
|
|
156
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
157
|
+
if ____exportKey ~= "default" then
|
|
158
|
+
____exports[____exportKey] = ____exportValue
|
|
159
|
+
end
|
|
160
|
+
end
|
|
161
|
+
end
|
|
162
|
+
do
|
|
163
|
+
local ____export = require("src.functions.ambush")
|
|
164
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
165
|
+
if ____exportKey ~= "default" then
|
|
166
|
+
____exports[____exportKey] = ____exportValue
|
|
167
|
+
end
|
|
168
|
+
end
|
|
169
|
+
end
|
|
170
|
+
do
|
|
171
|
+
local ____export = require("src.functions.array")
|
|
172
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
173
|
+
if ____exportKey ~= "default" then
|
|
174
|
+
____exports[____exportKey] = ____exportValue
|
|
175
|
+
end
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
do
|
|
179
|
+
local ____export = require("src.functions.arrayLua")
|
|
180
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
181
|
+
if ____exportKey ~= "default" then
|
|
182
|
+
____exports[____exportKey] = ____exportValue
|
|
183
|
+
end
|
|
184
|
+
end
|
|
185
|
+
end
|
|
186
|
+
do
|
|
187
|
+
local ____export = require("src.functions.benchmark")
|
|
188
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
189
|
+
if ____exportKey ~= "default" then
|
|
190
|
+
____exports[____exportKey] = ____exportValue
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
do
|
|
195
|
+
local ____export = require("src.functions.bitSet128")
|
|
196
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
197
|
+
if ____exportKey ~= "default" then
|
|
198
|
+
____exports[____exportKey] = ____exportValue
|
|
199
|
+
end
|
|
200
|
+
end
|
|
201
|
+
end
|
|
202
|
+
do
|
|
203
|
+
local ____export = require("src.functions.bitwise")
|
|
204
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
205
|
+
if ____exportKey ~= "default" then
|
|
206
|
+
____exports[____exportKey] = ____exportValue
|
|
207
|
+
end
|
|
208
|
+
end
|
|
209
|
+
end
|
|
210
|
+
do
|
|
211
|
+
local ____export = require("src.functions.bombs")
|
|
212
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
213
|
+
if ____exportKey ~= "default" then
|
|
214
|
+
____exports[____exportKey] = ____exportValue
|
|
215
|
+
end
|
|
216
|
+
end
|
|
217
|
+
end
|
|
218
|
+
do
|
|
219
|
+
local ____export = require("src.functions.bosses")
|
|
220
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
221
|
+
if ____exportKey ~= "default" then
|
|
222
|
+
____exports[____exportKey] = ____exportValue
|
|
223
|
+
end
|
|
224
|
+
end
|
|
225
|
+
end
|
|
226
|
+
do
|
|
227
|
+
local ____export = require("src.functions.cards")
|
|
228
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
229
|
+
if ____exportKey ~= "default" then
|
|
230
|
+
____exports[____exportKey] = ____exportValue
|
|
231
|
+
end
|
|
232
|
+
end
|
|
233
|
+
end
|
|
234
|
+
do
|
|
235
|
+
local ____export = require("src.functions.challenges")
|
|
236
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
237
|
+
if ____exportKey ~= "default" then
|
|
238
|
+
____exports[____exportKey] = ____exportValue
|
|
239
|
+
end
|
|
240
|
+
end
|
|
241
|
+
end
|
|
242
|
+
do
|
|
243
|
+
local ____export = require("src.functions.characters")
|
|
244
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
245
|
+
if ____exportKey ~= "default" then
|
|
246
|
+
____exports[____exportKey] = ____exportValue
|
|
247
|
+
end
|
|
248
|
+
end
|
|
249
|
+
end
|
|
250
|
+
do
|
|
251
|
+
local ____export = require("src.functions.charge")
|
|
252
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
253
|
+
if ____exportKey ~= "default" then
|
|
254
|
+
____exports[____exportKey] = ____exportValue
|
|
255
|
+
end
|
|
256
|
+
end
|
|
257
|
+
end
|
|
258
|
+
do
|
|
259
|
+
local ____export = require("src.functions.chargeBar")
|
|
260
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
261
|
+
if ____exportKey ~= "default" then
|
|
262
|
+
____exports[____exportKey] = ____exportValue
|
|
263
|
+
end
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
do
|
|
267
|
+
local ____export = require("src.functions.collectibles")
|
|
268
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
269
|
+
if ____exportKey ~= "default" then
|
|
270
|
+
____exports[____exportKey] = ____exportValue
|
|
271
|
+
end
|
|
272
|
+
end
|
|
273
|
+
end
|
|
274
|
+
do
|
|
275
|
+
local ____export = require("src.functions.collectibleTag")
|
|
276
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
277
|
+
if ____exportKey ~= "default" then
|
|
278
|
+
____exports[____exportKey] = ____exportValue
|
|
279
|
+
end
|
|
280
|
+
end
|
|
281
|
+
end
|
|
282
|
+
do
|
|
283
|
+
local ____export = require("src.functions.color")
|
|
284
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
285
|
+
if ____exportKey ~= "default" then
|
|
286
|
+
____exports[____exportKey] = ____exportValue
|
|
287
|
+
end
|
|
288
|
+
end
|
|
289
|
+
end
|
|
290
|
+
do
|
|
291
|
+
local ____export = require("src.functions.console")
|
|
292
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
293
|
+
if ____exportKey ~= "default" then
|
|
294
|
+
____exports[____exportKey] = ____exportValue
|
|
295
|
+
end
|
|
296
|
+
end
|
|
297
|
+
end
|
|
298
|
+
do
|
|
299
|
+
local ____export = require("src.functions.curses")
|
|
300
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
301
|
+
if ____exportKey ~= "default" then
|
|
302
|
+
____exports[____exportKey] = ____exportValue
|
|
303
|
+
end
|
|
304
|
+
end
|
|
305
|
+
end
|
|
306
|
+
do
|
|
307
|
+
local ____export = require("src.functions.debugFunctions")
|
|
308
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
309
|
+
if ____exportKey ~= "default" then
|
|
310
|
+
____exports[____exportKey] = ____exportValue
|
|
311
|
+
end
|
|
312
|
+
end
|
|
313
|
+
end
|
|
314
|
+
do
|
|
315
|
+
local ____export = require("src.functions.decorators")
|
|
316
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
317
|
+
if ____exportKey ~= "default" then
|
|
318
|
+
____exports[____exportKey] = ____exportValue
|
|
319
|
+
end
|
|
320
|
+
end
|
|
321
|
+
end
|
|
322
|
+
do
|
|
323
|
+
local ____export = require("src.functions.deepCopy")
|
|
324
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
325
|
+
if ____exportKey ~= "default" then
|
|
326
|
+
____exports[____exportKey] = ____exportValue
|
|
327
|
+
end
|
|
328
|
+
end
|
|
329
|
+
end
|
|
330
|
+
do
|
|
331
|
+
local ____export = require("src.functions.deepCopyTests")
|
|
332
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
333
|
+
if ____exportKey ~= "default" then
|
|
334
|
+
____exports[____exportKey] = ____exportValue
|
|
335
|
+
end
|
|
336
|
+
end
|
|
337
|
+
end
|
|
338
|
+
do
|
|
339
|
+
local ____export = require("src.functions.dimensions")
|
|
340
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
341
|
+
if ____exportKey ~= "default" then
|
|
342
|
+
____exports[____exportKey] = ____exportValue
|
|
343
|
+
end
|
|
344
|
+
end
|
|
345
|
+
end
|
|
346
|
+
do
|
|
347
|
+
local ____export = require("src.functions.direction")
|
|
348
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
349
|
+
if ____exportKey ~= "default" then
|
|
350
|
+
____exports[____exportKey] = ____exportValue
|
|
351
|
+
end
|
|
352
|
+
end
|
|
353
|
+
end
|
|
354
|
+
do
|
|
355
|
+
local ____export = require("src.functions.doors")
|
|
356
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
357
|
+
if ____exportKey ~= "default" then
|
|
358
|
+
____exports[____exportKey] = ____exportValue
|
|
359
|
+
end
|
|
360
|
+
end
|
|
361
|
+
end
|
|
362
|
+
do
|
|
363
|
+
local ____export = require("src.functions.easing")
|
|
364
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
365
|
+
if ____exportKey ~= "default" then
|
|
366
|
+
____exports[____exportKey] = ____exportValue
|
|
367
|
+
end
|
|
368
|
+
end
|
|
369
|
+
end
|
|
370
|
+
do
|
|
371
|
+
local ____export = require("src.functions.effects")
|
|
372
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
373
|
+
if ____exportKey ~= "default" then
|
|
374
|
+
____exports[____exportKey] = ____exportValue
|
|
375
|
+
end
|
|
376
|
+
end
|
|
377
|
+
end
|
|
378
|
+
do
|
|
379
|
+
local ____export = require("src.functions.emptyRoom")
|
|
380
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
381
|
+
if ____exportKey ~= "default" then
|
|
382
|
+
____exports[____exportKey] = ____exportValue
|
|
383
|
+
end
|
|
384
|
+
end
|
|
385
|
+
end
|
|
386
|
+
do
|
|
387
|
+
local ____export = require("src.functions.entities")
|
|
388
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
389
|
+
if ____exportKey ~= "default" then
|
|
390
|
+
____exports[____exportKey] = ____exportValue
|
|
391
|
+
end
|
|
392
|
+
end
|
|
393
|
+
end
|
|
394
|
+
do
|
|
395
|
+
local ____export = require("src.functions.entitiesSpecific")
|
|
396
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
397
|
+
if ____exportKey ~= "default" then
|
|
398
|
+
____exports[____exportKey] = ____exportValue
|
|
399
|
+
end
|
|
400
|
+
end
|
|
401
|
+
end
|
|
402
|
+
do
|
|
403
|
+
local ____export = require("src.functions.entityTypes")
|
|
404
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
405
|
+
if ____exportKey ~= "default" then
|
|
406
|
+
____exports[____exportKey] = ____exportValue
|
|
407
|
+
end
|
|
408
|
+
end
|
|
409
|
+
end
|
|
410
|
+
do
|
|
411
|
+
local ____export = require("src.functions.enums")
|
|
412
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
413
|
+
if ____exportKey ~= "default" then
|
|
414
|
+
____exports[____exportKey] = ____exportValue
|
|
415
|
+
end
|
|
416
|
+
end
|
|
417
|
+
end
|
|
418
|
+
do
|
|
419
|
+
local ____export = require("src.functions.familiars")
|
|
420
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
421
|
+
if ____exportKey ~= "default" then
|
|
422
|
+
____exports[____exportKey] = ____exportValue
|
|
423
|
+
end
|
|
424
|
+
end
|
|
425
|
+
end
|
|
426
|
+
do
|
|
427
|
+
local ____export = require("src.functions.flag")
|
|
428
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
429
|
+
if ____exportKey ~= "default" then
|
|
430
|
+
____exports[____exportKey] = ____exportValue
|
|
431
|
+
end
|
|
432
|
+
end
|
|
433
|
+
end
|
|
434
|
+
do
|
|
435
|
+
local ____export = require("src.functions.globals")
|
|
436
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
437
|
+
if ____exportKey ~= "default" then
|
|
438
|
+
____exports[____exportKey] = ____exportValue
|
|
439
|
+
end
|
|
440
|
+
end
|
|
441
|
+
end
|
|
442
|
+
do
|
|
443
|
+
local ____export = require("src.functions.gridEntities")
|
|
444
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
445
|
+
if ____exportKey ~= "default" then
|
|
446
|
+
____exports[____exportKey] = ____exportValue
|
|
447
|
+
end
|
|
448
|
+
end
|
|
449
|
+
end
|
|
450
|
+
do
|
|
451
|
+
local ____export = require("src.functions.gridEntitiesSpecific")
|
|
452
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
453
|
+
if ____exportKey ~= "default" then
|
|
454
|
+
____exports[____exportKey] = ____exportValue
|
|
455
|
+
end
|
|
456
|
+
end
|
|
457
|
+
end
|
|
458
|
+
do
|
|
459
|
+
local ____export = require("src.functions.gridIndex")
|
|
460
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
461
|
+
if ____exportKey ~= "default" then
|
|
462
|
+
____exports[____exportKey] = ____exportValue
|
|
463
|
+
end
|
|
464
|
+
end
|
|
465
|
+
end
|
|
466
|
+
do
|
|
467
|
+
local ____export = require("src.functions.hex")
|
|
468
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
469
|
+
if ____exportKey ~= "default" then
|
|
470
|
+
____exports[____exportKey] = ____exportValue
|
|
471
|
+
end
|
|
472
|
+
end
|
|
473
|
+
end
|
|
474
|
+
do
|
|
475
|
+
local ____export = require("src.functions.initArray")
|
|
476
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
477
|
+
if ____exportKey ~= "default" then
|
|
478
|
+
____exports[____exportKey] = ____exportValue
|
|
479
|
+
end
|
|
480
|
+
end
|
|
481
|
+
end
|
|
482
|
+
do
|
|
483
|
+
local ____export = require("src.functions.input")
|
|
484
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
485
|
+
if ____exportKey ~= "default" then
|
|
486
|
+
____exports[____exportKey] = ____exportValue
|
|
487
|
+
end
|
|
488
|
+
end
|
|
489
|
+
end
|
|
490
|
+
do
|
|
491
|
+
local ____export = require("src.functions.isaacAPIClass")
|
|
492
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
493
|
+
if ____exportKey ~= "default" then
|
|
494
|
+
____exports[____exportKey] = ____exportValue
|
|
495
|
+
end
|
|
496
|
+
end
|
|
497
|
+
end
|
|
498
|
+
do
|
|
499
|
+
local ____export = require("src.functions.itemPool")
|
|
500
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
501
|
+
if ____exportKey ~= "default" then
|
|
502
|
+
____exports[____exportKey] = ____exportValue
|
|
503
|
+
end
|
|
504
|
+
end
|
|
505
|
+
end
|
|
506
|
+
do
|
|
507
|
+
local ____export = require("src.functions.jsonHelpers")
|
|
508
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
509
|
+
if ____exportKey ~= "default" then
|
|
510
|
+
____exports[____exportKey] = ____exportValue
|
|
511
|
+
end
|
|
512
|
+
end
|
|
513
|
+
end
|
|
514
|
+
do
|
|
515
|
+
local ____export = require("src.functions.jsonRoom")
|
|
516
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
517
|
+
if ____exportKey ~= "default" then
|
|
518
|
+
____exports[____exportKey] = ____exportValue
|
|
519
|
+
end
|
|
520
|
+
end
|
|
521
|
+
end
|
|
522
|
+
do
|
|
523
|
+
local ____export = require("src.functions.kColor")
|
|
524
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
525
|
+
if ____exportKey ~= "default" then
|
|
526
|
+
____exports[____exportKey] = ____exportValue
|
|
527
|
+
end
|
|
528
|
+
end
|
|
529
|
+
end
|
|
530
|
+
do
|
|
531
|
+
local ____export = require("src.functions.language")
|
|
532
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
533
|
+
if ____exportKey ~= "default" then
|
|
534
|
+
____exports[____exportKey] = ____exportValue
|
|
535
|
+
end
|
|
536
|
+
end
|
|
537
|
+
end
|
|
538
|
+
do
|
|
539
|
+
local ____export = require("src.functions.level")
|
|
540
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
541
|
+
if ____exportKey ~= "default" then
|
|
542
|
+
____exports[____exportKey] = ____exportValue
|
|
543
|
+
end
|
|
544
|
+
end
|
|
545
|
+
end
|
|
546
|
+
do
|
|
547
|
+
local ____export = require("src.functions.levelGrid")
|
|
548
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
549
|
+
if ____exportKey ~= "default" then
|
|
550
|
+
____exports[____exportKey] = ____exportValue
|
|
551
|
+
end
|
|
552
|
+
end
|
|
553
|
+
end
|
|
554
|
+
do
|
|
555
|
+
local ____export = require("src.functions.log")
|
|
556
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
557
|
+
if ____exportKey ~= "default" then
|
|
558
|
+
____exports[____exportKey] = ____exportValue
|
|
559
|
+
end
|
|
560
|
+
end
|
|
561
|
+
end
|
|
562
|
+
do
|
|
563
|
+
local ____export = require("src.functions.logEntities")
|
|
564
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
565
|
+
if ____exportKey ~= "default" then
|
|
566
|
+
____exports[____exportKey] = ____exportValue
|
|
567
|
+
end
|
|
568
|
+
end
|
|
569
|
+
end
|
|
570
|
+
do
|
|
571
|
+
local ____export = require("src.functions.logMisc")
|
|
572
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
573
|
+
if ____exportKey ~= "default" then
|
|
574
|
+
____exports[____exportKey] = ____exportValue
|
|
575
|
+
end
|
|
576
|
+
end
|
|
577
|
+
end
|
|
578
|
+
do
|
|
579
|
+
local ____export = require("src.functions.map")
|
|
580
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
581
|
+
if ____exportKey ~= "default" then
|
|
582
|
+
____exports[____exportKey] = ____exportValue
|
|
583
|
+
end
|
|
584
|
+
end
|
|
585
|
+
end
|
|
586
|
+
do
|
|
587
|
+
local ____export = require("src.functions.math")
|
|
588
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
589
|
+
if ____exportKey ~= "default" then
|
|
590
|
+
____exports[____exportKey] = ____exportValue
|
|
591
|
+
end
|
|
592
|
+
end
|
|
593
|
+
end
|
|
594
|
+
do
|
|
595
|
+
local ____export = require("src.functions.merge")
|
|
596
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
597
|
+
if ____exportKey ~= "default" then
|
|
598
|
+
____exports[____exportKey] = ____exportValue
|
|
599
|
+
end
|
|
600
|
+
end
|
|
601
|
+
end
|
|
602
|
+
do
|
|
603
|
+
local ____export = require("src.functions.mergeTests")
|
|
604
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
605
|
+
if ____exportKey ~= "default" then
|
|
606
|
+
____exports[____exportKey] = ____exportValue
|
|
607
|
+
end
|
|
608
|
+
end
|
|
609
|
+
end
|
|
610
|
+
do
|
|
611
|
+
local ____export = require("src.functions.minimap")
|
|
612
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
613
|
+
if ____exportKey ~= "default" then
|
|
614
|
+
____exports[____exportKey] = ____exportValue
|
|
615
|
+
end
|
|
616
|
+
end
|
|
617
|
+
end
|
|
618
|
+
do
|
|
619
|
+
local ____export = require("src.functions.modFeatures")
|
|
620
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
621
|
+
if ____exportKey ~= "default" then
|
|
622
|
+
____exports[____exportKey] = ____exportValue
|
|
623
|
+
end
|
|
624
|
+
end
|
|
625
|
+
end
|
|
626
|
+
do
|
|
627
|
+
local ____export = require("src.functions.nextStage")
|
|
628
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
629
|
+
if ____exportKey ~= "default" then
|
|
630
|
+
____exports[____exportKey] = ____exportValue
|
|
631
|
+
end
|
|
632
|
+
end
|
|
633
|
+
end
|
|
634
|
+
do
|
|
635
|
+
local ____export = require("src.functions.npcs")
|
|
636
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
637
|
+
if ____exportKey ~= "default" then
|
|
638
|
+
____exports[____exportKey] = ____exportValue
|
|
639
|
+
end
|
|
640
|
+
end
|
|
641
|
+
end
|
|
642
|
+
do
|
|
643
|
+
local ____export = require("src.functions.pickups")
|
|
644
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
645
|
+
if ____exportKey ~= "default" then
|
|
646
|
+
____exports[____exportKey] = ____exportValue
|
|
647
|
+
end
|
|
648
|
+
end
|
|
649
|
+
end
|
|
650
|
+
do
|
|
651
|
+
local ____export = require("src.functions.pickupsSpecific")
|
|
652
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
653
|
+
if ____exportKey ~= "default" then
|
|
654
|
+
____exports[____exportKey] = ____exportValue
|
|
655
|
+
end
|
|
656
|
+
end
|
|
657
|
+
end
|
|
658
|
+
do
|
|
659
|
+
local ____export = require("src.functions.pickupVariants")
|
|
660
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
661
|
+
if ____exportKey ~= "default" then
|
|
662
|
+
____exports[____exportKey] = ____exportValue
|
|
663
|
+
end
|
|
664
|
+
end
|
|
665
|
+
end
|
|
666
|
+
do
|
|
667
|
+
local ____export = require("src.functions.pills")
|
|
668
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
669
|
+
if ____exportKey ~= "default" then
|
|
670
|
+
____exports[____exportKey] = ____exportValue
|
|
671
|
+
end
|
|
672
|
+
end
|
|
673
|
+
end
|
|
674
|
+
do
|
|
675
|
+
local ____export = require("src.functions.playerCenter")
|
|
676
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
677
|
+
if ____exportKey ~= "default" then
|
|
678
|
+
____exports[____exportKey] = ____exportValue
|
|
679
|
+
end
|
|
680
|
+
end
|
|
681
|
+
end
|
|
682
|
+
do
|
|
683
|
+
local ____export = require("src.functions.playerDataStructures")
|
|
684
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
685
|
+
if ____exportKey ~= "default" then
|
|
686
|
+
____exports[____exportKey] = ____exportValue
|
|
687
|
+
end
|
|
688
|
+
end
|
|
689
|
+
end
|
|
690
|
+
do
|
|
691
|
+
local ____export = require("src.functions.playerHealth")
|
|
692
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
693
|
+
if ____exportKey ~= "default" then
|
|
694
|
+
____exports[____exportKey] = ____exportValue
|
|
695
|
+
end
|
|
696
|
+
end
|
|
697
|
+
end
|
|
698
|
+
do
|
|
699
|
+
local ____export = require("src.functions.playerIndex")
|
|
700
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
701
|
+
if ____exportKey ~= "default" then
|
|
702
|
+
____exports[____exportKey] = ____exportValue
|
|
703
|
+
end
|
|
704
|
+
end
|
|
705
|
+
end
|
|
706
|
+
do
|
|
707
|
+
local ____export = require("src.functions.players")
|
|
708
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
709
|
+
if ____exportKey ~= "default" then
|
|
710
|
+
____exports[____exportKey] = ____exportValue
|
|
711
|
+
end
|
|
712
|
+
end
|
|
713
|
+
end
|
|
714
|
+
do
|
|
715
|
+
local ____export = require("src.functions.playerStats")
|
|
716
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
717
|
+
if ____exportKey ~= "default" then
|
|
718
|
+
____exports[____exportKey] = ____exportValue
|
|
719
|
+
end
|
|
720
|
+
end
|
|
721
|
+
end
|
|
722
|
+
do
|
|
723
|
+
local ____export = require("src.functions.pocketItems")
|
|
724
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
725
|
+
if ____exportKey ~= "default" then
|
|
726
|
+
____exports[____exportKey] = ____exportValue
|
|
727
|
+
end
|
|
728
|
+
end
|
|
729
|
+
end
|
|
730
|
+
do
|
|
731
|
+
local ____export = require("src.functions.positionVelocity")
|
|
732
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
733
|
+
if ____exportKey ~= "default" then
|
|
734
|
+
____exports[____exportKey] = ____exportValue
|
|
735
|
+
end
|
|
736
|
+
end
|
|
737
|
+
end
|
|
738
|
+
do
|
|
739
|
+
local ____export = require("src.functions.pressurePlate")
|
|
740
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
741
|
+
if ____exportKey ~= "default" then
|
|
742
|
+
____exports[____exportKey] = ____exportValue
|
|
743
|
+
end
|
|
744
|
+
end
|
|
745
|
+
end
|
|
746
|
+
do
|
|
747
|
+
local ____export = require("src.functions.projectiles")
|
|
748
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
749
|
+
if ____exportKey ~= "default" then
|
|
750
|
+
____exports[____exportKey] = ____exportValue
|
|
751
|
+
end
|
|
752
|
+
end
|
|
753
|
+
end
|
|
754
|
+
do
|
|
755
|
+
local ____export = require("src.functions.random")
|
|
756
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
757
|
+
if ____exportKey ~= "default" then
|
|
758
|
+
____exports[____exportKey] = ____exportValue
|
|
759
|
+
end
|
|
760
|
+
end
|
|
761
|
+
end
|
|
762
|
+
do
|
|
763
|
+
local ____export = require("src.functions.readOnly")
|
|
764
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
765
|
+
if ____exportKey ~= "default" then
|
|
766
|
+
____exports[____exportKey] = ____exportValue
|
|
767
|
+
end
|
|
768
|
+
end
|
|
769
|
+
end
|
|
770
|
+
do
|
|
771
|
+
local ____export = require("src.functions.revive")
|
|
772
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
773
|
+
if ____exportKey ~= "default" then
|
|
774
|
+
____exports[____exportKey] = ____exportValue
|
|
775
|
+
end
|
|
776
|
+
end
|
|
777
|
+
end
|
|
778
|
+
do
|
|
779
|
+
local ____export = require("src.functions.rng")
|
|
780
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
781
|
+
if ____exportKey ~= "default" then
|
|
782
|
+
____exports[____exportKey] = ____exportValue
|
|
783
|
+
end
|
|
784
|
+
end
|
|
785
|
+
end
|
|
786
|
+
do
|
|
787
|
+
local ____export = require("src.functions.rockAlt")
|
|
788
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
789
|
+
if ____exportKey ~= "default" then
|
|
790
|
+
____exports[____exportKey] = ____exportValue
|
|
791
|
+
end
|
|
792
|
+
end
|
|
793
|
+
end
|
|
794
|
+
do
|
|
795
|
+
local ____export = require("src.functions.roomData")
|
|
796
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
797
|
+
if ____exportKey ~= "default" then
|
|
798
|
+
____exports[____exportKey] = ____exportValue
|
|
799
|
+
end
|
|
800
|
+
end
|
|
801
|
+
end
|
|
802
|
+
do
|
|
803
|
+
local ____export = require("src.functions.roomGrid")
|
|
804
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
805
|
+
if ____exportKey ~= "default" then
|
|
806
|
+
____exports[____exportKey] = ____exportValue
|
|
807
|
+
end
|
|
808
|
+
end
|
|
809
|
+
end
|
|
810
|
+
do
|
|
811
|
+
local ____export = require("src.functions.rooms")
|
|
812
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
813
|
+
if ____exportKey ~= "default" then
|
|
814
|
+
____exports[____exportKey] = ____exportValue
|
|
815
|
+
end
|
|
816
|
+
end
|
|
817
|
+
end
|
|
818
|
+
do
|
|
819
|
+
local ____export = require("src.functions.roomShape")
|
|
820
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
821
|
+
if ____exportKey ~= "default" then
|
|
822
|
+
____exports[____exportKey] = ____exportValue
|
|
823
|
+
end
|
|
824
|
+
end
|
|
825
|
+
end
|
|
826
|
+
do
|
|
827
|
+
local ____export = require("src.functions.roomShapeWalls")
|
|
828
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
829
|
+
if ____exportKey ~= "default" then
|
|
830
|
+
____exports[____exportKey] = ____exportValue
|
|
831
|
+
end
|
|
832
|
+
end
|
|
833
|
+
end
|
|
834
|
+
do
|
|
835
|
+
local ____export = require("src.functions.roomTransition")
|
|
836
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
837
|
+
if ____exportKey ~= "default" then
|
|
838
|
+
____exports[____exportKey] = ____exportValue
|
|
839
|
+
end
|
|
840
|
+
end
|
|
841
|
+
end
|
|
842
|
+
do
|
|
843
|
+
local ____export = require("src.functions.run")
|
|
844
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
845
|
+
if ____exportKey ~= "default" then
|
|
846
|
+
____exports[____exportKey] = ____exportValue
|
|
847
|
+
end
|
|
848
|
+
end
|
|
849
|
+
end
|
|
850
|
+
do
|
|
851
|
+
local ____export = require("src.functions.seeds")
|
|
852
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
853
|
+
if ____exportKey ~= "default" then
|
|
854
|
+
____exports[____exportKey] = ____exportValue
|
|
855
|
+
end
|
|
856
|
+
end
|
|
857
|
+
end
|
|
858
|
+
do
|
|
859
|
+
local ____export = require("src.functions.serialization")
|
|
860
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
861
|
+
if ____exportKey ~= "default" then
|
|
862
|
+
____exports[____exportKey] = ____exportValue
|
|
863
|
+
end
|
|
864
|
+
end
|
|
865
|
+
end
|
|
866
|
+
do
|
|
867
|
+
local ____export = require("src.functions.set")
|
|
868
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
869
|
+
if ____exportKey ~= "default" then
|
|
870
|
+
____exports[____exportKey] = ____exportValue
|
|
871
|
+
end
|
|
872
|
+
end
|
|
873
|
+
end
|
|
874
|
+
do
|
|
875
|
+
local ____export = require("src.functions.slots")
|
|
876
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
877
|
+
if ____exportKey ~= "default" then
|
|
878
|
+
____exports[____exportKey] = ____exportValue
|
|
879
|
+
end
|
|
880
|
+
end
|
|
881
|
+
end
|
|
882
|
+
do
|
|
883
|
+
local ____export = require("src.functions.sort")
|
|
884
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
885
|
+
if ____exportKey ~= "default" then
|
|
886
|
+
____exports[____exportKey] = ____exportValue
|
|
887
|
+
end
|
|
888
|
+
end
|
|
889
|
+
end
|
|
890
|
+
do
|
|
891
|
+
local ____export = require("src.functions.sound")
|
|
892
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
893
|
+
if ____exportKey ~= "default" then
|
|
894
|
+
____exports[____exportKey] = ____exportValue
|
|
895
|
+
end
|
|
896
|
+
end
|
|
897
|
+
end
|
|
898
|
+
do
|
|
899
|
+
local ____export = require("src.functions.spawnCollectible")
|
|
900
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
901
|
+
if ____exportKey ~= "default" then
|
|
902
|
+
____exports[____exportKey] = ____exportValue
|
|
903
|
+
end
|
|
904
|
+
end
|
|
905
|
+
end
|
|
906
|
+
do
|
|
907
|
+
local ____export = require("src.functions.sprites")
|
|
908
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
909
|
+
if ____exportKey ~= "default" then
|
|
910
|
+
____exports[____exportKey] = ____exportValue
|
|
911
|
+
end
|
|
912
|
+
end
|
|
913
|
+
end
|
|
914
|
+
do
|
|
915
|
+
local ____export = require("src.functions.stage")
|
|
916
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
917
|
+
if ____exportKey ~= "default" then
|
|
918
|
+
____exports[____exportKey] = ____exportValue
|
|
919
|
+
end
|
|
920
|
+
end
|
|
921
|
+
end
|
|
922
|
+
do
|
|
923
|
+
local ____export = require("src.functions.stats")
|
|
924
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
925
|
+
if ____exportKey ~= "default" then
|
|
926
|
+
____exports[____exportKey] = ____exportValue
|
|
927
|
+
end
|
|
928
|
+
end
|
|
929
|
+
end
|
|
930
|
+
do
|
|
931
|
+
local ____export = require("src.functions.string")
|
|
932
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
933
|
+
if ____exportKey ~= "default" then
|
|
934
|
+
____exports[____exportKey] = ____exportValue
|
|
935
|
+
end
|
|
936
|
+
end
|
|
937
|
+
end
|
|
938
|
+
do
|
|
939
|
+
local ____export = require("src.functions.table")
|
|
940
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
941
|
+
if ____exportKey ~= "default" then
|
|
942
|
+
____exports[____exportKey] = ____exportValue
|
|
943
|
+
end
|
|
944
|
+
end
|
|
945
|
+
end
|
|
946
|
+
do
|
|
947
|
+
local ____export = require("src.functions.tears")
|
|
948
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
949
|
+
if ____exportKey ~= "default" then
|
|
950
|
+
____exports[____exportKey] = ____exportValue
|
|
951
|
+
end
|
|
952
|
+
end
|
|
953
|
+
end
|
|
954
|
+
do
|
|
955
|
+
local ____export = require("src.functions.transformations")
|
|
956
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
957
|
+
if ____exportKey ~= "default" then
|
|
958
|
+
____exports[____exportKey] = ____exportValue
|
|
959
|
+
end
|
|
960
|
+
end
|
|
961
|
+
end
|
|
962
|
+
do
|
|
963
|
+
local ____export = require("src.functions.trinketGive")
|
|
964
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
965
|
+
if ____exportKey ~= "default" then
|
|
966
|
+
____exports[____exportKey] = ____exportValue
|
|
967
|
+
end
|
|
968
|
+
end
|
|
969
|
+
end
|
|
970
|
+
do
|
|
971
|
+
local ____export = require("src.functions.trinkets")
|
|
972
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
973
|
+
if ____exportKey ~= "default" then
|
|
974
|
+
____exports[____exportKey] = ____exportValue
|
|
975
|
+
end
|
|
976
|
+
end
|
|
977
|
+
end
|
|
978
|
+
do
|
|
979
|
+
local ____export = require("src.functions.tstlClass")
|
|
980
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
981
|
+
if ____exportKey ~= "default" then
|
|
982
|
+
____exports[____exportKey] = ____exportValue
|
|
983
|
+
end
|
|
984
|
+
end
|
|
985
|
+
end
|
|
986
|
+
do
|
|
987
|
+
local ____export = require("src.functions.types")
|
|
988
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
989
|
+
if ____exportKey ~= "default" then
|
|
990
|
+
____exports[____exportKey] = ____exportValue
|
|
991
|
+
end
|
|
992
|
+
end
|
|
993
|
+
end
|
|
994
|
+
do
|
|
995
|
+
local ____export = require("src.functions.ui")
|
|
996
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
997
|
+
if ____exportKey ~= "default" then
|
|
998
|
+
____exports[____exportKey] = ____exportValue
|
|
999
|
+
end
|
|
1000
|
+
end
|
|
1001
|
+
end
|
|
1002
|
+
do
|
|
1003
|
+
local ____export = require("src.functions.utils")
|
|
1004
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1005
|
+
if ____exportKey ~= "default" then
|
|
1006
|
+
____exports[____exportKey] = ____exportValue
|
|
1007
|
+
end
|
|
1008
|
+
end
|
|
1009
|
+
end
|
|
1010
|
+
do
|
|
1011
|
+
local ____export = require("src.functions.vector")
|
|
1012
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1013
|
+
if ____exportKey ~= "default" then
|
|
1014
|
+
____exports[____exportKey] = ____exportValue
|
|
1015
|
+
end
|
|
1016
|
+
end
|
|
1017
|
+
end
|
|
1018
|
+
do
|
|
1019
|
+
local ____export = require("src.functions.weighted")
|
|
1020
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1021
|
+
if ____exportKey ~= "default" then
|
|
1022
|
+
____exports[____exportKey] = ____exportValue
|
|
1023
|
+
end
|
|
1024
|
+
end
|
|
1025
|
+
end
|
|
1026
|
+
do
|
|
1027
|
+
local ____export = require("src.maps.cardNameToTypeMap")
|
|
1028
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1029
|
+
if ____exportKey ~= "default" then
|
|
1030
|
+
____exports[____exportKey] = ____exportValue
|
|
1031
|
+
end
|
|
1032
|
+
end
|
|
1033
|
+
end
|
|
1034
|
+
do
|
|
1035
|
+
local ____export = require("src.maps.characterNameToTypeMap")
|
|
1036
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1037
|
+
if ____exportKey ~= "default" then
|
|
1038
|
+
____exports[____exportKey] = ____exportValue
|
|
1039
|
+
end
|
|
1040
|
+
end
|
|
1041
|
+
end
|
|
1042
|
+
do
|
|
1043
|
+
local ____export = require("src.maps.pillNameToEffectMap")
|
|
1044
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1045
|
+
if ____exportKey ~= "default" then
|
|
1046
|
+
____exports[____exportKey] = ____exportValue
|
|
1047
|
+
end
|
|
1048
|
+
end
|
|
1049
|
+
end
|
|
1050
|
+
do
|
|
1051
|
+
local ____export = require("src.maps.roomNameToTypeMap")
|
|
1052
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1053
|
+
if ____exportKey ~= "default" then
|
|
1054
|
+
____exports[____exportKey] = ____exportValue
|
|
1055
|
+
end
|
|
1056
|
+
end
|
|
1057
|
+
end
|
|
1058
|
+
do
|
|
1059
|
+
local ____export = require("src.maps.transformationNameToPlayerFormMap")
|
|
1060
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1061
|
+
if ____exportKey ~= "default" then
|
|
1062
|
+
____exports[____exportKey] = ____exportValue
|
|
1063
|
+
end
|
|
1064
|
+
end
|
|
1065
|
+
end
|
|
1066
|
+
do
|
|
1067
|
+
local ____export = require("src.objects.colors")
|
|
1068
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1069
|
+
if ____exportKey ~= "default" then
|
|
1070
|
+
____exports[____exportKey] = ____exportValue
|
|
1071
|
+
end
|
|
1072
|
+
end
|
|
1073
|
+
end
|
|
1074
|
+
do
|
|
1075
|
+
local ____export = require("src.objects.kColors")
|
|
1076
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1077
|
+
if ____exportKey ~= "default" then
|
|
1078
|
+
____exports[____exportKey] = ____exportValue
|
|
1079
|
+
end
|
|
1080
|
+
end
|
|
1081
|
+
end
|
|
1082
|
+
do
|
|
1083
|
+
local ____export = require("src.types.PickingUpItem")
|
|
1084
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1085
|
+
if ____exportKey ~= "default" then
|
|
1086
|
+
____exports[____exportKey] = ____exportValue
|
|
1087
|
+
end
|
|
1088
|
+
end
|
|
1089
|
+
end
|
|
1090
|
+
do
|
|
1091
|
+
local ____export = require("src.types.ReadonlyMap")
|
|
1092
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1093
|
+
if ____exportKey ~= "default" then
|
|
1094
|
+
____exports[____exportKey] = ____exportValue
|
|
1095
|
+
end
|
|
1096
|
+
end
|
|
1097
|
+
end
|
|
1098
|
+
do
|
|
1099
|
+
local ____export = require("src.types.ReadonlySet")
|
|
1100
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1101
|
+
if ____exportKey ~= "default" then
|
|
1102
|
+
____exports[____exportKey] = ____exportValue
|
|
1103
|
+
end
|
|
1104
|
+
end
|
|
1105
|
+
end
|
|
1106
|
+
do
|
|
1107
|
+
local ____export = require("isaac-typescript-definitions")
|
|
1108
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
1109
|
+
if ____exportKey ~= "default" then
|
|
1110
|
+
____exports[____exportKey] = ____exportValue
|
|
1111
|
+
end
|
|
1112
|
+
end
|
|
1113
|
+
end
|
|
1114
|
+
return ____exports
|
package/package.json
CHANGED
|
@@ -608,14 +608,14 @@ export function setPlayerHealth(
|
|
|
608
608
|
/**
|
|
609
609
|
* Fill in the red heart containers.
|
|
610
610
|
*
|
|
611
|
-
*
|
|
612
|
-
* with half red hearts.
|
|
611
|
+
* Rotten Hearts must be filled in first in order for this to work properly, since they conflict
|
|
612
|
+
* with half red hearts.
|
|
613
613
|
*
|
|
614
|
-
*
|
|
615
|
-
*
|
|
616
|
-
*
|
|
614
|
+
* We multiply by two because the `EntityPlayer.GetRottenHearts` function returns the actual
|
|
615
|
+
* number of rotten hearts, but the `EntityPlayer.AddRottenHearts` works like the other heart
|
|
616
|
+
* functions in that a value of 1 is equivalent to a half-heart.
|
|
617
617
|
*/
|
|
618
|
-
player.AddRottenHearts(playerHealth.rottenHearts);
|
|
618
|
+
player.AddRottenHearts(playerHealth.rottenHearts * 2);
|
|
619
619
|
|
|
620
620
|
if (character === PlayerType.MAGDALENE_B) {
|
|
621
621
|
// Adding 1 heart to Tainted Magdalene will actually add two hearts.
|