Compare commits
No commits in common. "main" and "main" have entirely different histories.
8 changed files with 1285 additions and 35 deletions
|
|
@ -1,13 +1,4 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.1.0
|
||||
Date: 11.03.2026
|
||||
Changes:
|
||||
- Switch to bzlib - Please install the new dependency
|
||||
Bug Fixes:
|
||||
- 248k: Fixes for 0.1.35 breaking changes (thanks Morganite)
|
||||
- K2: Fix recipe name for enriched tungsten
|
||||
- Add support for fluid mining
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 2.0.4
|
||||
Date: 14.11.2025
|
||||
Bug Fixes:
|
||||
|
|
|
|||
|
|
@ -2,18 +2,18 @@ local util = require("data-util");
|
|||
|
||||
if mods["248k-Redux"] then
|
||||
local cuw = util.me.cuw() and "cuw" or "tungsten-plate"
|
||||
util.add_ingredient("fu_ingot", cuw, 20)
|
||||
util.add_ingredient("fu_plasma", cuw, 40)
|
||||
util.add_ingredient("fi_crafter", cuw, 40)
|
||||
util.add_ingredient("fi_solid_reactor", cuw, 200)
|
||||
util.add_ingredient("fu_tokamak_reactor", cuw, 200)
|
||||
util.add_ingredient("fu_stelar_reactor", cuw, 200)
|
||||
util.add_ingredient("fu_ingot_recipe", cuw, 20)
|
||||
util.add_ingredient("fu_plasma_recipe", cuw, 40)
|
||||
util.add_ingredient("fi_crafter_recipe", cuw, 40)
|
||||
util.add_ingredient("fi_solid_reactor_recipe", cuw, 200)
|
||||
util.add_ingredient("fu_tokamak_reactor_recipe", cuw, 200)
|
||||
util.add_ingredient("fu_stelar_reactor_recipe", cuw, 200)
|
||||
|
||||
util.replace_ingredient("fu_miner_fuel", util.titanium_plate, "tungsten-carbide")
|
||||
util.replace_ingredient("fu_miner_fuel", "fi_titan", "tungsten-carbide")
|
||||
util.add_ingredient("fi_crusher", "tungsten-carbide", 10)
|
||||
util.replace_ingredient("fu_drill_recipe", util.titanium_plate, "tungsten-carbide")
|
||||
util.replace_ingredient("fu_drill_recipe", "fi_materials_titan", "tungsten-carbide")
|
||||
util.add_ingredient("fi_crusher_recipe", "tungsten-carbide", 10)
|
||||
|
||||
-- Only modify if CuW is used
|
||||
util.add_ingredient("fi_modules_base", "cuw", 1)
|
||||
util.add_ingredient("fi_modules_base_recipe", "cuw", 1)
|
||||
|
||||
end
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
Before Width: | Height: | Size: 90 KiB |
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bztungsten2",
|
||||
"version": "2.1.0",
|
||||
"version": "2.0.4",
|
||||
"factorio_version": "2.0",
|
||||
"title": "Tungsten",
|
||||
"description": "Adds tungsten ore (wolframite), tungsten plates, tungsten carbide and rocket engine nozzles to the base game.",
|
||||
|
|
@ -8,7 +8,6 @@
|
|||
"homepage": "https://discord.gg/ufvFUJtVwk",
|
||||
"dependencies": [
|
||||
"base >= 2.0",
|
||||
"bzlib",
|
||||
"? space-exploration",
|
||||
"? Krastorio2",
|
||||
"? deadlock-beltboxes-loaders",
|
||||
|
|
|
|||
|
|
@ -40,11 +40,9 @@ enriched-tungsten=Enriched tungsten
|
|||
tungsten-matter-processing=Tungsten conversion
|
||||
advanced-carbon-furnace=__ITEM__advanced-carbon-furnace__
|
||||
pumpjack=__ENTITY__pumpjack__
|
||||
fluid-mining=Fluid mining
|
||||
|
||||
[technology-description]
|
||||
enriched-tungsten=Enrich tungsten ore, purifying with ammonia [fluid=ammonia] and water [fluid=water], improving the final yield. Produce dirty water [fluid=dirty-water] as a byproduct.
|
||||
fluid-mining=Allows supply of fluids to mining drills to enable mining of certain resources.
|
||||
|
||||
[recipe-name]
|
||||
enriched-tungsten=__ITEM__enriched-tungsten__
|
||||
|
|
|
|||
|
|
@ -54,7 +54,6 @@ data:extend({
|
|||
{
|
||||
type = "recipe",
|
||||
name = "enriched-tungsten-plate",
|
||||
localised_name = { "item-name.tungsten-plate" },
|
||||
icons =
|
||||
{
|
||||
{ icon = "__bztungsten2__/graphics/icons/tungsten-plate.png", icon_size = 128, icon_mipmaps = 3, },
|
||||
|
|
|
|||
|
|
@ -1,13 +1,5 @@
|
|||
local util = require("data-util")
|
||||
|
||||
util.add_fluid_mining()
|
||||
util.set_prerequisite("fluid-mining", { "logistic-science-pack" })
|
||||
util.set_tech_recipe("fluid-mining", {
|
||||
{ "automation-science-pack", 1 },
|
||||
{ "logistic-science-pack", 1 }
|
||||
})
|
||||
util.add_prerequisite("tungsten-processing", "fluid-mining")
|
||||
|
||||
local cuw = "tungsten-plate"
|
||||
if util.me.cuw() then cuw = "cuw" end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue