isaacscript-common 30.5.2 → 30.5.3

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.
Files changed (93) hide show
  1. package/dist/index.rollup.d.ts +59 -58
  2. package/dist/isaacscript-common.lua +7280 -7265
  3. package/dist/src/arrays/cachedEnumValues.d.ts +1 -1
  4. package/dist/src/arrays/cachedEnumValues.d.ts.map +1 -1
  5. package/dist/src/arrays/cachedEnumValues.lua +2 -2
  6. package/dist/src/callbackClasses.d.ts +6 -6
  7. package/dist/src/callbackClasses.d.ts.map +1 -1
  8. package/dist/src/callbackClasses.lua +30 -30
  9. package/dist/src/classes/callbacks/PostGridEntityCollision.d.ts +2 -0
  10. package/dist/src/classes/callbacks/PostGridEntityCollision.d.ts.map +1 -1
  11. package/dist/src/classes/callbacks/PostGridEntityCustomCollision.d.ts +2 -0
  12. package/dist/src/classes/callbacks/PostGridEntityCustomCollision.d.ts.map +1 -1
  13. package/dist/src/classes/callbacks/PostPurchase.d.ts +2 -0
  14. package/dist/src/classes/callbacks/PostPurchase.d.ts.map +1 -1
  15. package/dist/src/classes/features/callbackLogic/GridEntityCollisionDetection.d.ts +1 -1
  16. package/dist/src/classes/features/callbackLogic/GridEntityCollisionDetection.d.ts.map +1 -1
  17. package/dist/src/classes/features/callbackLogic/ItemPickupDetection.d.ts +1 -1
  18. package/dist/src/classes/features/callbackLogic/ItemPickupDetection.d.ts.map +1 -1
  19. package/dist/src/classes/features/callbackLogic/PlayerCollectibleDetection.d.ts +1 -1
  20. package/dist/src/classes/features/callbackLogic/PlayerCollectibleDetection.d.ts.map +1 -1
  21. package/dist/src/classes/features/callbackLogic/SlotRenderDetection.d.ts +1 -1
  22. package/dist/src/classes/features/callbackLogic/SlotRenderDetection.d.ts.map +1 -1
  23. package/dist/src/classes/features/other/ModdedElementSets.lua +2 -2
  24. package/dist/src/classes/features/other/PreventCollectibleRotation.lua +2 -2
  25. package/dist/src/classes/features/other/extraConsoleCommands/commands.lua +2 -2
  26. package/dist/src/functions/array.d.ts.map +1 -1
  27. package/dist/src/functions/bosses.d.ts +1 -1
  28. package/dist/src/functions/bosses.d.ts.map +1 -1
  29. package/dist/src/functions/collectibles.d.ts.map +1 -1
  30. package/dist/src/functions/collectibles.lua +3 -0
  31. package/dist/src/functions/decorators.d.ts.map +1 -1
  32. package/dist/src/functions/emptyRoom.lua +2 -2
  33. package/dist/src/functions/entities.d.ts +5 -4
  34. package/dist/src/functions/entities.d.ts.map +1 -1
  35. package/dist/src/functions/entities.lua +17 -4
  36. package/dist/src/functions/entitiesSpecific.d.ts +20 -20
  37. package/dist/src/functions/entitiesSpecific.d.ts.map +1 -1
  38. package/dist/src/functions/gridEntitiesSpecific.d.ts +10 -10
  39. package/dist/src/functions/gridEntitiesSpecific.d.ts.map +1 -1
  40. package/dist/src/functions/levelGrid.lua +2 -2
  41. package/dist/src/functions/npcs.d.ts +1 -1
  42. package/dist/src/functions/npcs.d.ts.map +1 -1
  43. package/dist/src/functions/pickups.lua +2 -2
  44. package/dist/src/functions/pickupsSpecific.d.ts +13 -13
  45. package/dist/src/functions/pickupsSpecific.d.ts.map +1 -1
  46. package/dist/src/functions/pills.lua +2 -2
  47. package/dist/src/functions/roomData.d.ts +8 -8
  48. package/dist/src/functions/roomData.d.ts.map +1 -1
  49. package/dist/src/functions/roomData.lua +6 -6
  50. package/dist/src/functions/roomShapeWalls.lua +3 -3
  51. package/dist/src/functions/serialization.d.ts.map +1 -1
  52. package/dist/src/functions/spawnCollectible.lua +2 -2
  53. package/dist/src/functions/vector.lua +1 -1
  54. package/dist/src/index.d.ts +5 -5
  55. package/dist/src/index.d.ts.map +1 -1
  56. package/dist/src/index.lua +11 -11
  57. package/dist/src/interfaces/RoomDescription.d.ts +1 -1
  58. package/dist/src/interfaces/RoomDescription.d.ts.map +1 -1
  59. package/package.json +2 -2
  60. package/src/arrays/cachedEnumValues.ts +1 -1
  61. package/src/callbackClasses.ts +6 -6
  62. package/src/classes/features/callbackLogic/GridEntityCollisionDetection.ts +1 -1
  63. package/src/classes/features/callbackLogic/ItemPickupDetection.ts +2 -2
  64. package/src/classes/features/callbackLogic/PlayerCollectibleDetection.ts +1 -1
  65. package/src/classes/features/callbackLogic/SlotRenderDetection.ts +1 -1
  66. package/src/classes/features/other/CustomStages.ts +4 -4
  67. package/src/classes/features/other/CustomTrapdoors.ts +1 -1
  68. package/src/classes/features/other/ModdedElementSets.ts +1 -1
  69. package/src/classes/features/other/PreventCollectibleRotation.ts +1 -1
  70. package/src/classes/features/other/extraConsoleCommands/commands.ts +1 -1
  71. package/src/functions/array.ts +2 -0
  72. package/src/functions/bosses.ts +1 -1
  73. package/src/functions/collectibles.ts +5 -1
  74. package/src/functions/decorators.ts +1 -1
  75. package/src/functions/emptyRoom.ts +1 -1
  76. package/src/functions/entities.ts +22 -7
  77. package/src/functions/entitiesSpecific.ts +20 -20
  78. package/src/functions/gridEntitiesSpecific.ts +10 -10
  79. package/src/functions/levelGrid.ts +1 -1
  80. package/src/functions/npcs.ts +1 -1
  81. package/src/functions/pickups.ts +1 -1
  82. package/src/functions/pickupsSpecific.ts +17 -13
  83. package/src/functions/pills.ts +1 -1
  84. package/src/functions/roomData.ts +8 -8
  85. package/src/functions/roomShapeWalls.ts +1 -1
  86. package/src/functions/serialization.ts +1 -1
  87. package/src/functions/spawnCollectible.ts +1 -1
  88. package/src/functions/vector.ts +1 -1
  89. package/src/index.ts +5 -5
  90. package/src/interfaces/RoomDescription.ts +1 -1
  91. package/dist/src/indexLua.d.ts +0 -186
  92. package/dist/src/indexLua.d.ts.map +0 -1
  93. package/dist/src/indexLua.lua +0 -1114

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.