forked from mexmer/ScienceCostTweakerM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata-final-fixes.lua
100 lines (85 loc) · 3.49 KB
/
data-final-fixes.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
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
require("config")
-- Cost updates
require("configs.costs.lolwhat")
require("configs.costs.uberwaffe")
require("configs.costs.normal")
require("configs.costs.extended")
-- Recipe fixes
require("prototypes.2_recipe")
-- tweaks for other mods
require("tweaks.aai.2_final")
require("tweaks.angelsmods.2_final")
require("tweaks.bobsmods.2_final")
require("tweaks.omnimatter.2_final")
require("tweaks.pymods.2_final")
-- Technolgoy map fix
require("prototypes.2_technology")
if (settings.startup["sct-difficulty-cost"].value ~= "noadjustment") then
-- Select the cost file depending on which one is requested.
if not sciencecosttweaker then sciencecosttweaker = {} end
sciencecosttweaker = sct_cost[settings.startup["sct-difficulty-cost"].value]
-- Iterate through all research, and update the costs as configured.
for index,tech in pairs(data.raw.technology) do
-- First, determine the tier of the research, by looking at what types of science packs is used in its research cost.
tier = 1
multiplier = sciencecosttweaker.costs.tier1;
for Index, Value in pairs( tech.unit.ingredients ) do
if (tier < 2 and tech.unit.ingredients[Index][1] == "logistic-science-pack") then
tier = 2
multiplier = sciencecosttweaker.costs.tier2;
end
if (tier < 3 and tech.unit.ingredients[Index][1] == "military-science-pack") then
tier = 3
multiplier = sciencecosttweaker.costs.military;
end
if (tier < 4 and tech.unit.ingredients[Index][1] == "production-science-pack") then
tier = 4
multiplier = sciencecosttweaker.costs.production;
end
if (tier < 5 and tech.unit.ingredients[Index][1] == "chemical-science-pack") then
tier = 5
multiplier = sciencecosttweaker.costs.tier3;
end
if (tier < 6 and tech.unit.ingredients[Index][1] == "utility-science-pack") then
tier = 6
multiplier = sciencecosttweaker.costs.hightech;
end
if (tier < 99 and tech.unit.ingredients[Index][1] == "module-case") then
tier = 99
multiplier = sciencecosttweaker.costs.bobmodules;
end
if (tech.unit.count_formula ~= nil) then
tier = 999999
multiplier = sciencecosttweaker.costs.formula;
end
end
-- If a multiplier is defined for this tier, then apply it.
if (multiplier ~= nil) then
local unitCopy = table.deepcopy( tech.unit )
unitCopy.time = math.max(unitCopy.time * multiplier.time, 1);
-- Now, since infinite research follows a slightly different layout, we have to account for that here.
-- Only adjust the count if it has a count field
if (unitCopy.count ~= nil) then
-- Now adjust by the modifiers for this tier
unitCopy.count = math.max(math.floor(unitCopy.count * multiplier.stepCount), 1);
for Index, Value in ipairs( unitCopy.ingredients ) do
-- For each type of science pack, multiply its count per research step by the given multiplier
local ingredientName = Value[1]
if (multiplier.cost[ingredientName] ~= nil) then
local ingredientCostCount = Value[2]
local mult = 1
mult = multiplier.cost[ingredientName]
ingredientCostCount = math.floor(ingredientCostCount * mult)
ingredientCostCount = math.max(ingredientCostCount, 1);
Value[2] = ingredientCostCount
end
end
end
-- If the tech uses a count formulae instead, then adjust the formula by wrapping it in our added strings
if (unitCopy.count_formula ~= nil) then
unitCopy.count_formula = multiplier.prefix .. unitCopy.count_formula .. multiplier.postfix
end
tech.unit = unitCopy
end
end
end