Compare commits
5 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
22e27da6eb | ||
|
|
bc50e46ed7 | ||
|
|
9fa0928341 | ||
|
|
d95e51113b | ||
| 7ce072707c |
4 changed files with 10 additions and 8 deletions
|
|
@ -1,8 +1,10 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.0.32
|
Version: 2.0.32
|
||||||
Date: ????
|
Date: 27.01.2026
|
||||||
Changes:
|
Bug Fixes:
|
||||||
- Updated Angels protyptes to new names
|
- Add missing seed ingredient to the sapling recipe
|
||||||
|
- Fix modules for farm and nursery
|
||||||
|
- Fix compatibility with Angel's mods
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 2.0.31
|
Version: 2.0.31
|
||||||
Date: 10.12.2025
|
Date: 10.12.2025
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ local ICONPATH_KR = BioInd.modRoot .. "/graphics/icons/mod_krastorio/"
|
||||||
local ICONPATHMIPS = BioInd.modRoot .. "/graphics/icons/mips/"
|
local ICONPATHMIPS = BioInd.modRoot .. "/graphics/icons/mips/"
|
||||||
|
|
||||||
local nitrogen = data.raw.fluid["kr-nitrogen"] and "kr-nitrogen" or "nitrogen"
|
local nitrogen = data.raw.fluid["kr-nitrogen"] and "kr-nitrogen" or "nitrogen"
|
||||||
|
local pellet_coke = data.raw.item["angels-pellet-coke"] and "angels-pellet-coke" or "pellet-coke"
|
||||||
|
|
||||||
data:extend({
|
data:extend({
|
||||||
{
|
{
|
||||||
|
|
@ -24,7 +25,7 @@ data:extend({
|
||||||
order = "a[bi]-a-g[bi-coke-coal]-2",
|
order = "a[bi]-a-g[bi-coke-coal]-2",
|
||||||
energy_required = 4,
|
energy_required = 4,
|
||||||
ingredients = {},
|
ingredients = {},
|
||||||
results = {{type="item", name="angels-pellet-coke", amount=1}},
|
results = {{type="item", name=pellet_coke, amount=1}},
|
||||||
always_show_made_in = true,
|
always_show_made_in = true,
|
||||||
allow_decomposition = false,
|
allow_decomposition = false,
|
||||||
allow_as_intermediate = false,
|
allow_as_intermediate = false,
|
||||||
|
|
|
||||||
|
|
@ -327,9 +327,7 @@ data:extend({
|
||||||
ingredient_count = 3,
|
ingredient_count = 3,
|
||||||
open_sound = { filename = "__base__/sound/machine-open.ogg", volume = 0.85 },
|
open_sound = { filename = "__base__/sound/machine-open.ogg", volume = 0.85 },
|
||||||
close_sound = { filename = "__base__/sound/machine-close.ogg", volume = 0.75 },
|
close_sound = { filename = "__base__/sound/machine-close.ogg", volume = 0.75 },
|
||||||
module_specification = {
|
module_slots = 3,
|
||||||
module_slots = 3
|
|
||||||
},
|
|
||||||
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
|
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -412,7 +410,7 @@ data:extend({
|
||||||
pipe_connections = { { flow_direction = "input", direction = defines.direction.north, position = { 0, -1 } } }
|
pipe_connections = { { flow_direction = "input", direction = defines.direction.north, position = { 0, -1 } } }
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
module_specification = {module_slots = 2},
|
module_slots = 2,
|
||||||
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
|
allowed_effects = { "consumption", "speed", "productivity", "pollution" },
|
||||||
graphics_set = {
|
graphics_set = {
|
||||||
animation = {
|
animation = {
|
||||||
|
|
|
||||||
|
|
@ -161,6 +161,7 @@ data:extend({
|
||||||
category = "biofarm-mod-greenhouse",
|
category = "biofarm-mod-greenhouse",
|
||||||
energy_required = 400,
|
energy_required = 400,
|
||||||
ingredients = {
|
ingredients = {
|
||||||
|
{ type = "item", name = "bi-seed", amount = 20 },
|
||||||
{ type = "fluid", name = "water", amount = 100 },
|
{ type = "fluid", name = "water", amount = 100 },
|
||||||
},
|
},
|
||||||
results = {
|
results = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue