diff --git a/Makefile b/Makefile index d5f0c22..4e0a263 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 1.0.1 +VERSION := 1.0.2 NAME := marathon all: clean build install_mod diff --git a/info.json b/info.json index b378669..18cff0a 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "marathon", - "version": "1.0.1", + "version": "1.0.2", "title": "Marathon Mod", "author": "Benoit Girard & Afforess", "contributors": ["Wulfson", "KeepOnDigging", "gheift"], diff --git a/migrations/Marathon_1.0.2.lua b/migrations/Marathon_1.0.2.lua new file mode 100644 index 0000000..ced0675 --- /dev/null +++ b/migrations/Marathon_1.0.2.lua @@ -0,0 +1,3 @@ +for i, force in pairs(game.forces) do + force.reset_recipes() +end diff --git a/prototypes/bobsmods/recipe-intermediate.lua b/prototypes/bobsmods/recipe-intermediate.lua index 68b0f1d..5a7fe2d 100644 --- a/prototypes/bobsmods/recipe-intermediate.lua +++ b/prototypes/bobsmods/recipe-intermediate.lua @@ -25,6 +25,22 @@ if data.raw.item["silicon-nitride"] then }) end +update_recipe("cobalt-oxide-from-copper", +{ + energy_required = 37.5, + ingredients = { + {type = "item", name = "copper-ore", amount = 7}, + {type = "item", name = "stone", amount = 2}, + {type = "item", name = "coal", amount = 2}, + {type = "fluid", name = "hydrogen", amount = 2}, + }, + results= + { + {type = "item", name = "copper-plate", amount = 50}, + {type = "item", name = "cobalt-oxide", amount = 2}, + }, +}) + update_recipe("lithium-ion-battery", { energy_required = 1.5,