Skip to content

Commit

Permalink
first step toward 0.15 release
Browse files Browse the repository at this point in the history
  • Loading branch information
judos committed May 2, 2017
1 parent 04b2719 commit 559bd61
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions linkHardCrafting.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
mklink /j "mods/hardCrafting_0.5.2" "D:\modding\factorio\hardCrafting\source"
6 changes: 3 additions & 3 deletions source/info.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "hardCrafting",
"version": "0.5.2",
"version": "0.5.3",
"title": "Hard crafting",
"author": "judos",
"description": "Modifies vanilla crafting and smelting to be much trickier, you will need better planning and more clever setup",
"dependencies": ["base >= 0.14.0", "? fluid-barrel >= 1.0.0", "? marathon >= 0.5.4", "? angelsinfiniteores >= 0.1.2", "? SmartTrains"],
"dependencies": ["base >= 0.15.0", "? fluid-barrel >= 1.0.0", "? marathon >= 0.5.4", "? angelsinfiniteores >= 0.1.2", "? SmartTrains"],
"homepage": "https://github.com/judos/hardCrafting",
"factorio_version": "0.14"
"factorio_version": "0.15"
}
12 changes: 6 additions & 6 deletions source/prototypes/dirt-tile.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,24 @@ data:extend({
{
{
picture = "__hardCrafting__/graphics/terrain/dirt/dirt1.png",
count = 22,
count = 16,
size = 1,
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 }
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
},
{
picture = "__hardCrafting__/graphics/terrain/dirt/dirt2.png",
count = 30,
count = 16,
size = 2,
probability = 1,
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 }
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 }
},
{
picture = "__hardCrafting__/graphics/terrain/dirt/dirt4.png",
count = 21,
count = 16,
line_length = 11,
size = 4,
probability = 1,
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 }
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 }
}
},
inner_corner =
Expand Down
2 changes: 1 addition & 1 deletion source/prototypes/easier-but-more-trains.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- Half the cost of diesel-locomotive
for _,materialCost in pairs(data.raw["recipe"]["diesel-locomotive"].ingredients) do
for _,materialCost in pairs(data.raw["recipe"]["locomotive"].ingredients) do
if materialCost["amount"] then
materialCost["amount"] = math.ceil(materialCost["amount"] / 2)
elseif materialCost[2] then
Expand Down
1 change: 1 addition & 0 deletions source/prototypes/harder-coal.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ fuelValueCoal = tonumber(fuelValueCoal:sub(1,fuelValueCoal:len()-2))
local fuelValueCoalDust = (fuelValueCoal+ timeToPulverizeCoal*powerPulverizer) / 5 * 1.2
fuelValueCoalDust = round(fuelValueCoalDust,1)
data.raw["item"]["coal-dust"].fuel_value = tostring(fuelValueCoalDust).."MJ"
data.raw["item"]["coal-dust"].fuel_category = "chemical"

-- Recipes: --
-- item Name category subgroup time ingredients products order
Expand Down

0 comments on commit 559bd61

Please sign in to comment.