-
Notifications
You must be signed in to change notification settings - Fork 2
/
data.lua
53 lines (43 loc) · 1.6 KB
/
data.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
-- Copyright (c) 2024 Kirazy
-- Part of Artisanal Reskins: Library
--
-- See LICENSE.md in the project directory for license information.
-- Setup the reskins global.
reskins = {}
---@type Reskins.Library
reskins.lib = require("__reskins-library__.api")
require("internal")
-- Setup function hosts and import triggers
if mods["reskins-angels"] then
reskins.angels = {
triggers = require("__reskins-angels__.prototypes.functions.triggers"),
}
end
if mods["reskins-bobs"] then
reskins.bobs = {
triggers = require("__reskins-bobs__.prototypes.functions.triggers"),
}
end
if mods["reskins-compatibility"] then
reskins.compatibility = {
triggers = require("__reskins-compatibility__.prototypes.functions.triggers"),
}
end
require("prototypes.functions.functions")
require("prototypes.functions.tints")
require("prototypes.functions.icon-handling")
require("prototypes.functions.label-items")
require("prototypes.functions.entity-functions")
----------------------------------------------------------------------------------------------------
-- ENTITIES
----------------------------------------------------------------------------------------------------
-- Common
require("prototypes.entity.common.pipe")
-- Base
require("prototypes.entity.base.oil-refinery")
require("prototypes.entity.base.belt-entities")
----------------------------------------------------------------------------------------------------
-- TECHNOLOGIES
----------------------------------------------------------------------------------------------------
-- Base
require("prototypes.technology.base.logistics")