-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
72 lines (62 loc) · 1.87 KB
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
return {
compact_deck_enabled = true,
compact_deck_visible_cards = 100,
deck_view_stack_enabled = true,
deck_view_stack_modifiers = false,
deck_view_stack_chips = true,
-- [top center bottom]
deck_view_stack_pos_vertical = 't',
-- [left middle right]
deck_view_stack_pos_horizontal = 'm',
-- Hex color code for x (before amount)
deck_view_stack_x_color = 'ed7575',
-- Opacity in %
deck_view_stack_background_opacity = '60',
deck_view_hide_drawn_cards = false,
-- todo: maybe custom shader for drawn cards to adjust opacity
improved_hand_sorting = false,
draw_non_essential_shaders = true,
hide_tags = false,
hide_consumables = false,
hide_deck = false,
hide_jokers = false,
flames_intensity_min = 0.5,
flames_intensity_max = 10,
flames_relative_intensity = false,
flames_slower_speed = false,
flames_volume = 100,
jokers_controls_buttons = true,
jokers_controls_show_after = 13,
keybinds = {
hide_joker = {
lalt = true,
h = true,
},
toggle_tags = {['[none]'] = true},
toggle_consumables = {['[none]'] = true},
toggle_deck = {['[none]'] = true},
toggle_jokers = {['[none]'] = true},
toggle_jokers_buttons = {['[none]'] = true},
},
}
--[[
--------- WIP / concepting
-- Stack cards in hand?
hand_stack_enabled = true,
hand_stack_after_total = 100,
-- stacked jokers?
hide_jokers = {
enabled = true,
rarities = {
common = true,
uncommon = true,
rare = false,
},
all = true,
editions = {
negative = true,
},
-- When total reaches this number, matching jokers will be hidden TODO : make sure to show jokers once the number's back down :)
hide_after_total = 100,
},
]]