2
0
forked from Retro/cap1-mod

2 Commits
main ... main

Author SHA1 Message Date
e4498a0de7 increment version 2025-12-27 13:17:00 -05:00
bace924cd3 Fix a crash on cap1 relating to a missing dependancy 2025-12-27 13:16:03 -05:00
5 changed files with 35 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
![Factorio logo but made out of glass and RED](/thumbnail.png)
# cap3-mod
![Factorio logo but made out of glass and BLUE](/thumbnail.png)
# cap1-mod
A small Factorio mod for Capgame 3 to add some managment and QoL improvments
A small Factorio mod for Capgame 1 to add some managment and QoL improvments
## Changes
Welcome messages and death quotes

View File

@@ -1,6 +1,6 @@
--Refactored by Gemini (thx i suck at lua)
local welcome_messages = {
"welcome to capitalism 3, you're in for it",
"welcome to capitalism 1, you're in for it",
"The factory must grow.",
"Efficiency is key.",
"I subject you to the ultimate torture: no more linked belts",
@@ -10,7 +10,7 @@ local welcome_messages = {
"RATIO FAILED! (To ratio, get more likes than someone)",
"LIVE THE DREAM WITH A TIME MACHINE, YOU'VE BEEN WAITING FOREVER!",
"ALOONE AT THE EDGE OF THE UNIVERSE, HUMMING A TUNE... FOR MEERLY DREAMING WE WERE SNOW",
"here at capitalism game 3 where we pride ourselves on.... `fun`.",
"here at capitalism game 1 where we pride ourselves on `effeciency` unlike cap 2.. or do we?",
"we got the entire continent to ourselves",
"we got the entire world to ourselves",
"DIE TERMINID SCUM",
@@ -29,7 +29,7 @@ local death_messages = {
"is now part of the ecosystem.",
"went insane.",
"desynced.. nah just kidding you got pwned",
"died on cap 3, and thankfully not cap 2.",
"died on cap 1, and thankfully not cap 2.",
": The system files are corrupeted. Please refer to the Wii Operations Manual for help troubleshooting.",
"was terminid scum",
"was a socialist automaton",

25
data.lua Normal file
View File

@@ -0,0 +1,25 @@
data.raw["recipe"]["speed-module"].ingredients = {
{type="item", name="electronic-circuit", amount=10},
}
data.raw["module"]["speed-module"].stack_size = 5
data.raw["recipe"]["speed-module-2"].ingredients = {
{type="item", name="electronic-circuit", amount=20},
}
data.raw["module"]["speed-module-2"].stack_size = 5
data.raw["recipe"]["speed-module-3"].ingredients = {
{type="item", name="electronic-circuit", amount=40},
}
data.raw["module"]["speed-module-3"].stack_size = 5
--make personal roboport cheaper
data.raw["recipe"]["personal-roboport-equipment"].ingredients = {
{type="item", name="advanced-circuit", amount=5},
{type="item", name="battery", amount=20},
{type="item", name="iron-gear-wheel", amount=20}
}
data.raw["recipe"]["battery-equipment"].ingredients = {
{type = "item", name = "iron-plate", amount = 10}
}

View File

@@ -1,8 +1,8 @@
{
"name": "cap3-mod",
"version": "0.1.0",
"title": "Capitalism Game 3 Mod",
"name": "cap1-mod",
"version": "0.1.1",
"title": "Capitalism Game 1 Mod",
"author": "unfunny",
"factorio_version": "2.0",
"description": "LIVE THE DREAM WITH A TIME MACHINE, YOU'VE BEEN WAITING FOREVER! Adds some QoL improvments, but now in red instead of blue!"
"description": "LIVE THE DREAM WITH A TIME MACHINE, YOU'VE BEEN WAITING FOREVER! Adds some QoL improvments"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 45 KiB