2
0
forked from Retro/cap1-mod

12 Commits
0.6.0 ... 0.7.9

Author SHA1 Message Date
90157c3535 Fixes a bug 2025-12-22 16:08:00 -05:00
ba42b69dfa Increment version 2025-12-22 16:05:12 -05:00
a75b97e785 Make bulk inserters cheaper, for flame 2025-12-22 16:04:24 -05:00
608a0f6511 BALANCED, AS ALL THINGS SHOULD BE 2025-12-22 15:54:21 -05:00
4215d4e959 Increment Ver. 2025-12-22 15:48:46 -05:00
e8ef95d043 So real 2025-12-22 15:43:50 -05:00
d6b263a990 Fix a typo 2025-12-22 15:39:50 -05:00
5269b8a4c6 Increment version 2025-12-22 15:34:03 -05:00
6366b4580c increment version 2025-12-22 15:26:29 -05:00
316506adcf Change a couple recipies 2025-12-22 15:26:11 -05:00
62b8946c72 Make small electric poles use iron sticks instead of wood 2025-12-22 15:01:31 -05:00
e58e473416 Make inserters slightly more balanced
still completely broken, but who cares!!!
2025-12-21 21:18:42 -05:00
2 changed files with 38 additions and 1 deletions

View File

@@ -7,6 +7,9 @@ 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}
}
@@ -39,3 +42,37 @@ data.raw["recipe"]["fast-transport-belt"].ingredients = {
data.raw["recipe"]["solar-panel"].ingredients = {
{type="item", name="iron-gear-wheel", amount=5}
}
--Change electric poles
--realistically this would short circut
--i'm not realistic
data.raw["recipe"]["small-electric-pole"].ingredients = {
{type="item", name="iron-stick", amount=1},
{type="item", name="copper-wire", amount=3}
}
--Make assembly machine 1's cheaper for balance
--THE FACTORY MUST GROW
data.raw["recipe"]["assembling-machine-2"].ingredients = {
{type="item", name="iron-gear-wheel", amount=3},
{type="item", name="iron-plate", amount=5},
{type="item", name="electronic-circuit", amount=1}
}
--Make assembly machine 2's cheaper
--THE FACTORY MUST GROW
data.raw["recipe"]["assembling-machine-1"].ingredients = {
{type="item", name="iron-gear-wheel", amount=5},
{type="item", name="iron-plate", amount=5},
{type="item", name="electronic-circuit", amount=3}
}
--better defence early game is always a plus on easy mode
data.raw["recipe"]["military-science-pack"].ingredients = {
{type="item", name="grenade", amount=1},
{type="item", name="firearm-magazine", amount=2},
{type="item", name="stone-wall", amount=2}
}
--MUCH cheaper than vanilla, MUCH more expensive than this mod
data.raw["recipe"]["bulk-inserter"].ingredients = {
{type="item", name="electronic-circuit", amount=10},
{type="item", name="iron-gear-wheel", amount=5}
}

View File

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