Compare commits
No commits in common. "36b436daf28634afd06a4075ad743940553f17ee" and "305c61b1adde208b8e3288813008a659c8e3d715" have entirely different histories.
36b436daf2
...
305c61b1ad
2 changed files with 4 additions and 36 deletions
|
@ -74,13 +74,14 @@ data:extend({
|
||||||
{
|
{
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
name = "basic-radar",
|
name = "basic-radar",
|
||||||
category = "crafting-with-steam",
|
category = "crafting-with-fluid",
|
||||||
energy_required = 10,
|
energy_required = 10,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{ type = "item", name = "stone-brick", amount = 4 },
|
{ type = "item", name = "stone-brick", amount = 4 },
|
||||||
{ type = "item", name = "wooden-gear-wheel", amount = 4 },
|
{ type = "item", name = "wooden-gear-wheel", amount = 4 },
|
||||||
{ type = "item", name = "gold-plate", amount = 4 },
|
{ type = "item", name = "gold-plate", amount = 4 },
|
||||||
{ type = "item", name = "gold-cable", amount = 4 }
|
{ type = "item", name = "gold-cable", amount = 4 },
|
||||||
|
{ type = "fluid", name = "steam", amount = 20 }
|
||||||
},
|
},
|
||||||
results = { { type = "item", name = "basic-radar", amount = 1 } },
|
results = { { type = "item", name = "basic-radar", amount = 1 } },
|
||||||
enabled = false
|
enabled = false
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
local Technology = require("__cf-lib__/data/Technology")
|
|
||||||
|
|
||||||
data:extend({
|
data:extend({
|
||||||
{
|
{
|
||||||
type = "fluid",
|
type = "fluid",
|
||||||
|
@ -16,37 +14,8 @@ data:extend({
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
name = "wood-liquefaction",
|
|
||||||
category = "crafting-with-steam",
|
|
||||||
icon_size = 64,
|
|
||||||
icon_mipmaps = 4,
|
|
||||||
icons = {
|
|
||||||
{ icon = "__lignumis__/graphics/icons/wood-pulp.png" },
|
|
||||||
{ icon = "__base__/graphics/icons/wood.png", scale = 0.25, shift = { 8, 8 } },
|
|
||||||
},
|
|
||||||
subgroup = "fluid-recipes",
|
|
||||||
order = "a[oil-processing]-d[wood-liquefaction]",
|
|
||||||
enabled = false,
|
|
||||||
energy_required = 3,
|
|
||||||
crafting_machine_tint = {
|
|
||||||
primary = { r = 0.57, g = 0.392, b = 0.114, a = 1.000 },
|
|
||||||
secondary = { r = 0.57, g = 0.392, b = 0.114, a = 1.000 },
|
|
||||||
tertiary = { r = 0.57, g = 0.392, b = 0.114, a = 1.000 },
|
|
||||||
quaternary = { r = 0.57, g = 0.392, b = 0.114, a = 1.000 }
|
|
||||||
},
|
|
||||||
ingredients = {
|
|
||||||
{ type = "item", name = "wood", amount = 1 }
|
|
||||||
},
|
|
||||||
results = {
|
|
||||||
{ type = "fluid", name = "wood-pulp", amount = 10 }
|
|
||||||
},
|
|
||||||
allow_productivity = true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type = "recipe",
|
|
||||||
name = "wood-liquefaction-steam",
|
|
||||||
localised_name = { "recipe-name.wood-liquefaction" },
|
|
||||||
category = "crafting-with-fluid",
|
category = "crafting-with-fluid",
|
||||||
|
name = "wood-liquefaction",
|
||||||
icon_size = 64,
|
icon_size = 64,
|
||||||
icon_mipmaps = 4,
|
icon_mipmaps = 4,
|
||||||
icons = {
|
icons = {
|
||||||
|
@ -99,5 +68,3 @@ data:extend({
|
||||||
order = "w"
|
order = "w"
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
Technology:new("automation-2"):addRecipe("wood-liquefaction-steam")
|
|
Loading…
Add table
Reference in a new issue