-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
90 lines (79 loc) · 1.86 KB
/
main.lua
File metadata and controls
90 lines (79 loc) · 1.86 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
AbsoluteTau = {}
AbsoluteTau.gradient = SMODS.Gradient {
key = "tau_colours",
colours = {
HEX("523DBA"),
HEX("D1CFE3"),
HEX("BCC24A")
},
cycle = 10
}
loc_colour()
G.ARGS.LOC_COLOURS.tauic = AbsoluteTau.gradient
SMODS.Atlas {
key = "tau",
path = "tauic_jokers.png",
px = 71,
py = 95,
}
SMODS.Atlas {
key = "alt",
path = "cards.png",
px = 71,
py = 95,
}
SMODS.Atlas {
key = "modicon",
path = "modicon.png",
px = 34,
py = 34,
}
SMODS.Rarity {
key = 'tauic',
loc_txt = {
name = 'Tauic'
},
badge_colour = AbsoluteTau.gradient,
pools = { ["Joker"] = false },
}
AbsoluteTau.Tauic = SMODS.Joker:extend {
tauic = true,
required_params = {
"original"
},
inject = function(self, i)
if type(self.original) == "table" then
for _, value in pairs(self.original) do
G.P_CENTERS[value].tauic_variant = self.key
end
elseif type(self.original) == "string" then
G.P_CENTERS[self.original].tauic_variant = self.key
else
error("What the fuck are you doing bro 👀👀👀👀👀👀👀👀👀👀👀👀👀👀")
end
SMODS.Joker.inject(self)
end,
no_doe = true,
pos = { x = 0, y = 0 },
atlas = "tau_tau",
rarity = "tau_tauic",
cost = 15,
}
local files = {
"src/spawn_override.lua",
"src/helpers.lua",
"src/decks.lua",
"src/seals.lua",
"src/spectrals.lua",
"src/stickers.lua",
"src/originalcards/jokers.lua",
"src/originalcards/spectrals.lua",
"src/tauicjokers/tau_common.lua",
"src/tauicjokers/tau_uncommon.lua",
"src/tauicjokers/tau_rare.lua",
"src/tauicjokers/tau_legendary.lua",
}
for i, dir in ipairs(files) do
print("AbsoluteTau: Loading " .. dir)
assert(SMODS.load_file(dir))()
end