Skip to content

Commit 23e7f48

Browse files
bhoddos phytomining buffs to make MOX a viable option (#55)
* bhoddos phytomining buffs to make MOX a viable option * Merge branch 'master' into remove-MOX-trap
1 parent 81ff18b commit 23e7f48

3 files changed

Lines changed: 17 additions & 9 deletions

File tree

changelog.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
---------------------------------------------------------------------------------------------------
22
Version: 3.2.11
3-
Date: ?????
3+
Date: 2025-09-04
4+
Changes:
5+
- 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
6+
- Buffed uranium enriched biomass to uranium ore recipe from 5:40 to 4:50
7+
- Buffed uranium enriched biomass recipe times from 180:120:80, 120:100:80
8+
- Buffed uranium enriched biomass recipe output from 10:20:80, 40:60:80
9+
- Reduced bhoddos cost of urnaium enriched biomass from 8->5
410
Locale:
511
- Added Dutch locale courtesy of QatSquirrel on github
612
---------------------------------------------------------------------------------------------------

info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "PyBlock",
3-
"version": "3.2.10",
3+
"version": "3.2.11",
44
"factorio_version": "2.0",
55
"title": "PyBlock",
66
"author": "KingArthur",

prototypes/updates/pyalienlife-updates.lua

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -237,30 +237,32 @@ RECIPE("cadaveric-pb"):remove_unlock("phytomining"):add_unlock("phytomining-mk02
237237
RECIPE("s-biomass-extraction"):remove_unlock("phytomining"):add_unlock("phytomining-mk02")
238238

239239
-- Bhoddos to uranium
240-
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")
240+
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")
241241
RECIPE("bhodos-ur"):set_fields {
242242
ingredients = {
243243
{type = "fluid", name = "pressured-steam", amount = 500, minimum_temperature = 2000},
244-
{type = "item", name = "bhoddos", amount = 8}
244+
{type = "item", name = "bhoddos", amount = 5}
245245
},
246-
energy_required = 180
246+
results = {{type = "item", name = "ur-biomass", amount = 40}},
247+
energy_required = 120
247248
}:remove_unlock("phytomining-mk03"):add_unlock("phytomining-mk02")
248249
RECIPE("bhodos-ur-2"):set_fields {
249250
ingredients = {
250251
{type = "fluid", name = "pressured-steam", amount = 500, minimum_temperature = 2000},
251252
{type = "fluid", name = "chelator", amount = 50},
252-
{type = "item", name = "bhoddos", amount = 8}
253+
{type = "item", name = "bhoddos", amount = 5}
253254
},
254-
energy_required = 120
255+
results = {{type = "item", name = "ur-biomass", amount = 60}},
256+
energy_required = 100
255257
}:remove_unlock("phytomining-mk03"):add_unlock("phytomining-mk02")
256258
RECIPE("bhodos-ur-3"):set_fields {
257259
ingredients = {
258260
{type = "fluid", name = "pressured-steam", amount = 500, minimum_temperature = 2000},
259261
{type = "fluid", name = "chelator", amount = 50},
260-
{type = "item", name = "bhoddos", amount = 8},
262+
{type = "item", name = "bhoddos", amount = 5},
261263
{type = "item", name = "hmas", amount = 1}
262264
},
263-
-- energy_required = 160
265+
energy_required = 80
264266
}
265267

266268
--Vrauks

0 commit comments

Comments
 (0)