-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinclude.lua
More file actions
130 lines (118 loc) · 3.03 KB
/
Copy pathinclude.lua
File metadata and controls
130 lines (118 loc) · 3.03 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
local scriptsPath = "resources/scripts/"
local col = "collectibles/"
local ent = "entities/"
local syn = "synergies/"
local funcs = "functions/"
local compat = "compat/"
local libs = "libs/"
local misc = "misc/"
local effects = "statusEffects/"
local includeFiles = {
-- Cosas necesarias
compat .. "EID",
compat .. "Birthcake",
compat .. "RunicTablet",
compat .. "TheFuture",
compat .. "Birthwrong/Edith",
compat .. "Birthwrong/TEdith",
libs .. "prenpckillcallback",
libs .. "CustomShockwaveAPI",
libs .. "lhsx",
funcs .. "functions",
funcs .. "unlock_functions",
misc .. "ImGui",
misc .. "UnlockManager",
effects .. "Oregano",
effects .. "Salt",
effects .. "Cinder",
effects .. "HydrargyrumCurse",
effects .. "Garlic",
effects .. "Cinnamon",
effects .. "Turmeric",
effects .. "Ginger",
effects .. "Pepper",
effects .. "Cumin",
-- Items
col .. "items/Edith/SaltShaker",
col .. "items/Edith/PepperGrinder",
col .. "items/Edith/EdithsHood",
col .. "items/Edith/SulfuricFire",
col .. "items/Edith/Sal",
col .. "items/Edith/MoltenCore",
col .. "items/Edith/GildedStone",
col .. "items/Edith/FateOfTheUnfaithful",
col .. "items/Edith/SaltHeart",
col .. "items/Edith/DivineRetribution",
col .. "items/Edith/Hydrargyrum",
col .. "items/Edith/SpicesMix",
col .. "items/TEdith/BurntHood",
col .. "items/TEdith/DivineWrath",
col .. "items/Challenges/Effigy",
col .. "items/Challenges/ChunkOfBasalt",
-- Items fin
-- Trinkets
col .. "trinkets/Edith/geode",
col .. "trinkets/Edith/rumblingpebble",
col .. "trinkets/TEdith/Paprika",
col .. "trinkets/TEdith/BurntSalt",
-- Trinkets fin
col .. "consumables/JackOfClubs",
col .. "consumables/SaltRocks",
col .. "consumables/SoulOfEdith",
-- Entidades
ent .. "Effects/Creeps",
ent .. "Effects/Targets",
ent .. "Effects/Trail",
-- Entidades fin
-- Personajes
ent .. "Players/Edith",
ent .. "Players/Edith_B",
ent .. "Players/SharedFuncs",
-- Personajes fin
ent .. "Wisps/SaltShaker",
ent .. "Wisps/SulfuricFire",
ent .. "Wisps/DivineRetribution",
ent .. "Wisps/SpicesMix",
ent .. "Wisps/PepperGrinder",
ent .. "Wisps/DivineWrath",
ent .. "Wisps/BurntHood",
ent .. "Locusts/SaltShaker",
ent .. "Locusts/PepperGrinder",
ent .. "Locusts/EdithsHood",
ent .. "Locusts/Sal",
ent .. "Locusts/SaltHeart",
ent .. "Locusts/GildedStone",
ent .. "Locusts/SpicesMix",
ent .. "Locusts/ChunkOfBasalt",
ent .. "Locusts/DivineWrath",
ent .. "Locusts/Hydrargyrum",
"challenges/Vestige",
"challenges/Grudge",
syn .. "BlackPowder",
syn .. "Brimstone",
syn .. "ChocolateMilk",
syn .. "Damage",
syn .. "FireMind",
syn .. "FlatStone",
syn .. "GodHead",
syn .. "GodsFlesh",
syn .. "HeadOfTheKeeper",
syn .. "HolyLight",
syn .. "JacobsLadder",
syn .. "Jupiter",
syn .. "LittleHorn",
syn .. "MomsKnife",
syn .. "Neptunus",
syn .. "OcularRift",
syn .. "Peppers",
syn .. "PlaydoughCookie",
syn .. "SpiritSword",
syn .. "StatusEffects",
syn .. "Technology",
syn .. "TechX",
syn .. "Effigy",
syn .. "Rockwaves",
}
for _, v in ipairs(includeFiles) do
include(scriptsPath .. v)
end