mirror of
https://github.com/Mediosmanufactory/bigger-concrete-stack.git
synced 2026-01-11 02:38:42 +01:00
Return from the dead update!
This commit is contained in:
13
.vscode/launch.json
vendored
Normal file
13
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
// Use IntelliSense to learn about possible attributes.
|
||||||
|
// Hover to view descriptions of existing attributes.
|
||||||
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "factoriomod",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Factorio Mod Debug"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
16
.vscode/settings.json
vendored
Normal file
16
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"factorio.versions": [
|
||||||
|
{
|
||||||
|
"name": "Factorio_ModDev",
|
||||||
|
"factorioPath": "c:\\BARTL\\Factorio_ModDev\\bin\\x64\\factorio.exe",
|
||||||
|
"active": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"Lua.workspace.library": [
|
||||||
|
"c:\\BARTL\\Factorio_1.1.107\\data"
|
||||||
|
],
|
||||||
|
"Lua.workspace.userThirdParty": [
|
||||||
|
"c:\\Users\\bartl\\AppData\\Roaming\\Code\\User\\workspaceStorage\\7b372f3bc38d2196850595c27863ee9c\\justarandomgeek.factoriomod-debug\\sumneko-3rd"
|
||||||
|
],
|
||||||
|
"Lua.workspace.checkThirdParty": "ApplyInMemory"
|
||||||
|
}
|
||||||
16
README.md
16
README.md
@ -1,8 +1,8 @@
|
|||||||
# Bigger concrete stack
|
# Bigger concrete stack
|
||||||
This mod makes cocrete stacks bigger.
|
This mod makes cocrete stacks bigger.
|
||||||
|
|
||||||
You can find mod on factorio mod portal:
|
You can find mod on factorio mod portal:
|
||||||
https://mods.factorio.com/mod/bigger-concrete-stack
|
https://mods.factorio.com/mod/bigger-concrete-stack
|
||||||
|
|
||||||
Don't have factorio? No problem! Go here:
|
Don't have factorio? No problem! Go here:
|
||||||
https://re146.dev/factorio/mods/en#https://mods.factorio.com/mod/bigger-concrete-stack
|
https://re146.dev/factorio/mods/en#https://mods.factorio.com/mod/bigger-concrete-stack
|
||||||
|
|||||||
4
bigger-concrete-stack/data.lua
Normal file
4
bigger-concrete-stack/data.lua
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
-- Vanilla
|
||||||
|
if mods['base'] then
|
||||||
|
require('vanilla.data')
|
||||||
|
end
|
||||||
@ -5,8 +5,6 @@
|
|||||||
"author":"GamBar1709",
|
"author":"GamBar1709",
|
||||||
"contact": "gambar1709@gmail.com",
|
"contact": "gambar1709@gmail.com",
|
||||||
"description":"This mod makes cocrete stacks bigger",
|
"description":"This mod makes cocrete stacks bigger",
|
||||||
"factorio_version":"1.1",
|
"factorio_version":"2.0",
|
||||||
"dependencies":[
|
"dependencies":[ "base" ]
|
||||||
"base"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
5
bigger-concrete-stack/locals/en/mod-setting-name.cfg
Normal file
5
bigger-concrete-stack/locals/en/mod-setting-name.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[mod-setting-name]
|
||||||
|
bcs-concrete-stack-size=[VANILLA] Concrete stack size
|
||||||
|
bcs-hazard-concrete-stack-size=[VANILLA] Hazard concrete stack size
|
||||||
|
bcs-refined-concrete-stack-size=[VANILLA] Refined concrete stack size
|
||||||
|
bcs-refined-hazard-concrete-stack-size=[VANILLA] Refined hazard concrete stack size
|
||||||
5
bigger-concrete-stack/locals/pl/msn.cfg
Normal file
5
bigger-concrete-stack/locals/pl/msn.cfg
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[mod-setting-name]
|
||||||
|
bcs-concrete-stack-size=[VANILLA] Rozmiar stosu betonu
|
||||||
|
bcs-hazard-concrete-stack-size=[VANILLA] Rozmiar stosu betonu ostrzegawczego
|
||||||
|
bcs-refined-concrete-stack-size=[VANILLA] Rozmiar stosu żelazobetonu
|
||||||
|
bcs-refined-hazard-concrete-stack-size=[VANILLA] Rozmiar stosu żelazobetonu ostrzegawczego
|
||||||
4
bigger-concrete-stack/settings.lua
Normal file
4
bigger-concrete-stack/settings.lua
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
-- Vanilla
|
||||||
|
if mods['base'] then
|
||||||
|
require('vanilla.settings')
|
||||||
|
end
|
||||||
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
@ -1,3 +1,14 @@
|
|||||||
|
local concreteItem = data.raw["item"]["concrete"]
|
||||||
|
concreteItem.stack_size = settings.startup["bcs-concrete-stack-size"].value
|
||||||
|
|
||||||
|
local hazardConcreteItem = data.raw["item"]["hazard-concrete"]
|
||||||
|
hazardConcreteItem.stack_size = settings.startup["bcs-hazard-concrete-stack-size"].value
|
||||||
|
|
||||||
|
data:extend({hazardConcreteItem})
|
||||||
|
data:extend({concreteItem})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
local refinedConcreteItem = data.raw["item"]["refined-concrete"]
|
local refinedConcreteItem = data.raw["item"]["refined-concrete"]
|
||||||
refinedConcreteItem.stack_size = settings.startup["bcs-refined-concrete-stack-size"].value
|
refinedConcreteItem.stack_size = settings.startup["bcs-refined-concrete-stack-size"].value
|
||||||
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
local concreteItem = data.raw["item"]["concrete"]
|
|
||||||
concreteItem.stack_size = settings.startup["bcs-concrete-stack-size"].value
|
|
||||||
|
|
||||||
local hazardConcreteItem = data.raw["item"]["hazard-concrete"]
|
|
||||||
hazardConcreteItem.stack_size = settings.startup["bcs-hazard-concrete-stack-size"].value
|
|
||||||
|
|
||||||
data:extend({hazardConcreteItem})
|
|
||||||
data:extend({concreteItem})
|
|
||||||
21
mklink.ps1
Normal file
21
mklink.ps1
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#Paths
|
||||||
|
$factorio_path = "C:\BARTL\Factorio_ModDev\"
|
||||||
|
$mods_folder = "$factorio_path\mods"
|
||||||
|
$curr_path = Get-Location
|
||||||
|
|
||||||
|
#Mods
|
||||||
|
$mod1 = "bigger-concrete-stack"
|
||||||
|
|
||||||
|
# Wiązania
|
||||||
|
$link1 = "$mods_folder\$mod1"
|
||||||
|
|
||||||
|
# Ścieżki źródłowe
|
||||||
|
$src1 = "$curr_path\$mod1"
|
||||||
|
|
||||||
|
# Tworzenie linków (jeśli jeszcze nie istnieją)
|
||||||
|
if (-not (Test-Path $link1)) {
|
||||||
|
New-Item -ItemType SymbolicLink -Path $link1 -Target $src1
|
||||||
|
Write-Output "Symlink dla $mod1 został utworzony."
|
||||||
|
} else {
|
||||||
|
Write-Output "Symlink dla $mod1 już istnieje."
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user