Compare commits
No commits in common. "main" and "2.0.0" have entirely different histories.
5 changed files with 32 additions and 14 deletions
|
@ -1,10 +1,28 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.1
|
||||
Date: 11.10.2025
|
||||
Bug Fixes:
|
||||
- Increase mod compatibility
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.0
|
||||
Date: 10.10.2025
|
||||
Version: 0.2.1
|
||||
Date: 2024-07-28
|
||||
Features:
|
||||
- Update to Factorio 2.0
|
||||
- Fixed dependencies with different types of mod lists.
|
||||
- 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
|
||||
Date: 2024-06-28
|
||||
Features:
|
||||
- Added calcium chloride.
|
||||
- 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-energy-science-pack-4", 1},
|
||||
{"se-material-science-pack-4", 1},
|
||||
{"kr-matter-tech-card", 1},
|
||||
{"matter-tech-card", 1},
|
||||
{"se-deep-space-science-pack-1", 1},
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Limestone2",
|
||||
"version": "2.0.1",
|
||||
"version": "2.0.0",
|
||||
"factorio_version": "2.0",
|
||||
"title": "Limestone",
|
||||
"author": "Timeken, cackling fiend",
|
||||
|
|
|
@ -33,7 +33,7 @@ data:extend({
|
|||
{
|
||||
type = "recipe",
|
||||
name = "limestone-powder",
|
||||
category = "kr-crushing",
|
||||
category = "crushing",
|
||||
order = "l",
|
||||
enabled = false,
|
||||
energy_required = 1,
|
||||
|
@ -63,7 +63,7 @@ data:extend({
|
|||
enabled = false,
|
||||
energy_required = 16,
|
||||
ingredients = {{type="item", name="calcium-chloride", amount=10}, { type = "fluid", name = "water", amount = 200 }},
|
||||
results = {{ type = "fluid", name = "kr-chlorine", amount = 100 }, { type = "fluid", name = "kr-mineral-water", amount = 100 }},
|
||||
results = {{ type = "fluid", name = "chlorine", amount = 100 }, { type = "fluid", name = "mineral-water", amount = 100 }},
|
||||
}
|
||||
})
|
||||
util.add_productivity("limestone-powder")
|
||||
|
@ -178,7 +178,7 @@ if (mods["Krastorio2"] and mods["space-exploration"]) or false then
|
|||
name = "bio-advanced-solar-panel",
|
||||
icons =
|
||||
{
|
||||
{ icon = "__Krastorio2Assets__/buildings/advanced-solar-panel/advanced-solar-panel.png", icon_size = 128 },
|
||||
{ icon = "__Krastorio2Assets__/entities/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}},
|
||||
},
|
||||
category = "space-manufacturing",
|
||||
|
|
|
@ -4,7 +4,7 @@ local util = require("data-util")
|
|||
util.add_ingredient("concrete", "quicklime", 10)
|
||||
|
||||
-- Mod changes
|
||||
util.remove_ingredient("concrete", mods["Krastorio2"] and "kr-sand" or "sand")
|
||||
util.remove_ingredient("concrete", "sand")
|
||||
|
||||
--Concret
|
||||
if mods["bzzirconium"] then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue