textplates

This commit is contained in:
Brevven 2022-12-29 20:04:57 -08:00
parent f8b5125e14
commit b88ae1ae15
4 changed files with 33 additions and 1 deletions

View file

@ -107,6 +107,8 @@ util.add_prerequisite("heavy-armor", "copper-processing")
util.set_enabled("deadlock-copper-lamp", false)
util.add_effect("copper-processing", { type = "unlock-recipe", recipe = "deadlock-copper-lamp" })
require("compatibility/textplates")
-- All customizations or custom unlocks prior to this block
util.add_unlock_force("electronics", "electronic-circuit")
util.replace_ingredients_prior_to("electronics", "electronic-circuit", "aluminum-cable")

View file

@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.4.19
Date: 2022-12-30
Changes:
- Textplates: Copper textplates have a tech, and are made from copper
---------------------------------------------------------------------------------------------------
Version: 0.4.18
Date: 2022-12-24
Localization:

View file

@ -0,0 +1,25 @@
local util = require("data-util");
if mods.textplates then
local material = "copper"
local prerequisite_tech = data.raw.technology[material.."-processing"]
data:extend({{
type = "technology",
name = "textplates-"..material,
effects = {
},
icon = "__textplates__/graphics/entity/"..material.."/t.png",
icon_size = 128,
order = "a",
prerequisites = {material.."-processing"},
unit = {
count = 10,
ingredients = table.deepcopy(prerequisite_tech.unit.ingredients),
time = prerequisite_tech.unit.time
},
localised_name = { "technology-name.textplate", {"textplates.".. material.."-C"} }
}})
util.add_unlock_force("textplates-"..material, "textplate-small-"..material)
util.add_unlock_force("textplates-"..material, "textplate-large-"..material)
end

View file

@ -1,6 +1,6 @@
{
"name": "bzaluminum",
"version": "0.4.18",
"version": "0.4.19",
"factorio_version": "1.1",
"title": "Aluminum",
"author": "Brevven",