isaacscript-common 72.5.0 → 72.6.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.rollup.d.ts +13 -0
- package/dist/isaacscript-common.lua +6607 -6588
- package/dist/src/functions/itemPool.d.ts +4 -0
- package/dist/src/functions/itemPool.d.ts.map +1 -1
- package/dist/src/functions/itemPool.lua +6 -0
- package/dist/src/functions/logMisc.d.ts +8 -1
- package/dist/src/functions/logMisc.d.ts.map +1 -1
- package/dist/src/functions/logMisc.lua +18 -0
- package/package.json +1 -1
- package/src/functions/itemPool.ts +8 -0
- package/src/functions/logMisc.ts +30 -1
package/dist/index.rollup.d.ts
CHANGED
|
@@ -5980,6 +5980,11 @@ export declare function getIsaacAPIClassName(object: unknown): string | undefine
|
|
|
5980
5980
|
*/
|
|
5981
5981
|
export declare function getItemConfigCardType(cardType: CardType): ItemConfigCardType | undefined;
|
|
5982
5982
|
|
|
5983
|
+
/**
|
|
5984
|
+
* Helper function to get the name for an item pool type as it appears in the "itempools.xml" file.
|
|
5985
|
+
*/
|
|
5986
|
+
export declare function getItemPoolName(itemPoolType: ItemPoolType): string;
|
|
5987
|
+
|
|
5983
5988
|
/**
|
|
5984
5989
|
* Helper function to calculate what the resulting `BitFlags<DoorSlotFlag>` value would be for a
|
|
5985
5990
|
* given JSON room.
|
|
@@ -10552,6 +10557,14 @@ export declare function logGridEntities(this: void, gridEntities: GridEntity[]):
|
|
|
10552
10557
|
/** Helper function for log information about a specific grid entity. */
|
|
10553
10558
|
export declare function logGridEntity(this: void, gridEntity: GridEntity): void;
|
|
10554
10559
|
|
|
10560
|
+
/**
|
|
10561
|
+
* Helper function to log the names of a item pool type array.
|
|
10562
|
+
*
|
|
10563
|
+
* @param itemPoolTypes The item pool types to log.
|
|
10564
|
+
* @param name Optional. The name of the array, which will be logged before the elements.
|
|
10565
|
+
*/
|
|
10566
|
+
export declare function logItemPoolTypes(this: void, itemPoolTypes: ItemPoolType[] | readonly ItemPoolType[], name?: string): void;
|
|
10567
|
+
|
|
10555
10568
|
/**
|
|
10556
10569
|
* Helper function to log a `KColor` object.
|
|
10557
10570
|
*
|