59 lines
2.3 KiB
Lua
59 lines
2.3 KiB
Lua
require("prototypes.fuel")
|
||
require("prototypes.fish")
|
||
require("prototypes.washers")
|
||
require("prototypes.seed-extractor")
|
||
angelsmods.trigger.smelting_products["cobalt"].plate=true
|
||
--новые насосы
|
||
require("prototypes/offshore-pump/item")
|
||
require("prototypes/offshore-pump/recipe")
|
||
require("prototypes/offshore-pump/more-offshore-pumps")
|
||
require("prototypes/offshore-pump/entity-offshore-pump")
|
||
require("prototypes/offshore-pump/entity-seafloor-pump")
|
||
require("prototypes/offshore-pump/hidden-pole")
|
||
require("prototypes/offshore-pump/technology")
|
||
--
|
||
require("prototypes.artillery-prototype.artillery-turret-prototype") --фикс убирающий био-арту и добовляющий новую на базе обычной
|
||
|
||
require("prototypes.beltentities") --переехало из paranoidal-tweaks_0.18.34 (sbelyakov)
|
||
|
||
require("prototypes.micro-fix") --доработка напильником всего подряд -- фиксы от Кирика
|
||
|
||
require("prototypes.entity.entity") --фиксы неправильных имён от SEO
|
||
require("prototypes.recipe-new") --новые рецепты
|
||
|
||
require("prototypes.BetterAlertArrows_100") --мод BetterAlertArrows
|
||
|
||
require("prototypes.mod_compatibility.heroturrets")
|
||
-------------------------------------------------------------------------------------------------
|
||
require("prototypes.bio-content.bio-content-list") --Новый Биоконтент
|
||
-------------------------------------------------------------------------------------------------
|
||
--перенаправляем функцию ангела на функцию боба
|
||
if not mods["angelsindustries"] then
|
||
|
||
function angelsmods.functions.OV.add_unlock(technology, recipe)
|
||
if
|
||
type(technology) == "string" and
|
||
type(recipe) == "string" and
|
||
data.raw.technology[technology] and
|
||
data.raw.recipe[recipe]
|
||
then
|
||
bobmods.lib.tech.add_recipe_unlock(technology, recipe)
|
||
end
|
||
end
|
||
|
||
end
|
||
|
||
-- Uniform recipe mod
|
||
for _,r in pairs(data.raw["recipe"]) do
|
||
r.always_show_products=true;
|
||
r.show_amount_in_title=false;
|
||
if r.normal ~= nil then
|
||
r.normal.always_show_products = true;
|
||
r.normal.show_amount_in_title = false;
|
||
end
|
||
if r.expensive ~= nil then
|
||
r.expensive.always_show_products = true;
|
||
r.expensive.show_amount_in_title = false;
|
||
end
|
||
end
|
||
-- Uniform recipe end |