Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
415ab78fec | ||
![]() |
ee40f46581 |
5 changed files with 13 additions and 31 deletions
|
@ -1,28 +1,10 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.2.1
|
Version: 2.0.1
|
||||||
Date: 2024-07-28
|
Date: 11.10.2025
|
||||||
Features:
|
Bug Fixes:
|
||||||
- Fixed dependencies with different types of mod lists.
|
- Increase mod compatibility
|
||||||
- Added carbon dioxide as byproduct from calcium plate.
|
|
||||||
- Changed calcium plate to be able to smelt on surface and not just in space.
|
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.2.0
|
Version: 2.0.0
|
||||||
Date: 2024-06-28
|
Date: 10.10.2025
|
||||||
Features:
|
Features:
|
||||||
- Added calcium chloride.
|
- Update to Factorio 2.0
|
||||||
- Changed calcium plate research.
|
|
||||||
---------------------------------------------------------------------------------------------------
|
|
||||||
Version: 0.1.2
|
|
||||||
Date: 2024-01-21
|
|
||||||
Features:
|
|
||||||
- Removed old unused files.
|
|
||||||
---------------------------------------------------------------------------------------------------
|
|
||||||
Version: 0.1.1
|
|
||||||
Date: 2024-01-06
|
|
||||||
Features:
|
|
||||||
- Added quicklime to steel plate.
|
|
||||||
---------------------------------------------------------------------------------------------------
|
|
||||||
Version: 0.1.0
|
|
||||||
Date: 2023-11-23
|
|
||||||
Features:
|
|
||||||
- Alpha release.
|
|
|
@ -129,7 +129,7 @@ function util.se_matter(params)
|
||||||
{"se-astronomic-science-pack-4", 1},
|
{"se-astronomic-science-pack-4", 1},
|
||||||
{"se-energy-science-pack-4", 1},
|
{"se-energy-science-pack-4", 1},
|
||||||
{"se-material-science-pack-4", 1},
|
{"se-material-science-pack-4", 1},
|
||||||
{"matter-tech-card", 1},
|
{"kr-matter-tech-card", 1},
|
||||||
{"se-deep-space-science-pack-1", 1},
|
{"se-deep-space-science-pack-1", 1},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Limestone2",
|
"name": "Limestone2",
|
||||||
"version": "2.0.0",
|
"version": "2.0.1",
|
||||||
"factorio_version": "2.0",
|
"factorio_version": "2.0",
|
||||||
"title": "Limestone",
|
"title": "Limestone",
|
||||||
"author": "Timeken, cackling fiend",
|
"author": "Timeken, cackling fiend",
|
||||||
|
|
|
@ -33,7 +33,7 @@ data:extend({
|
||||||
{
|
{
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
name = "limestone-powder",
|
name = "limestone-powder",
|
||||||
category = "crushing",
|
category = "kr-crushing",
|
||||||
order = "l",
|
order = "l",
|
||||||
enabled = false,
|
enabled = false,
|
||||||
energy_required = 1,
|
energy_required = 1,
|
||||||
|
@ -63,7 +63,7 @@ data:extend({
|
||||||
enabled = false,
|
enabled = false,
|
||||||
energy_required = 16,
|
energy_required = 16,
|
||||||
ingredients = {{type="item", name="calcium-chloride", amount=10}, { type = "fluid", name = "water", amount = 200 }},
|
ingredients = {{type="item", name="calcium-chloride", amount=10}, { type = "fluid", name = "water", amount = 200 }},
|
||||||
results = {{ type = "fluid", name = "chlorine", amount = 100 }, { type = "fluid", name = "mineral-water", amount = 100 }},
|
results = {{ type = "fluid", name = "kr-chlorine", amount = 100 }, { type = "fluid", name = "kr-mineral-water", amount = 100 }},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
util.add_productivity("limestone-powder")
|
util.add_productivity("limestone-powder")
|
||||||
|
@ -178,7 +178,7 @@ if (mods["Krastorio2"] and mods["space-exploration"]) or false then
|
||||||
name = "bio-advanced-solar-panel",
|
name = "bio-advanced-solar-panel",
|
||||||
icons =
|
icons =
|
||||||
{
|
{
|
||||||
{ icon = "__Krastorio2Assets__/entities/advanced-solar-panel/advanced-solar-panel.png", icon_size = 128 },
|
{ icon = "__Krastorio2Assets__/buildings/advanced-solar-panel/advanced-solar-panel.png", icon_size = 128 },
|
||||||
{ icon = "__Limestone2__/graphics/icons/organic-solar-cell.png", icon_size = 64, scale=0.2, shift= {-8, -8}},
|
{ icon = "__Limestone2__/graphics/icons/organic-solar-cell.png", icon_size = 64, scale=0.2, shift= {-8, -8}},
|
||||||
},
|
},
|
||||||
category = "space-manufacturing",
|
category = "space-manufacturing",
|
||||||
|
|
|
@ -4,7 +4,7 @@ local util = require("data-util")
|
||||||
util.add_ingredient("concrete", "quicklime", 10)
|
util.add_ingredient("concrete", "quicklime", 10)
|
||||||
|
|
||||||
-- Mod changes
|
-- Mod changes
|
||||||
util.remove_ingredient("concrete", "sand")
|
util.remove_ingredient("concrete", mods["Krastorio2"] and "kr-sand" or "sand")
|
||||||
|
|
||||||
--Concret
|
--Concret
|
||||||
if mods["bzzirconium"] then
|
if mods["bzzirconium"] then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue