Compare commits
3 commits
d5ce5d42d5
...
9100bff69d
Author | SHA1 | Date | |
---|---|---|---|
![]() |
9100bff69d | ||
![]() |
ba34bf2450 | ||
![]() |
0b0cb8504e |
5 changed files with 61 additions and 5 deletions
|
@ -12,9 +12,8 @@ The duration of the stay on Lignumis will be rather short. The impact of the lat
|
|||
|
||||
#### Streamers featuring Lignumis
|
||||
|
||||
[](https://www.youtube.com/watch?v=1eH4oJtlBpE)
|
||||
[](https://www.youtube.com/live/OMDpDhZdTmU?feature=shared&t=290&list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=1) [](https://www.youtube.com/live/d4n1H6Z4KPc?list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=3)
|
||||
|
||||
[](https://www.youtube.com/watch?v=1eH4oJtlBpE) [](https://www.youtube.com/watch?v=TNR1-Z5XFxI)
|
||||
[](https://www.youtube.com/live/OMDpDhZdTmU?feature=shared&t=290&list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=2) [](https://www.youtube.com/live/d4n1H6Z4KPc?list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=3) [](https://www.youtube.com/live/guWhjqPrVN0?list=PLALTzJaRcgW97ItZgtZvkqFBcdVjKNVHz&index=4&t=362)
|
||||
_________________
|
||||
|
||||
## Mod recommendations
|
||||
|
|
|
@ -138,6 +138,7 @@ active-noise-cancelling=Active noise cancelling
|
|||
quality-assembler=Quality assembler
|
||||
aai-wood-loader=Wood loader
|
||||
basic-ore-crushing=Basic ore crushing
|
||||
astroponics-productivity=Astroponics productivity
|
||||
|
||||
[technology-description]
|
||||
wood-science-pack=Allows research of basic technologies based on wood products.
|
||||
|
|
|
@ -13,6 +13,8 @@ data:extend({
|
|||
|
||||
table.insert(data.raw["character"]["character"].crafting_categories, "wood-processing-or-assembling")
|
||||
|
||||
local has_oxygen = data.raw["surface-property"]["oxygen"] ~= nil
|
||||
|
||||
LumberMill.EntityBuilder:new()
|
||||
:burnerEnergySource({ emissions_per_minute = { noise = 100 } })
|
||||
:baseProductivity(0.5)
|
||||
|
@ -20,6 +22,16 @@ LumberMill.EntityBuilder:new()
|
|||
crafting_categories = { "wood-processing-or-assembling" },
|
||||
crafting_speed = 2,
|
||||
energy_usage = "1000kW",
|
||||
surface_conditions = {
|
||||
{
|
||||
property = has_oxygen and "oxygen" or "pressure",
|
||||
min = 10
|
||||
},
|
||||
{
|
||||
property = "gravity",
|
||||
min = 1
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
local lumber_mill_item = LumberMill.ItemBuilder:new()
|
||||
|
|
43
lignumis/prototypes/integrations/astroponics.lua
Normal file
43
lignumis/prototypes/integrations/astroponics.lua
Normal file
|
@ -0,0 +1,43 @@
|
|||
data:extend({
|
||||
{
|
||||
type = "technology",
|
||||
name = "astroponics-productivity",
|
||||
icons = {
|
||||
{ icon = "__base__/graphics/icons/wood.png", icon_size = 64 },
|
||||
{ icon = "__astroponics__/graphics/icons/fluid/liquid-fertilizer.png", shift = { -32, -32 }, scale = 1.2 },
|
||||
{
|
||||
icon = "__core__/graphics/icons/technology/constants/constant-recipe-productivity.png",
|
||||
icon_size = 128,
|
||||
scale = 0.5,
|
||||
shift = { 50, 50 },
|
||||
floating = true
|
||||
}
|
||||
},
|
||||
essential = false,
|
||||
level = 1,
|
||||
max_level = 5,
|
||||
show_levels_info = true,
|
||||
effects = {
|
||||
{
|
||||
type = "change-recipe-productivity",
|
||||
recipe = "tree-astroponics",
|
||||
change = 0.1
|
||||
},
|
||||
{
|
||||
type = "change-recipe-productivity",
|
||||
recipe = "bioslurry-recycling",
|
||||
change = 0.1
|
||||
}
|
||||
},
|
||||
prerequisites = { "astroponics", "production-science-pack" },
|
||||
unit = {
|
||||
count_formula = "L*250",
|
||||
ingredients = {
|
||||
{ "wood-science-pack", 1 },
|
||||
{ "production-science-pack", 1 },
|
||||
{ "space-science-pack", 1 },
|
||||
},
|
||||
time = 60
|
||||
}
|
||||
}
|
||||
})
|
|
@ -1,2 +1,3 @@
|
|||
require("vanilla")
|
||||
require("Wood-Walls")
|
||||
require("vanilla")
|
||||
require("Wood-Walls")
|
||||
require("astroponics")
|
Loading…
Add table
Add a link
Reference in a new issue