-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
55be47b
commit 3afaa53
Showing
8 changed files
with
171 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
if mods["Nanobots"] then | ||
data:extend({ | ||
{ | ||
type = "technology", | ||
name = "nv-bi_mk1", | ||
icon_size = 256, icon_mipmaps = 4, | ||
icons = util.technology_icon_constant_equipment("__Power-Armour-Replacer__/texture/tech/belt-immunity-night-vision-equipment.png"), | ||
prerequisites = {"armour_3"}, | ||
effects = | ||
{ | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "nv_mk1" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "bi_mk1" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-feeder" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-nanointerface" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-launcher" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-trees" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-items" | ||
}, | ||
}, | ||
unit = | ||
{ | ||
count = 500, | ||
ingredients = { | ||
{"automation-science-pack", 1}, | ||
{"logistic-science-pack", 1}, | ||
{"military-science-pack", 1}, | ||
}, | ||
time = 15 | ||
}, | ||
order = "g-g" | ||
}, | ||
}); | ||
end | ||
|
||
if mods["Krastorio2"] then | ||
data:extend({ | ||
{ | ||
type = "technology", | ||
name = "nv-bi_mk1", | ||
icon_size = 256, icon_mipmaps = 4, | ||
icons = util.technology_icon_constant_equipment("__Power-Armour-Replacer__/texture/tech/belt-immunity-night-vision-equipment.png"), | ||
prerequisites = {"armour_3"}, | ||
effects = | ||
{ | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "nv_mk1" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "bi_mk1" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "vehicle-roboport" | ||
}, | ||
}, | ||
unit = | ||
{ | ||
count = 500, | ||
ingredients = { | ||
{"automation-science-pack", 1}, | ||
{"logistic-science-pack", 1}, | ||
{"military-science-pack", 1}, | ||
}, | ||
time = 15 | ||
}, | ||
order = "g-g" | ||
}, | ||
}); | ||
end | ||
|
||
if mods["Krastorio2"] and mods["Nanobots"] then | ||
data:extend({ | ||
{ | ||
type = "technology", | ||
name = "nv-bi_mk1", | ||
icon_size = 256, icon_mipmaps = 4, | ||
icons = util.technology_icon_constant_equipment("__Power-Armour-Replacer__/texture/tech/belt-immunity-night-vision-equipment.png"), | ||
prerequisites = {"armour_3"}, | ||
effects = | ||
{ | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "nv_mk1" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "bi_mk1" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-feeder" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-nanointerface" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-launcher" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-trees" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "equipment-bot-chip-items" | ||
}, | ||
{ | ||
type = "unlock-recipe", | ||
recipe = "vehicle-roboport" | ||
}, | ||
}, | ||
unit = | ||
{ | ||
count = 500, | ||
ingredients = { | ||
{"automation-science-pack", 1}, | ||
{"logistic-science-pack", 1}, | ||
{"military-science-pack", 1}, | ||
}, | ||
time = 15 | ||
}, | ||
order = "g-g" | ||
}, | ||
}); | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
--require("util") | ||
|
||
-- Vanilla | ||
require("compatibility.vanilla.vanilla_recipes") | ||
require("compatibility.vanilla.vanilla_tech") | ||
|
||
--TeleportationEquipment Mod | ||
--require("compatibility.teleportation-equipment.teleportation_tech") | ||
|
||
--osm-radioactivity Mod | ||
--require("compatibility.osm-radioactivity.radioactivity_tech") | ||
|
||
--Insectitron Mod | ||
|
||
--SpaceMod Mod | ||
require("compatibility.SpaceMod.SpaceMod_recipes") | ||
|
||
--Any-else | ||
require("compatibility.Misc.misc") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.