-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: EntityPickup * docs: EntityProjectile * docs: EntitySlot * docs: EntityTear * docs: EntityConfigEntity * docs: EntityConfig * docs: FXParams * docs: Game * docs: GenericPrompt * docs: GridEntity * docs: GridEntityDoor * docs: GridEntityRock * docs: HUD * docs: PlayerHUDHeart * docs: ImGui * docs: Isaac * docs: ItemConfig * feat: ItemConfigCard class * docs: ItemConfigItem * docs: ItemOverlay * Update EntityTear.d.ts * fix: lint * Update GridEntityRock.d.ts * Update SlotState.ts * Update EntitySlot.d.ts * Update GridEntityRock.d.ts --------- Co-authored-by: James <5511220+Zamiell@users.noreply.github.com>
- Loading branch information
1 parent
61d9bb1
commit 57abd2c
Showing
26 changed files
with
456 additions
and
143 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
packages/isaac-typescript-definitions-repentogon/src/enums/AltRockType.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* This enum is for REPENTOGON, an exe-hack which expands the modding API. | ||
* | ||
* @see https://repentogon.com/ | ||
*/ | ||
export enum AltRockType { | ||
URN = 1, | ||
MUSHROOM = 2, | ||
SKULL = 3, | ||
POLYP = 4, | ||
/** | ||
* Destroying buckets in Downpour give different outcomes than in Dross. | ||
* | ||
* See: https://bindingofisaacrebirth.fandom.com/wiki/Rocks#Buckets | ||
*/ | ||
BUCKET_DOWNPOUR = 5, | ||
/** | ||
* Destroying buckets in Dross give different outcomes than in Downpour. | ||
* | ||
* See: https://bindingofisaacrebirth.fandom.com/wiki/Rocks#Buckets | ||
*/ | ||
BUCKET_DROSS = 6, | ||
} |
11 changes: 11 additions & 0 deletions
11
packages/isaac-typescript-definitions-repentogon/src/enums/CoinJamAnimation.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* This enum is for REPENTOGON, an exe-hack which expands the modding API. | ||
* | ||
* @see https://repentogon.com/ | ||
*/ | ||
export enum CoinJamAnimation { | ||
COIN_JAM_1 = "CoinJam", | ||
COIN_JAM_2 = "CoinJam2", | ||
COIN_JAM_3 = "CoinJam3", | ||
COIN_JAM_4 = "CoinJam4", | ||
} |
17 changes: 17 additions & 0 deletions
17
packages/isaac-typescript-definitions-repentogon/src/enums/SlotState.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* This enum is for REPENTOGON, an exe-hack which expands the modding API. | ||
* | ||
* @see https://repentogon.com/ | ||
*/ | ||
export enum SlotState { | ||
IDLE = 1, | ||
|
||
/** Only used by Shell Game and Hell Game. */ | ||
IDLE_REWARD = 2, | ||
|
||
BOMBED = 3, | ||
PAYOUT = 4, | ||
|
||
/** Only used by Shell Game and Hell Game. */ | ||
REWARD = 5, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.