From 19499bf23dc9c6941fcb9015ac1041ed2955c162 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Thu, 21 Sep 2023 19:56:57 -0700 Subject: [PATCH] update notes about D3 rank --- src/Episode3/DataIndexes.hh | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/Episode3/DataIndexes.hh b/src/Episode3/DataIndexes.hh index 385b9107..8b55f8d9 100644 --- a/src/Episode3/DataIndexes.hh +++ b/src/Episode3/DataIndexes.hh @@ -114,16 +114,17 @@ enum class CardRarity : uint8_t { R3 = 0x09, R4 = 0x0A, SS = 0x0B, - // Cards with the D1 or D2 ranks are considered never usable by the player, + // Cards with the D1 or D2 rarities are considered never usable by the player, // and are automatically removed from player decks before battle and when - // loading the deckbuilder. Cards with the D1 rank appear in the deckbuilder - // but are grayed out (and cannot be added to decks); cards with the D2 rank + // loading the deckbuilder. Cards with the D1 rarity appear in the deckbuilder + // but are grayed out (and cannot be added to decks); cards with the D2 rarity // don't appear in the deckbuilder at all. D1 = 0x0C, D2 = 0x0D, - // The D3 rank is only referenced in the function that determines whether or - // not a card can appear in post-battle draws. Having the D3 rank prevents the - // card from appearing (as do the E, D1, and D2 ranks). + // The D3 rarity is referenced in a few places, including the function that + // determines whether or not a card can appear in post-battle draws, and the + // function that determines whether a card should appear in the deckbuilder. + // In these cases, it prevents the card from appearing. D3 = 0x0E, };