forked from mexmer/ScienceCostTweakerM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.lua
More file actions
47 lines (40 loc) · 1.69 KB
/
data.lua
File metadata and controls
47 lines (40 loc) · 1.69 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
--INITIALIZE
if not SCTTweaks then SCTTweaks = {} end
require("sctmlib")
require("config")
-- Prototypes
require("prototypes.0_itemgroups")
require("prototypes.0_entity")
require("prototypes.0_recipe")
require("prototypes.0_technology")
-- mod tweaks
require("tweaks.aai.0_initial")
require("tweaks.angelsmods.0_initial")
require("tweaks.bobsmods.0_initial")
require("tweaks.omnimatter.0_initial")
require("tweaks.pymods.0_initial")
if (settings.startup["sct-tier1-lab"].value == "lab") then
--[[
data.raw.recipe["sct-lab-1"].enabled = false
data.raw.recipe["sct-lab-1"].normal.enabled = false
data.raw.recipe["sct-lab-1"].expensive.enabled = false
data.raw.recipe["sct-lab-1"].hidden = true
data.raw.recipe["sct-lab-1"].normal.hidden = true
data.raw.recipe["sct-lab-1"].expensive.hidden = true
data.raw.lab["sct-lab-1"].enabled = false
]]---
data.raw.recipe["sct-lab1-construction"].enabled = false
data.raw.recipe["sct-lab1-construction"].normal.enabled = false
data.raw.recipe["sct-lab1-construction"].expensive.enabled = false
data.raw.recipe["sct-lab1-construction"].hidden = true
data.raw.recipe["sct-lab1-construction"].normal.hidden = true
data.raw.recipe["sct-lab1-construction"].expensive.hidden = true
data.raw.item["sct-lab1-construction"].enabled = false
data.raw.recipe["sct-lab1-mechanization"].enabled = false
data.raw.recipe["sct-lab1-mechanization"].normal.enabled = false
data.raw.recipe["sct-lab1-mechanization"].expensive.enabled = false
data.raw.recipe["sct-lab1-mechanization"].hidden = true
data.raw.recipe["sct-lab1-mechanization"].normal.hidden = true
data.raw.recipe["sct-lab1-mechanization"].expensive.hidden = true
data.raw.item["sct-lab1-mechanization"].enabled = false
end