isaacscript-common 12.3.6 → 12.3.7
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 +6 -1
- package/dist/isaacscript-common.lua +1292 -5610
- package/dist/src/functions/collectibles.d.ts +6 -1
- package/dist/src/functions/collectibles.d.ts.map +1 -1
- package/dist/src/functions/collectibles.lua +9 -0
- package/dist/src/indexLua.d.ts +181 -0
- package/dist/src/indexLua.d.ts.map +1 -0
- package/dist/src/indexLua.lua +1282 -0
- package/package.json +1 -1
- package/src/functions/collectibles.ts +15 -1
package/dist/index.d.ts
CHANGED
|
@@ -5807,7 +5807,12 @@ export declare function isBethany(player: EntityPlayer): boolean;
|
|
|
5807
5807
|
/** Helper function to check if something is an instantiated `BitSet128` object. */
|
|
5808
5808
|
export declare function isBitSet128(object: unknown): object is BitSet128;
|
|
5809
5809
|
|
|
5810
|
-
/**
|
|
5810
|
+
/**
|
|
5811
|
+
* Returns true if the collectible has a red question mark sprite.
|
|
5812
|
+
*
|
|
5813
|
+
* Note that this function will not work properly in a render callback with the `RenderMode` set to
|
|
5814
|
+
* `RenderMode.WATER_REFLECT`. If this is detected, this function will throw a run-time error.
|
|
5815
|
+
*/
|
|
5811
5816
|
export declare function isBlindCollectible(collectible: EntityPickup): boolean;
|
|
5812
5817
|
|
|
5813
5818
|
export declare function isBlueWombDoor(door: GridEntityDoor): boolean;
|