Skip to content

Commit 559bd61

Browse files
committed
first step toward 0.15 release
1 parent 04b2719 commit 559bd61

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

linkHardCrafting.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mklink /j "mods/hardCrafting_0.5.2" "D:\modding\factorio\hardCrafting\source"

source/info.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "hardCrafting",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"title": "Hard crafting",
55
"author": "judos",
66
"description": "Modifies vanilla crafting and smelting to be much trickier, you will need better planning and more clever setup",
7-
"dependencies": ["base >= 0.14.0", "? fluid-barrel >= 1.0.0", "? marathon >= 0.5.4", "? angelsinfiniteores >= 0.1.2", "? SmartTrains"],
7+
"dependencies": ["base >= 0.15.0", "? fluid-barrel >= 1.0.0", "? marathon >= 0.5.4", "? angelsinfiniteores >= 0.1.2", "? SmartTrains"],
88
"homepage": "https://github.com/judos/hardCrafting",
9-
"factorio_version": "0.14"
9+
"factorio_version": "0.15"
1010
}

source/prototypes/dirt-tile.lua

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ data:extend({
1919
{
2020
{
2121
picture = "__hardCrafting__/graphics/terrain/dirt/dirt1.png",
22-
count = 22,
22+
count = 16,
2323
size = 1,
24-
weights = {0.085, 0.085, 0.085, 0.085, 0.087, 0.085, 0.065, 0.085, 0.045, 0.045, 0.045, 0.045, 0.005, 0.025, 0.045, 0.045, 0.005, 0.005, 0.005, 0.005, 0.003, 0.005 }
24+
weights = {0.085, 0.085, 0.085, 0.085, 0.087, 0.085, 0.065, 0.085, 0.045, 0.045, 0.045, 0.045, 0.005, 0.025, 0.045, 0.045 } -- , 0.005, 0.005, 0.005, 0.005, 0.003, 0.005
2525
},
2626
{
2727
picture = "__hardCrafting__/graphics/terrain/dirt/dirt2.png",
28-
count = 30,
28+
count = 16,
2929
size = 2,
3030
probability = 1,
31-
weights = {0.070, 0.070, 0.025, 0.070, 0.070, 0.070, 0.007, 0.025, 0.070, 0.050, 0.015, 0.026, 0.030, 0.005, 0.070, 0.027, 0.022, 0.032, 0.020, 0.020, 0.030, 0.005, 0.010, 0.002, 0.013, 0.007, 0.007, 0.010, 0.030, 0.030 }
31+
weights = {0.070, 0.070, 0.025, 0.070, 0.070, 0.070, 0.007, 0.025, 0.070, 0.050, 0.015, 0.026, 0.030, 0.005, 0.070, 0.027 } --, 0.022, 0.032, 0.020, 0.020, 0.030, 0.005, 0.010, 0.002, 0.013, 0.007, 0.007, 0.010, 0.030, 0.030 }
3232
},
3333
{
3434
picture = "__hardCrafting__/graphics/terrain/dirt/dirt4.png",
35-
count = 21,
35+
count = 16,
3636
line_length = 11,
3737
size = 4,
3838
probability = 1,
39-
weights = {0.070, 0.070, 0.070, 0.070, 0.070, 0.070, 0.015, 0.070, 0.070, 0.070, 0.015, 0.050, 0.070, 0.070, 0.065, 0.070, 0.070, 0.050, 0.050, 0.050, 0.050 }
39+
weights = {0.070, 0.070, 0.070, 0.070, 0.070, 0.070, 0.015, 0.070, 0.070, 0.070, 0.015, 0.050, 0.070, 0.070, 0.065, 0.070 } --, 0.070, 0.050, 0.050, 0.050, 0.050 }
4040
}
4141
},
4242
inner_corner =

source/prototypes/easier-but-more-trains.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-- Half the cost of diesel-locomotive
2-
for _,materialCost in pairs(data.raw["recipe"]["diesel-locomotive"].ingredients) do
2+
for _,materialCost in pairs(data.raw["recipe"]["locomotive"].ingredients) do
33
if materialCost["amount"] then
44
materialCost["amount"] = math.ceil(materialCost["amount"] / 2)
55
elseif materialCost[2] then

source/prototypes/harder-coal.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ fuelValueCoal = tonumber(fuelValueCoal:sub(1,fuelValueCoal:len()-2))
2020
local fuelValueCoalDust = (fuelValueCoal+ timeToPulverizeCoal*powerPulverizer) / 5 * 1.2
2121
fuelValueCoalDust = round(fuelValueCoalDust,1)
2222
data.raw["item"]["coal-dust"].fuel_value = tostring(fuelValueCoalDust).."MJ"
23+
data.raw["item"]["coal-dust"].fuel_category = "chemical"
2324

2425
-- Recipes: --
2526
-- item Name category subgroup time ingredients products order

0 commit comments

Comments
 (0)