Skip to content

Commit c9a121b

Browse files
committed
Kimberlite rock ratio buffs. Resolves pyanodon/pybugreports#976
1 parent d6a4ff9 commit c9a121b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ Version: 3.2.4
33
Date: ???
44
Changes:
55
- Buffed fertilized and agressive flora cultivation to be better than the previous recipe when considering the flora cost of manure
6+
- Buffed Thickened Coal Fines to Carbon Dust ratio from 1000:12 to 200:8. Resolves https://github.com/pyanodon/pybugreports/issues/976
7+
- Buffed Carbon Dust to Kimberlite Rock ratio from 30:1 to 9:2.5. Resolves https://github.com/pyanodon/pybugreports/issues/976
68
- Removed shorthand recipe declarations
79
- Changed the internal name of the intelligent unit technology from "nano-tech" to "quantum-processor".
810
- Removed muddy water output from geothermal water processing

prototypes/recipes/recipes-kimberlite.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ RECIPE{
55
enabled = false,
66
energy_required = 10,
77
ingredients = {
8-
{type = "fluid", name = "thickened-coal-fines", amount = 1000},
8+
{type = "fluid", name = "thickened-coal-fines", amount = 200},
99
},
1010
results = {
11-
{type = "item", name = "carbon-dust", amount = 12},
11+
{type = "item", name = "carbon-dust", amount = 8},
1212
},
1313
main_product = "carbon-dust",
1414
subgroup = "py-fusion-items",
@@ -22,11 +22,11 @@ RECIPE{
2222
enabled = false,
2323
energy_required = 45,
2424
ingredients = {
25-
{type = "item", name = "carbon-dust", amount = 30},
25+
{type = "item", name = "carbon-dust", amount = 9},
2626
{type = 'fluid', name = 'pressured-steam', amount = 2000, minimum_temperature = 2000},
2727
},
2828
results = {
29-
{type = "item", name = "kimberlite-rock", amount = 1},
29+
{type = "item", name = "kimberlite-rock", amount_min = 0, amount_max = 5},
3030
},
3131
main_product = "kimberlite-rock",
3232
subgroup = "py-fusion-items",

0 commit comments

Comments
 (0)