Skip to content

Instantly share code, notes, and snippets.

@vorku
Created September 24, 2016 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vorku/a81303ddca971176aa6b1900493349a2 to your computer and use it in GitHub Desktop.
Save vorku/a81303ddca971176aa6b1900493349a2 to your computer and use it in GitHub Desktop.
Fixes for Angel's Refinining 0.3.3
diff --git a/prototypes/recipes/angels-water-treatment.lua b/prototypes/recipes/angels-water-treatment.lua
index c503626..50340b1 100644
--- a/prototypes/recipes/angels-water-treatment.lua
+++ b/prototypes/recipes/angels-water-treatment.lua
@@ -162,6 +162,8 @@ data.raw["recipe"]["angelsore4-chunk"].ingredients[2]={type="fluid", name="water
data.raw["recipe"]["angelsore5-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=5}
data.raw["recipe"]["angelsore6-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=5}
data.raw["recipe"]["angelsore7-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=5}
+data.raw["recipe"]["iron-ore-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=2}^M
+data.raw["recipe"]["copper-ore-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=2}^M
data.raw["recipe"]["angelsore1-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
data.raw["recipe"]["angelsore2-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
@@ -170,6 +172,8 @@ data.raw["recipe"]["angelsore4-chunk"].results[2]={type = "fluid", name = "water
data.raw["recipe"]["angelsore5-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
data.raw["recipe"]["angelsore6-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
data.raw["recipe"]["angelsore7-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
+data.raw["recipe"]["iron-ore-chunk"].results[2]={type="fluid", name="water-floatation-waste", amount=2}^M
+data.raw["recipe"]["copper-ore-chunk"].results[2]={type="fluid", name="water-floatation-waste", amount=2}^M
data.raw["recipe"]["slag-processing-filtering-1"].ingredients[2]={type="fluid", name="water-purified", amount=5}
data.raw["recipe"]["slag-processing-filtering-2"].ingredients[2]={type="fluid", name="water-purified", amount=5}
diff --git a/prototypes/recipes/vanilla-refining-output.lua b/prototypes/recipes/vanilla-refining-output.lua
index 2dcc39f..4937c40 100644
--- a/prototypes/recipes/vanilla-refining-output.lua
+++ b/prototypes/recipes/vanilla-refining-output.lua
@@ -948,6 +948,7 @@ data:extend(
results=
{
{type="item", name="iron-ore-chunk", amount=2},
+ {type="item", name="sulfur", amount=1, probability=0.75}^M
},
icon = "__angelsrefining__/graphics/icons/iron-ore-chunk.png",
order = "g[iron-ore-chunk]",
@@ -966,6 +967,7 @@ data:extend(
results=
{
{type="item", name="copper-ore-chunk", amount=2},
+ {type="item", name="sulfur", amount=1, probability=0.75}^M
},
icon = "__angelsrefining__/graphics/icons/copper-ore-chunk.png",
order = "h[copper-ore-chunk]",
diff --git a/prototypes/recipes/vanilla-water-treatment.lua b/prototypes/recipes/vanilla-water-treatment.lua
index a9d94e3..3dfee6e 100644
--- a/prototypes/recipes/vanilla-water-treatment.lua
+++ b/prototypes/recipes/vanilla-water-treatment.lua
@@ -103,6 +103,8 @@ data.raw["recipe"]["angelsore3-chunk"].ingredients[2]={type="fluid", name="water
data.raw["recipe"]["angelsore4-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=5}
data.raw["recipe"]["angelsore5-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=5}
data.raw["recipe"]["angelsore6-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=5}
+data.raw["recipe"]["iron-ore-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=2}^M
+data.raw["recipe"]["copper-ore-chunk"].ingredients[2]={type="fluid", name="water-purified", amount=2}^M
data.raw["recipe"]["angelsore1-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
data.raw["recipe"]["angelsore2-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
@@ -110,6 +112,8 @@ data.raw["recipe"]["angelsore3-chunk"].results[2]={type = "fluid", name = "water
data.raw["recipe"]["angelsore4-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
data.raw["recipe"]["angelsore5-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
data.raw["recipe"]["angelsore6-chunk"].results[2]={type = "fluid", name = "water-floatation-waste", amount=5}
+data.raw["recipe"]["iron-ore-chunk"].results[2]={type="fluid", name="water-floatation-waste", amount=2}^M
+data.raw["recipe"]["copper-ore-chunk"].results[2]={type="fluid", name="water-floatation-waste", amount=2}^M
end
--OVERRIDE FOR YUOKI
diff --git a/prototypes/recipes/angels-refining-entity.lua b/prototypes/recipes/angels-refining-entity.lua
index fa98996..978d459 100644
--- a/prototypes/recipes/angels-refining-entity.lua
+++ b/prototypes/recipes/angels-refining-entity.lua
@@ -87,7 +87,7 @@ data:extend(
energy_required = 10,
enabled = "false",
ingredients ={
- {"ore-floatation-cell", 1},
+ {"ore-floatation-cell-2", 1},^M
{"steel-plate", 10},
{"stone-brick", 10},
{"processing-unit", 5},
@@ -129,7 +129,7 @@ data:extend(
energy_required = 10,
enabled = "false",
ingredients ={
- {"ore-leaching-plant", 1},
+ {"ore-leaching-plant-2", 1},^M
{"steel-plate", 10},
{"stone-brick", 10},
{"processing-unit", 5},
diff --git a/prototypes/recipes/vanilla-refining-entity.lua b/prototypes/recipes/vanilla-refining-entity.lua
index f84113f..66e308f 100644
--- a/prototypes/recipes/vanilla-refining-entity.lua
+++ b/prototypes/recipes/vanilla-refining-entity.lua
@@ -87,7 +87,7 @@ data:extend(
energy_required = 10,
enabled = "false",
ingredients ={
- {"ore-floatation-cell", 1},
+ {"ore-floatation-cell-2", 1},^M
{"steel-plate", 10},
{"stone-brick", 10},
{"processing-unit", 5},
@@ -129,7 +129,7 @@ data:extend(
energy_required = 10,
enabled = "false",
ingredients ={
- {"ore-leaching-plant", 1},
+ {"ore-leaching-plant-2", 1},^M
{"steel-plate", 10},
{"stone-brick", 10},
{"processing-unit", 5},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment