Skip to content

Commit

Permalink
Added an unlock for unused vanadium pentoxide recipes.
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Nov 18, 2024
1 parent 85e922f commit 67aff87
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 39 deletions.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Date: ?
Changes:
- Removed unused scrude-to-methane recipe from factoriopedia.
- Added an unlock for the unused steam+naptha -> hydrogen recipe.
- Added an unlock for unused vanadium pentoxide recipes.
---------------------------------------------------------------------------------------------------
Version: 3.0.8
Date: 2024-11-18
Expand Down
59 changes: 20 additions & 39 deletions prototypes/updates/pyfusionenergy-updates.lua
Original file line number Diff line number Diff line change
Expand Up @@ -174,45 +174,26 @@ end

----EXCLUSIVE RECIPES----

RECIPE {
type = "recipe",
name = "bitumen-to-vanadium",
category = "upgrader",
enabled = false,
energy_required = 3,
ingredients = {
{type = "fluid", name = "bitumen", amount = 4000},
{type = "item", name = "agzn-alloy", amount = 1},
},
results = {
{type = "item", name = "vanadium-oxide", amount = 1},
},
main_product = "vanadium-oxide",
icon = "__pyfusionenergygraphics__/graphics/icons/vanadium-oxide.png",
icon_size = 32,
subgroup = "py-fusion-items",
order = "a"
}:add_unlock("heavy-oil-mk04")

RECIPE {
type = "recipe",
name = "tar-to-vanadium",
category = "upgrader",
enabled = false,
energy_required = 4,
ingredients = {
{type = "fluid", name = "tar", amount = 4000},
{type = "item", name = "agzn-alloy", amount = 2},
},
results = {
{type = "item", name = "vanadium-oxide", amount = 1},
},
main_product = "vanadium-oxide",
icon = "__pyfusionenergygraphics__/graphics/icons/vanadium-oxide.png",
icon_size = 32,
subgroup = "py-fusion-items",
order = "a"
}:add_unlock("heavy-oil-mk04")
if mods.pystellarexpedition then
RECIPE {
type = "recipe",
name = "bitumen-to-vanadium",
category = "upgrader",
enabled = false,
energy_required = 3,
ingredients = {
{type = "fluid", name = "bitumen", amount = 4000},
{type = "item", name = "agzn-alloy", amount = 1},
},
results = {
{type = "item", name = "vanadium-oxide", amount = 3},
},
main_product = "vanadium-oxide",
subgroup = "py-fusion-items",
allow_productivity = true,
order = "a"
}:add_unlock("zinc-mk04")
end

RECIPE {
type = "recipe",
Expand Down

0 comments on commit 67aff87

Please sign in to comment.