Skip to content

Commit de457bc

Browse files
committed
2 parents 8a88890 + f836ed5 commit de457bc

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1+
12
# Cryptid
23
An unbalanced Balatro mod.
34

4-
Note: Cryptid requires [Steamodded **1.0.0-Alpha**](https://github.com/Steamopollys/Steamodded/archive/refs/heads/main.zip) and [Talisman](https://github.com/MathIsFun0/Talisman/releases/latest).
5+
Note: Cryptid requires [Steamodded **1.0.0~BETA-0308a**](https://github.com/Steamopollys/Steamodded/archive/refs/heads/main.zip) and [Talisman](https://github.com/MathIsFun0/Talisman/releases/latest).
56

67
Cryptid currently adds:
7-
![image](https://github.com/user-attachments/assets/0a03d6b2-d57f-4f92-9f42-a9ff201c5f2f)
8-
![image](https://github.com/user-attachments/assets/c3f26d4d-2fb4-4b07-8f43-0d7a730e986d)
8+
![image](https://github.com/user-attachments/assets/4a06c3ba-6df4-48af-a3b3-fdba4dd3125d)
9+
![image](https://github.com/user-attachments/assets/2bf58a78-7af9-45c5-930f-f8ac988c2126)
910

1011

11-
### [Official Discord](https://discord.gg/eUf9Ur6RyB)
12+
### [Official Discord](https://discord.gg/cryptid)
1213

1314
### [Video Installation Guide](https://www.youtube.com/watch?v=aUr0gXE77rk)
1415

items/deck.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,9 @@ local redeemed = {
220220
else
221221
area = G.play
222222
end
223-
if not G.cry_redeemed_buffer then G.cry_redeemed_buffer = {} end
223+
if not G.cry_redeemed_buffer then
224+
G.cry_redeemed_buffer = {}
225+
end
224226
if not G.cry_redeemed_buffer[v.key] and v.unlocked then
225227
local card = create_card("Voucher", area, nil, nil, nil, nil, v.key)
226228
G.cry_redeemed_buffer[v.key] = true

items/misc_joker.lua

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1369,7 +1369,12 @@ local sus = {
13691369
local function is_impostor(card)
13701370
return card.base.value and SMODS.Ranks[card.base.value].key == "King" and card:is_suit("Hearts")
13711371
end
1372-
if context.end_of_round and context.cardarea == G.jokers and not context.blueprint and not context.retrigger_joker then
1372+
if
1373+
context.end_of_round
1374+
and context.cardarea == G.jokers
1375+
and not context.blueprint
1376+
and not context.retrigger_joker
1377+
then
13731378
if not card.ability.used_round or card.ability.used_round ~= G.GAME.round then
13741379
card.ability.chosen_card = nil
13751380
end

0 commit comments

Comments
 (0)