Skip to content

Commit a914d10

Browse files
committed
missed some things
1 parent 5160527 commit a914d10

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Cryptid currently adds:
1919

2020
### Frequently asked questions
2121
* Credit to @jenwalter666 for creating this FAQ (forwarded from Cryptid Discord)
22+
* Edits to reflect some changed made by @lord.ruby
2223

2324
## General
2425

items/deck.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ local critical = {
451451
check = 2
452452
G.E_MANAGER:add_event(Event({
453453
func = function()
454-
play_sound("cryptid_emult", 1)
454+
play_sound("cry_emult", 1)
455455
attention_text({
456456
scale = 1.4,
457457
text = localize("cry_critical_hit_ex"),
@@ -978,7 +978,7 @@ local antimatter = {
978978
update_hand_text({ delay = 0 }, { mult = context.mult, chips = context.chips })
979979
G.E_MANAGER:add_event(Event({
980980
func = function()
981-
play_sound("cryptid_emult", 1)
981+
play_sound("cry_emult", 1)
982982
attention_text({
983983
scale = 1.4,
984984
text = localize("cry_critical_hit_ex"),

items/epic.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ local circus = {
12111211
if context.other_joker and card ~= context.other_joker then
12121212
local mod_key = card.ability.immutable.rarity_map[context.other_joker.config.center.rarity]
12131213
if mod_key and card.ability.extra[mod_key] and to_big(card.ability.extra[mod_key]) > to_big(1) then
1214-
if not Talisman.config_file.disable_anims then
1214+
if Talisman and not Talisman.config_file.disable_anims then
12151215
G.E_MANAGER:add_event(Event({
12161216
func = function()
12171217
context.other_joker:juice_up(0.5, 0.5)

items/misc.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1165,7 +1165,7 @@ local astral = {
11651165
in_shop = true,
11661166
extra_cost = 9,
11671167
sound = {
1168-
sound = "talisman_emult",
1168+
sound = "cry_emult",
11691169
per = 1,
11701170
vol = 0.5,
11711171
},

items/sleeve.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ if CardSleeves then
212212
update_hand_text({ delay = 0 }, { mult = args.mult, chips = args.chips })
213213
G.E_MANAGER:add_event(Event({
214214
func = function()
215-
play_sound("talisman_emult", 1)
215+
play_sound("cry_emult", 1)
216216
attention_text({
217217
scale = 1.4,
218218
text = localize("cry_critical_hit_ex"),
@@ -1325,7 +1325,7 @@ if CardSleeves then
13251325
update_hand_text({ delay = 0 }, { mult = context.mult, chips = context.chips })
13261326
G.E_MANAGER:add_event(Event({
13271327
func = function()
1328-
play_sound("talisman_emult", 1)
1328+
play_sound("cry_emult", 1)
13291329
attention_text({
13301330
scale = 1.4,
13311331
text = localize("cry_critical_hit_ex"),

lovely/misc.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -691,6 +691,13 @@ target = "functions/common_events.lua"
691691
pattern = "elseif eval_type == 'dollars' then"
692692
position = "before"
693693
payload = '''
694+
elseif eval_type == 'x_chips' then
695+
sound = 'cry_xchip'
696+
amt = amt
697+
text = 'X' .. amt
698+
colour = G.C.CHIPS
699+
config.type = 'fade'
700+
config.scale = 0.7
694701
elseif eval_type == 'e_chips' then
695702
sound = 'cry_echip'
696703
amt = amt

0 commit comments

Comments
 (0)