File tree Expand file tree Collapse file tree 2 files changed +40
-23
lines changed
Expand file tree Collapse file tree 2 files changed +40
-23
lines changed Original file line number Diff line number Diff 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+ }
Original file line number Diff line number Diff line change @@ -24,27 +24,27 @@ target = "functions/common_events.lua"
2424pattern = " elseif eval_type == 'dollars' then"
2525position = " before"
2626payload = '''
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'''
4949match_indent = true
5050
You can’t perform that action at this time.
0 commit comments