-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.lua
More file actions
46 lines (40 loc) · 1.21 KB
/
main.lua
File metadata and controls
46 lines (40 loc) · 1.21 KB
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
SMODS.Atlas{
key = "modicon",
path = "modicon.png",
px = 34,
py = 34
}
G.C.AMP = HEX('fda200')
G.C.METAL = HEX('d4b79b')
-- G.C.INFRARED = HEX('FF822B')
-- G.C.INFRASMA = HEX('e67b82')
-- just incase i forget the hex codes
SMODS.Gradient {
key = 'mump',
colours = {
HEX('FE5F55'), HEX('FDA200')
},
cycle = 5,
interpolation = 'trig'
}
assert(SMODS.load_file("items/amp.lua"))()
assert(SMODS.load_file("items/enhancers.lua"))()
assert(SMODS.load_file("items/metals.lua"))()
assert(SMODS.load_file("items/editions.lua"))()
assert(SMODS.load_file("items/backs.lua"))()
assert(SMODS.load_file("items/vouchers.lua"))()
assert(SMODS.load_file("items/tarots.lua"))()
assert(SMODS.load_file("items/jokers.lua"))()
assert(SMODS.load_file("items/blinds.lua"))()
assert(SMODS.load_file("items/poker_hands.lua"))()
assert(SMODS.load_file("items/planets.lua"))()
assert(SMODS.load_file("items/tags.lua"))()
if next(SMODS.find_mod("CardSleeves")) then
assert(SMODS.load_file("crossmod/sleeves.lua"))()
end
if next(SMODS.find_mod("Maximus")) then
assert(SMODS.load_file("crossmod/maximus.lua"))()
end
-- if next(SMODS.find_mod("Bunco")) then
-- assert(SMODS.load_file("crossmod/spectrum.lua"))()
-- end