Skip to content

Commit 65e3b3b

Browse files
committed
talisman-less loc fixes
1 parent 49d1893 commit 65e3b3b

File tree

2 files changed

+40
-23
lines changed

2 files changed

+40
-23
lines changed

localization/en-us.lua

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,23 @@ return {
3232

3333
b_tag = "Tag",
3434
b_blind = "Blind",
35-
}
35+
k_mult = "Mult",
36+
k_chips = "Chips"
37+
},
38+
v_dictionary = {
39+
a_xchips = { "X#1# Chips" },
40+
a_powmult = { "^#1# Mult" },
41+
a_powchips = { "^#1# Chips" },
42+
a_powmultchips = { "^#1# Mult+Chips" },
43+
a_round = { "+#1# Round" },
44+
a_xchips_minus = { "-X#1# Chips" },
45+
a_powmult_minus = { "-^#1# Mult" },
46+
a_powchips_minus = { "-^#1# Chips" },
47+
a_powmultchips_minus = { "-^#1# Mult+Chips" },
48+
a_round_minus = { "-#1# Round" },
49+
a_tag_minus = { "-#1# Tag" },
50+
a_tags_minus = { "-#1# Tags" },
51+
a_tag = { "+#1# Tag" },
52+
a_tags = { "+#1# Tags" },}
3653
}
37-
}
54+
}

lovely.toml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -24,27 +24,27 @@ target = "functions/common_events.lua"
2424
pattern = "elseif eval_type == 'dollars' then"
2525
position = "before"
2626
payload = '''
27-
elseif eval_type == 'x_chips' then
28-
sound = 'cry_xchip'
29-
amt = amt
30-
text = 'X' .. amt
31-
colour = G.C.CHIPS
32-
config.type = 'fade'
33-
config.scale = 0.7
34-
elseif eval_type == 'e_chips' then
35-
sound = 'cry_echip'
36-
amt = amt
37-
text = '^' .. amt
38-
colour = G.C.CHIPS
39-
config.type = 'fade'
40-
config.scale = 0.7
41-
elseif eval_type == 'e_mult' then
42-
sound = 'cry_emult'
43-
amt = amt
44-
text = '^' .. amt .. ' ' .. localize('k_mult')
45-
colour = G.C.MULT
46-
config.type = 'fade'
47-
config.scale = 0.7
27+
elseif eval_type == 'x_chips' then
28+
sound = 'cry_xchip'
29+
amt = amt
30+
text = 'X' .. amt
31+
colour = G.C.CHIPS
32+
config.type = 'fade'
33+
config.scale = 0.7
34+
elseif eval_type == 'e_chips' then
35+
sound = 'cry_echips'
36+
amt = amt
37+
text = '^' .. amt .. ' ' .. localize('k_chips')
38+
colour = G.C.DARK_EDITION
39+
config.type = 'fade'
40+
config.scale = 0.7
41+
elseif eval_type == 'e_mult' then
42+
sound = 'cry_emult'
43+
amt = amt
44+
text = '^' .. amt .. ' ' .. localize('k_mult')
45+
colour = G.C.DARK_EDITION
46+
config.type = 'fade'
47+
config.scale = 0.7
4848
'''
4949
match_indent = true
5050

0 commit comments

Comments
 (0)