cheapened costs

This commit is contained in:
Monica Moniot
2022-12-09 16:34:20 -05:00
parent 64e3170456
commit 3487746a3c
5 changed files with 27 additions and 32 deletions

2
.vscode/launch.json vendored
View File

@@ -42,7 +42,7 @@
"flib": true, "flib": true,
"cybersyn": true, "cybersyn": true,
}, },
"disableExtraMods": true //"disableExtraMods": true
}, },
{ {
"type": "factoriomod", "type": "factoriomod",

View File

@@ -1,4 +1,9 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 1.1.4
Date: 2022-12-9
Changes:
- Made the recipe and research requirements for cybernetic combinators cheaper so that access to them in various modpacks is more in line with my intentions
---------------------------------------------------------------------------------------------------
Version: 1.1.3 Version: 1.1.3
Date: 2022-12-8 Date: 2022-12-8
Changes: Changes:

View File

@@ -1,6 +1,6 @@
{ {
"name": "cybersyn", "name": "cybersyn",
"version": "1.1.3", "version": "1.1.4",
"title": "Project Cybersyn", "title": "Project Cybersyn",
"author": "Mami", "author": "Mami",
"factorio_version": "1.1", "factorio_version": "1.1",

View File

@@ -32,7 +32,7 @@ cybersyn-combinator-output=Cybernetic combinator output
cybersyn-combinator=Has 4 different control modes. Primary control allows providing and requesting. Optional Control allows setting thresholds per-item and reading all in progress deliveries. Depot control allows parked trains to be added to the network. Wagon control allows for reading the desired contents of the adjacent wagon. cybersyn-combinator=Has 4 different control modes. Primary control allows providing and requesting. Optional Control allows setting thresholds per-item and reading all in progress deliveries. Depot control allows parked trains to be added to the network. Wagon control allows for reading the desired contents of the adjacent wagon.
[technology-name] [technology-name]
cybersyn-train-network=Cybernetic train network cybersyn-train-network=Cybersyn train network
[technology-description] [technology-description]
cybersyn-train-network=Train stop controllers capable of coordinating the inputs and outputs of an entire economy. cybersyn-train-network=Train stop controllers capable of coordinating the inputs and outputs of an entire economy.

View File

@@ -1,35 +1,25 @@
--By Mami --By Mami
combinator_recipe = flib.copy_prototype(data.raw["recipe"]["train-stop"], COMBINATOR_NAME) combinator_recipe = flib.copy_prototype(data.raw["recipe"]["arithmetic-combinator"], COMBINATOR_NAME)
combinator_recipe.ingredients = { combinator_recipe.ingredients = {
{"copper-cable", 5}, {"copper-cable", 20},
{"advanced-circuit", 5}, {"electronic-circuit", 10},
} }
combinator_recipe.enabled = false combinator_recipe.enabled = false
cybersyn_tech = {
type = "technology", cybersyn_tech = flib.copy_prototype(data.raw["technology"]["automated-rail-transportation"], "cybersyn-train-network")
name = "cybersyn-train-network",
icon = "__cybersyn__/graphics/icons/tech.png", cybersyn_tech.icon = "__cybersyn__/graphics/icons/tech.png"
icon_size = 256, cybersyn_tech.icon_size = 256
--icon_mipmaps = 4, cybersyn_tech.prerequisites = {
prerequisites = { "automated-rail-transportation",
"automated-rail-transportation", "circuit-network",
"circuit-network",
"advanced-electronics"
},
effects = {
{
type = "unlock-recipe",
recipe = COMBINATOR_NAME
},
},
unit = {
ingredients = {
{"automation-science-pack", 1},
{"logistic-science-pack", 1}
},
count = 250,
time = 30
},
order = "c-g-c"
} }
cybersyn_tech.effects = {
{
type = "unlock-recipe",
recipe = COMBINATOR_NAME
},
}
cybersyn_tech.unit.count = 3*cybersyn_tech.unit.count
cybersyn_tech.order = "c-g-c"