isaacscript-common 1.0.580 → 1.0.584
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,12 +1,12 @@
|
|
|
1
1
|
--[[ Generated with https://github.com/TypeScriptToLua/TypeScriptToLua ]]
|
|
2
2
|
local ____exports = {}
|
|
3
|
-
local hasSubscriptions, postRender, postNewRoom, postPEffectUpdateReordered, postPlayerFatalDamage, CustomReviveState, v
|
|
3
|
+
local hasSubscriptions, postRender, postNewRoom, postPEffectUpdateReordered, postPEffectUpdateReorderedWaitingForBerserkToEnd, postPEffectUpdateReorderedWaitingForItemAnimation, postPlayerFatalDamage, CustomReviveState, v
|
|
4
4
|
local ____exports = require("features.saveDataManager.exports")
|
|
5
5
|
local saveDataManager = ____exports.saveDataManager
|
|
6
6
|
local ____collectibles = require("functions.collectibles")
|
|
7
7
|
local removeCollectibleFromItemTracker = ____collectibles.removeCollectibleFromItemTracker
|
|
8
8
|
local ____entity = require("functions.entity")
|
|
9
|
-
local
|
|
9
|
+
local removeAllFamiliars = ____entity.removeAllFamiliars
|
|
10
10
|
local ____player = require("functions.player")
|
|
11
11
|
local getPlayerIndex = ____player.getPlayerIndex
|
|
12
12
|
local ____ModCallbacksCustom = require("types.ModCallbacksCustom")
|
|
@@ -37,6 +37,29 @@ function postNewRoom(self)
|
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
function postPEffectUpdateReordered(self, player)
|
|
40
|
+
postPEffectUpdateReorderedWaitingForBerserkToEnd(nil, player)
|
|
41
|
+
postPEffectUpdateReorderedWaitingForItemAnimation(nil, player)
|
|
42
|
+
end
|
|
43
|
+
function postPEffectUpdateReorderedWaitingForBerserkToEnd(self, player)
|
|
44
|
+
if v.run.state ~= CustomReviveState.WAITING_FOR_BERSERK_TO_END then
|
|
45
|
+
return
|
|
46
|
+
end
|
|
47
|
+
if v.run.dyingPlayerIndex == nil then
|
|
48
|
+
return
|
|
49
|
+
end
|
|
50
|
+
local playerIndex = getPlayerIndex(nil, player)
|
|
51
|
+
local effects = player:GetEffects()
|
|
52
|
+
if playerIndex ~= v.run.dyingPlayerIndex then
|
|
53
|
+
return
|
|
54
|
+
end
|
|
55
|
+
removeAllFamiliars(nil, FamiliarVariant.ONE_UP)
|
|
56
|
+
local isBerserk = effects:HasCollectibleEffect(CollectibleType.COLLECTIBLE_BERSERK)
|
|
57
|
+
if isBerserk then
|
|
58
|
+
return
|
|
59
|
+
end
|
|
60
|
+
v.run.state = CustomReviveState.CHANGING_ROOMS
|
|
61
|
+
end
|
|
62
|
+
function postPEffectUpdateReorderedWaitingForItemAnimation(self, player)
|
|
40
63
|
if v.run.state ~= CustomReviveState.WAITING_FOR_ITEM_ANIMATION then
|
|
41
64
|
return
|
|
42
65
|
end
|
|
@@ -73,19 +96,24 @@ function postPlayerFatalDamage(self, player)
|
|
|
73
96
|
if revivalType == nil then
|
|
74
97
|
return
|
|
75
98
|
end
|
|
76
|
-
|
|
99
|
+
local effects = player:GetEffects()
|
|
100
|
+
local isBerserk = effects:HasCollectibleEffect(CollectibleType.COLLECTIBLE_BERSERK)
|
|
101
|
+
local newState = isBerserk and CustomReviveState.WAITING_FOR_BERSERK_TO_END or CustomReviveState.CHANGING_ROOMS
|
|
102
|
+
v.run.state = newState
|
|
77
103
|
v.run.revivalType = revivalType
|
|
78
104
|
v.run.dyingPlayerIndex = getPlayerIndex(nil, player)
|
|
79
105
|
player:AddCollectible(CollectibleType.COLLECTIBLE_1UP, 0, false)
|
|
80
|
-
|
|
106
|
+
removeAllFamiliars(nil, FamiliarVariant.ONE_UP)
|
|
81
107
|
removeCollectibleFromItemTracker(nil, CollectibleType.COLLECTIBLE_1UP)
|
|
82
108
|
end
|
|
83
109
|
CustomReviveState = CustomReviveState or ({})
|
|
84
110
|
CustomReviveState.DISABLED = 0
|
|
85
111
|
CustomReviveState[CustomReviveState.DISABLED] = "DISABLED"
|
|
86
|
-
CustomReviveState.
|
|
112
|
+
CustomReviveState.WAITING_FOR_BERSERK_TO_END = 1
|
|
113
|
+
CustomReviveState[CustomReviveState.WAITING_FOR_BERSERK_TO_END] = "WAITING_FOR_BERSERK_TO_END"
|
|
114
|
+
CustomReviveState.CHANGING_ROOMS = 2
|
|
87
115
|
CustomReviveState[CustomReviveState.CHANGING_ROOMS] = "CHANGING_ROOMS"
|
|
88
|
-
CustomReviveState.WAITING_FOR_ITEM_ANIMATION =
|
|
116
|
+
CustomReviveState.WAITING_FOR_ITEM_ANIMATION = 3
|
|
89
117
|
CustomReviveState[CustomReviveState.WAITING_FOR_ITEM_ANIMATION] = "WAITING_FOR_ITEM_ANIMATION"
|
|
90
118
|
v = {run = {state = CustomReviveState.DISABLED, revivalType = nil, dyingPlayerIndex = nil}}
|
|
91
119
|
function ____exports.customReviveCallbacksInit(self, mod)
|
|
@@ -190,7 +190,7 @@ export declare function removeAllBombs(variant?: BombVariant | int, subType?: in
|
|
|
190
190
|
* @param cap Optional. If specified, will only remove the given amount of effects.
|
|
191
191
|
* @returns True if one or more effects was removed, false otherwise.
|
|
192
192
|
*/
|
|
193
|
-
export declare function removeAllEffects(variant?: EffectVariant, subType?: int, cap?: int): boolean;
|
|
193
|
+
export declare function removeAllEffects(variant?: EffectVariant | int, subType?: int, cap?: int): boolean;
|
|
194
194
|
/**
|
|
195
195
|
* Helper function to remove all of the familiars in the room.
|
|
196
196
|
*
|
|
@@ -27,6 +27,8 @@ function ____exports.getPlayerHealth(self, player)
|
|
|
27
27
|
local rottenHearts = player:GetRottenHearts()
|
|
28
28
|
local brokenHearts = player:GetBrokenHearts()
|
|
29
29
|
local subPlayer = player:GetSubPlayer()
|
|
30
|
+
local soulCharges = player:GetEffectiveSoulCharge()
|
|
31
|
+
local bloodCharges = player:GetEffectiveBloodCharge()
|
|
30
32
|
if character == PlayerType.PLAYER_THEFORGOTTEN and subPlayer ~= nil then
|
|
31
33
|
maxHearts = boneHearts * 2
|
|
32
34
|
boneHearts = 0
|
|
@@ -71,7 +73,9 @@ function ____exports.getPlayerHealth(self, player)
|
|
|
71
73
|
boneHearts = boneHearts,
|
|
72
74
|
goldenHearts = goldenHearts,
|
|
73
75
|
rottenHearts = rottenHearts,
|
|
74
|
-
brokenHearts = brokenHearts
|
|
76
|
+
brokenHearts = brokenHearts,
|
|
77
|
+
soulCharges = soulCharges,
|
|
78
|
+
bloodCharges = bloodCharges
|
|
75
79
|
}
|
|
76
80
|
end
|
|
77
81
|
function ____exports.setPlayerHealth(self, player, playerHealth)
|
|
@@ -110,5 +114,10 @@ function ____exports.setPlayerHealth(self, player, playerHealth)
|
|
|
110
114
|
player:AddHearts(playerHealth.hearts)
|
|
111
115
|
player:AddGoldenHearts(playerHealth.goldenHearts)
|
|
112
116
|
player:AddBrokenHearts(playerHealth.brokenHearts)
|
|
117
|
+
if character == PlayerType.PLAYER_BETHANY then
|
|
118
|
+
player:SetSoulCharge(playerHealth.soulCharges)
|
|
119
|
+
elseif character == PlayerType.PLAYER_BETHANY_B then
|
|
120
|
+
player:SetBloodCharge(playerHealth.bloodCharges)
|
|
121
|
+
end
|
|
113
122
|
end
|
|
114
123
|
return ____exports
|
|
@@ -40,7 +40,7 @@ function removeAnyLineThatContains(self, msg, containsMsg)
|
|
|
40
40
|
return table.concat(lines, LINE_SEPARATOR or ",")
|
|
41
41
|
end
|
|
42
42
|
LINE_SEPARATOR = "\n"
|
|
43
|
-
USELESS_TRACEBACK_MESSAGES = {"in upvalue 'getTraceback'", "in function '
|
|
43
|
+
USELESS_TRACEBACK_MESSAGES = {"in upvalue 'getTraceback'", "in function 'sandbox.GetTraceback'", "in function 'error'"}
|
|
44
44
|
function ____exports.patchErrorFunction(self)
|
|
45
45
|
if not isLuaDebugEnabled(nil) then
|
|
46
46
|
return
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript-common",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.584",
|
|
4
4
|
"description": "Helper functions for IsaacScript mods",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dist/**/*.d.ts"
|
|
26
26
|
],
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"isaac-typescript-definitions": "^1.0.
|
|
28
|
+
"isaac-typescript-definitions": "^1.0.327",
|
|
29
29
|
"isaacscript-lint": "^1.0.77",
|
|
30
30
|
"typedoc": "^0.22.10",
|
|
31
31
|
"typescript": "^4.5.4",
|