Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
---------------------------------------------------------------------------------------------------
Version: 3.2.11
Date: ?????
Date: 2025-09-04
Changes:
- Buffed uranium phytomining to make MOX cells a viable option. I have no idea if MOX or uranium cells are better, but both are possible. Without candy shuffling at low science levels, uranium is far superior, but MOX is no longer a trap
- Buffed uranium enriched biomass to uranium ore recipe from 5:40 to 4:50
- Buffed uranium enriched biomass recipe times from 180:120:80, 120:100:80
- Buffed uranium enriched biomass recipe output from 10:20:80, 40:60:80
- Reduced bhoddos cost of urnaium enriched biomass from 8->5
Locale:
- Added Dutch locale courtesy of QatSquirrel on github
---------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "PyBlock",
"version": "3.2.10",
"version": "3.2.11",
"factorio_version": "2.0",
"title": "PyBlock",
"author": "KingArthur",
Expand Down
16 changes: 9 additions & 7 deletions prototypes/updates/pyalienlife-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -237,30 +237,32 @@ RECIPE("cadaveric-pb"):remove_unlock("phytomining"):add_unlock("phytomining-mk02
RECIPE("s-biomass-extraction"):remove_unlock("phytomining"):add_unlock("phytomining-mk02")

-- Bhoddos to uranium
RECIPE("ur-biomass-extraction"):replace_result("uranium-ore", "uranium-ore", 40):replace_ingredient("ur-biomass", "ur-biomass", 5):set_fields {energy_required = 80}:remove_unlock("phytomining-mk03"):add_unlock("phytomining-mk02")
RECIPE("ur-biomass-extraction"):replace_result("uranium-ore", "uranium-ore", 50):replace_ingredient("ur-biomass", "ur-biomass", 4):set_fields {energy_required = 80}:remove_unlock("phytomining-mk03"):add_unlock("phytomining-mk02")
RECIPE("bhodos-ur"):set_fields {
ingredients = {
{type = "fluid", name = "pressured-steam", amount = 500, minimum_temperature = 2000},
{type = "item", name = "bhoddos", amount = 8}
{type = "item", name = "bhoddos", amount = 5}
},
energy_required = 180
results = {{type = "item", name = "ur-biomass", amount = 40}},
energy_required = 120
}:remove_unlock("phytomining-mk03"):add_unlock("phytomining-mk02")
RECIPE("bhodos-ur-2"):set_fields {
ingredients = {
{type = "fluid", name = "pressured-steam", amount = 500, minimum_temperature = 2000},
{type = "fluid", name = "chelator", amount = 50},
{type = "item", name = "bhoddos", amount = 8}
{type = "item", name = "bhoddos", amount = 5}
},
energy_required = 120
results = {{type = "item", name = "ur-biomass", amount = 60}},
energy_required = 100
}:remove_unlock("phytomining-mk03"):add_unlock("phytomining-mk02")
RECIPE("bhodos-ur-3"):set_fields {
ingredients = {
{type = "fluid", name = "pressured-steam", amount = 500, minimum_temperature = 2000},
{type = "fluid", name = "chelator", amount = 50},
{type = "item", name = "bhoddos", amount = 8},
{type = "item", name = "bhoddos", amount = 5},
{type = "item", name = "hmas", amount = 1}
},
-- energy_required = 160
energy_required = 80
}

--Vrauks
Expand Down