isaacscript-common 10.2.2 → 11.0.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/index.d.ts +8 -3
- package/dist/isaacscript-common.lua +8 -5
- package/dist/package.lua +1 -1
- package/dist/src/functions/players.d.ts +7 -2
- package/dist/src/functions/players.d.ts.map +1 -1
- package/dist/src/functions/players.lua +6 -3
- package/package.json +1 -1
- package/src/functions/players.ts +8 -3
package/dist/index.d.ts
CHANGED
|
@@ -4092,15 +4092,20 @@ export declare function getPlayerCollectiblesForCacheFlag(player: EntityPlayer,
|
|
|
4092
4092
|
/** Helper function to get only the familiars that belong to a specific player. */
|
|
4093
4093
|
export declare function getPlayerFamiliars(player: EntityPlayer): EntityFamiliar[];
|
|
4094
4094
|
|
|
4095
|
+
/**
|
|
4096
|
+
* Helper function to get the player from a tear, laser, bomb, etc. Returns undefined if the entity
|
|
4097
|
+
* does not correspond to any particular player.
|
|
4098
|
+
*
|
|
4099
|
+
* This function works by looking at the `Parent` and the `SpawnerEntity` fields (in that order).
|
|
4100
|
+
*/
|
|
4101
|
+
export declare function getPlayerFromEntity(entity: Entity): EntityPlayer | undefined;
|
|
4102
|
+
|
|
4095
4103
|
/**
|
|
4096
4104
|
* Helper function to get the corresponding `EntityPlayer` object that corresponds to a
|
|
4097
4105
|
* `PlayerIndex`.
|
|
4098
4106
|
*/
|
|
4099
4107
|
export declare function getPlayerFromIndex(playerIndex: PlayerIndex): EntityPlayer | undefined;
|
|
4100
4108
|
|
|
4101
|
-
/** Helper function to get the player from a tear, laser, bomb, etc. */
|
|
4102
|
-
export declare function getPlayerFromTear(entity: Entity): EntityPlayer | undefined;
|
|
4103
|
-
|
|
4104
4109
|
/**
|
|
4105
4110
|
* Helper function to get an object representing the player's health. You can use this in
|
|
4106
4111
|
* combination with the `setPlayerHealth` function to restore the player's health back to a certain
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
--[[
|
|
2
2
|
|
|
3
|
-
isaacscript-common
|
|
3
|
+
isaacscript-common 11.0.0
|
|
4
4
|
|
|
5
5
|
This is the "isaacscript-common" library, which was created with the IsaacScript tool.
|
|
6
6
|
|
|
@@ -26300,8 +26300,11 @@ function ____exports.getPlayerCollectibleMap(self, player)
|
|
|
26300
26300
|
end
|
|
26301
26301
|
return collectibleMap
|
|
26302
26302
|
end
|
|
26303
|
-
--- Helper function to get the player from a tear, laser, bomb, etc.
|
|
26304
|
-
|
|
26303
|
+
--- Helper function to get the player from a tear, laser, bomb, etc. Returns undefined if the entity
|
|
26304
|
+
-- does not correspond to any particular player.
|
|
26305
|
+
--
|
|
26306
|
+
-- This function works by looking at the `Parent` and the `SpawnerEntity` fields (in that order).
|
|
26307
|
+
function ____exports.getPlayerFromEntity(self, entity)
|
|
26305
26308
|
if entity.Parent ~= nil then
|
|
26306
26309
|
local player = entity.Parent:ToPlayer()
|
|
26307
26310
|
if player ~= nil then
|
|
@@ -26470,7 +26473,7 @@ function ____exports.isDamageFromPlayer(self, damageSource)
|
|
|
26470
26473
|
if player ~= nil then
|
|
26471
26474
|
return true
|
|
26472
26475
|
end
|
|
26473
|
-
local indirectPlayer = ____exports.
|
|
26476
|
+
local indirectPlayer = ____exports.getPlayerFromEntity(nil, damageSource)
|
|
26474
26477
|
return indirectPlayer ~= nil
|
|
26475
26478
|
end
|
|
26476
26479
|
--- Helper function for detecting when a player is Eden or Tainted Eden. Useful for situations where
|
|
@@ -46947,7 +46950,7 @@ return ____exports
|
|
|
46947
46950
|
["package"] = function(...)
|
|
46948
46951
|
return {
|
|
46949
46952
|
name = "isaacscript-common",
|
|
46950
|
-
version = "
|
|
46953
|
+
version = "11.0.0",
|
|
46951
46954
|
description = "Helper functions and features for IsaacScript mods.",
|
|
46952
46955
|
keywords = {"isaac", "rebirth", "afterbirth", "repentance"},
|
|
46953
46956
|
homepage = "https://isaacscript.github.io/",
|
package/dist/package.lua
CHANGED
|
@@ -73,8 +73,13 @@ export declare function getPlayerCollectibleCount(player: EntityPlayer, ...colle
|
|
|
73
73
|
* Note that this will filter out non-real collectibles like Lilith's Incubus.
|
|
74
74
|
*/
|
|
75
75
|
export declare function getPlayerCollectibleMap(player: EntityPlayer): Map<CollectibleType, int>;
|
|
76
|
-
/**
|
|
77
|
-
|
|
76
|
+
/**
|
|
77
|
+
* Helper function to get the player from a tear, laser, bomb, etc. Returns undefined if the entity
|
|
78
|
+
* does not correspond to any particular player.
|
|
79
|
+
*
|
|
80
|
+
* This function works by looking at the `Parent` and the `SpawnerEntity` fields (in that order).
|
|
81
|
+
*/
|
|
82
|
+
export declare function getPlayerFromEntity(entity: Entity): EntityPlayer | undefined;
|
|
78
83
|
/**
|
|
79
84
|
* Helper function to get the proper name of the player. Use this instead of the
|
|
80
85
|
* `EntityPlayer.GetName` method because it accounts for Blue Baby, Lazarus II, and Tainted
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"players.d.ts","sourceRoot":"","sources":["../../../src/functions/players.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EAEV,eAAe,EACf,eAAe,EAGf,UAAU,EAEV,WAAW,EACZ,MAAM,8BAA8B,CAAC;AAetC,wBAAgB,qBAAqB,CACnC,MAAM,EAAE,YAAY,EACpB,eAAe,EAAE,eAAe,GAC/B,IAAI,CAON;AAED,wBAAgB,iBAAiB,CAC/B,MAAM,EAAE,YAAY,EACpB,WAAW,EAAE,WAAW,GACvB,IAAI,CAON;AAED,wBAAgB,uBAAuB,CACrC,eAAe,EAAE,eAAe,GAC/B,OAAO,CAGT;AAED,wBAAgB,mBAAmB,CAAC,WAAW,EAAE,WAAW,GAAG,OAAO,CAGrE;AAED;;;;;GAKG;AACH,wBAAgB,WAAW,CAAC,GAAG,kBAAkB,EAAE,UAAU,EAAE,GAAG,OAAO,CAIxE;AAED;;;;;;;;GAQG;AACH,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,YAAY,GAAG,OAAO,CASjE;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAC/B,MAAM,EAAE,YAAY,EACpB,eAAe,EAAE,eAAe,GAC/B,UAAU,GAAG,SAAS,CAMxB;AAED;;;;;GAKG;AACH,wBAAgB,0BAA0B,CACxC,kBAAkB,EAAE,YAAY,GAAG,KAAK,GACvC,KAAK,CAMP;AAED,+FAA+F;AAC/F,wBAAgB,aAAa,IAAI,UAAU,EAAE,CAG5C;AAED,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,YAAY,CAiB/D;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,YAAY,GAAG,eAAe,EAAE,CAatE;AAED;;;GAGG;AACH,wBAAgB,cAAc,IAAI,YAAY,CAS7C;AAED;;;;GAIG;AACH,wBAAgB,eAAe,IAAI,YAAY,CAe9C;AAED;;;;GAIG;AACH,wBAAgB,mBAAmB,CACjC,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,KAAK,GACd,YAAY,GAAG,SAAS,CAK1B;AAED;;;;;;;GAOG;AACH,wBAAgB,yBAAyB,CACvC,MAAM,EAAE,YAAY,EACpB,GAAG,gBAAgB,EAAE,eAAe,EAAE,GACrC,GAAG,CASL;AAED;;;;;GAKG;AACH,wBAAgB,uBAAuB,CACrC,MAAM,EAAE,YAAY,GACnB,GAAG,CAAC,eAAe,EAAE,GAAG,CAAC,CAc3B;AAED
|
|
1
|
+
{"version":3,"file":"players.d.ts","sourceRoot":"","sources":["../../../src/functions/players.ts"],"names":[],"mappings":"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"}
|
|
@@ -244,8 +244,11 @@ function ____exports.getPlayerCollectibleMap(self, player)
|
|
|
244
244
|
end
|
|
245
245
|
return collectibleMap
|
|
246
246
|
end
|
|
247
|
-
--- Helper function to get the player from a tear, laser, bomb, etc.
|
|
248
|
-
|
|
247
|
+
--- Helper function to get the player from a tear, laser, bomb, etc. Returns undefined if the entity
|
|
248
|
+
-- does not correspond to any particular player.
|
|
249
|
+
--
|
|
250
|
+
-- This function works by looking at the `Parent` and the `SpawnerEntity` fields (in that order).
|
|
251
|
+
function ____exports.getPlayerFromEntity(self, entity)
|
|
249
252
|
if entity.Parent ~= nil then
|
|
250
253
|
local player = entity.Parent:ToPlayer()
|
|
251
254
|
if player ~= nil then
|
|
@@ -414,7 +417,7 @@ function ____exports.isDamageFromPlayer(self, damageSource)
|
|
|
414
417
|
if player ~= nil then
|
|
415
418
|
return true
|
|
416
419
|
end
|
|
417
|
-
local indirectPlayer = ____exports.
|
|
420
|
+
local indirectPlayer = ____exports.getPlayerFromEntity(nil, damageSource)
|
|
418
421
|
return indirectPlayer ~= nil
|
|
419
422
|
end
|
|
420
423
|
--- Helper function for detecting when a player is Eden or Tainted Eden. Useful for situations where
|
package/package.json
CHANGED
package/src/functions/players.ts
CHANGED
|
@@ -264,8 +264,13 @@ export function getPlayerCollectibleMap(
|
|
|
264
264
|
return collectibleMap;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
/**
|
|
268
|
-
|
|
267
|
+
/**
|
|
268
|
+
* Helper function to get the player from a tear, laser, bomb, etc. Returns undefined if the entity
|
|
269
|
+
* does not correspond to any particular player.
|
|
270
|
+
*
|
|
271
|
+
* This function works by looking at the `Parent` and the `SpawnerEntity` fields (in that order).
|
|
272
|
+
*/
|
|
273
|
+
export function getPlayerFromEntity(entity: Entity): EntityPlayer | undefined {
|
|
269
274
|
if (entity.Parent !== undefined) {
|
|
270
275
|
const player = entity.Parent.ToPlayer();
|
|
271
276
|
if (player !== undefined) {
|
|
@@ -498,7 +503,7 @@ export function isDamageFromPlayer(damageSource: Entity): boolean {
|
|
|
498
503
|
return true;
|
|
499
504
|
}
|
|
500
505
|
|
|
501
|
-
const indirectPlayer =
|
|
506
|
+
const indirectPlayer = getPlayerFromEntity(damageSource);
|
|
502
507
|
return indirectPlayer !== undefined;
|
|
503
508
|
}
|
|
504
509
|
|