isaacscript-common 1.2.186 → 1.2.187
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.
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local Map = ____lualib.Map
|
|
3
|
+
local ____exports = {}
|
|
4
|
+
local ____defaultPlayerStatMap = require("maps.defaultPlayerStatMap")
|
|
5
|
+
local DEFAULT_PLAYER_STAT_MAP = ____defaultPlayerStatMap.DEFAULT_PLAYER_STAT_MAP
|
|
6
|
+
function ____exports.getDefaultPlayerStat(self, cacheFlag)
|
|
7
|
+
return DEFAULT_PLAYER_STAT_MAP:get(cacheFlag)
|
|
8
|
+
end
|
|
9
|
+
return ____exports
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export { hasSirenStolenFamiliar, setFamiliarNoSirenSteal, } from "./features/sir
|
|
|
29
29
|
export { getTaintedLazarusSubPlayer } from "./features/taintedLazarusPlayers";
|
|
30
30
|
export * from "./functions/array";
|
|
31
31
|
export * from "./functions/bitwise";
|
|
32
|
+
export * from "./functions/cacheFlag";
|
|
32
33
|
export * from "./functions/cards";
|
|
33
34
|
export * from "./functions/challenges";
|
|
34
35
|
export * from "./functions/charge";
|
package/dist/index.lua
CHANGED
|
@@ -241,6 +241,14 @@ do
|
|
|
241
241
|
end
|
|
242
242
|
end
|
|
243
243
|
end
|
|
244
|
+
do
|
|
245
|
+
local ____export = require("functions.cacheFlag")
|
|
246
|
+
for ____exportKey, ____exportValue in pairs(____export) do
|
|
247
|
+
if ____exportKey ~= "default" then
|
|
248
|
+
____exports[____exportKey] = ____exportValue
|
|
249
|
+
end
|
|
250
|
+
end
|
|
251
|
+
end
|
|
244
252
|
do
|
|
245
253
|
local ____export = require("functions.cards")
|
|
246
254
|
for ____exportKey, ____exportValue in pairs(____export) do
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
local ____lualib = require("lualib_bundle")
|
|
2
|
+
local Map = ____lualib.Map
|
|
3
|
+
local __TS__New = ____lualib.__TS__New
|
|
4
|
+
local ____exports = {}
|
|
5
|
+
____exports.DEFAULT_PLAYER_STAT_MAP = __TS__New(Map, {
|
|
6
|
+
{CacheFlag.CACHE_DAMAGE, 3.5},
|
|
7
|
+
{CacheFlag.CACHE_FIREDELAY, 10},
|
|
8
|
+
{CacheFlag.CACHE_SHOTSPEED, 1},
|
|
9
|
+
{CacheFlag.CACHE_RANGE, 6.5},
|
|
10
|
+
{CacheFlag.CACHE_SPEED, 1},
|
|
11
|
+
{CacheFlag.CACHE_FLYING, false},
|
|
12
|
+
{CacheFlag.CACHE_LUCK, 0}
|
|
13
|
+
})
|
|
14
|
+
return ____exports
|