4 Commits

Author SHA1 Message Date
e58e473416 Make inserters slightly more balanced
still completely broken, but who cares!!!
2025-12-21 21:18:42 -05:00
4a6970c3f5 Update README.md 2025-12-21 21:11:43 -05:00
6be39fed0c Upload 0.6.0 2025-12-21 21:10:17 -05:00
c8f990f90c Upload 0.5.0 2025-12-21 21:08:43 -05:00
4 changed files with 37 additions and 2 deletions

View File

@@ -1,3 +1,4 @@
![Factorio logo but made out of glass and GREEN](/thumbnail.png)
# capgame2-Easy-Mod
A small factorio mod for Capitalism Game 2 to make things even easier.

View File

@@ -5,6 +5,40 @@ data.raw["recipe"]["electric-furnace"].ingredients = {
}
-- Change Fast Inserter
-- Because we can somehow wrangle one plate into an inserter lol. anyway
data.raw["recipe"]["fast-inserter"].ingredients = {
{type = "item", name = "iron-plate", amount = 2}
}
data.raw["recipe"]["inserter"].ingredients = {
{type = "item", name = "iron-plate", amount = 1}
}
}
-- Change Advanced Circuit
data.raw["recipe"]["advanced-circuit"].ingredients = {
{type="item", name="electronic-circuit", amount=1},
{type="item", name="plastic-bar", amount=1}
}
-- Change Fast Splitter
data.raw["recipe"]["fast-splitter"].ingredients = {
{type="item", name="splitter", amount=1},
{type="item", name="electronic-circuit", amount=10},
{type="item", name="iron-gear-wheel", amount=5}
}
-- Change Fast Underground Belt
data.raw["recipe"]["fast-underground-belt"].ingredients = {
{type="item", name="underground-belt", amount=5},
{type="item", name="iron-gear-wheel", amount=20}
}
-- Change Fast Transport Belt
data.raw["recipe"]["fast-transport-belt"].ingredients = {
{type="item", name="transport-belt", amount=1},
{type="item", name="iron-gear-wheel", amount=1}
}
-- Change Solar Panel
data.raw["recipe"]["solar-panel"].ingredients = {
{type="item", name="iron-gear-wheel", amount=5}
}

View File

@@ -1,6 +1,6 @@
{
"name": "cap2-easymod",
"version": "0.4.0",
"version": "0.6.0",
"title": "Capitalism Game 2 Recipes",
"author": "unfunny",
"factorio_version": "2.0",

BIN
thumbnail.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB