Update to 2.0
This commit is contained in:
parent
10df7c3650
commit
5d86f00b88
5 changed files with 24 additions and 104 deletions
30
Makefile
30
Makefile
|
|
@ -1,30 +0,0 @@
|
|||
# General makefile for factorio mods.
|
||||
#
|
||||
# Presumes the development work is done in a <factoriodir>/dev/<modname>/
|
||||
# directory where this makefile resides. This directory must be parallel to
|
||||
# the <factoriodir>/mods/ directory where mods are installed. Run `make
|
||||
# install` from dev/<modname> to install the mod as a zip file. That zip file
|
||||
# should also be ready to upload to the mod portal
|
||||
|
||||
.PHONY: copy lint-changelog install
|
||||
|
||||
pwd = $(shell pwd)
|
||||
v = $(shell basename "$(pwd)")_$(shell jq -r .version info.json)
|
||||
|
||||
copy:
|
||||
rm -rf ../$(v)
|
||||
mkdir -p ../$(v)
|
||||
cp -rf * ../$(v)
|
||||
rm -f ../$(v).zip
|
||||
cd ..; zip -9 -r -y $(v).zip $(v) -x "*.xcf" -x "*.git*" -x "*.bak"
|
||||
|
||||
install: lint-changelog copy
|
||||
cp -f ../$(v).zip ../../mods/
|
||||
|
||||
|
||||
lint-changelog: copy
|
||||
python3 ../da-changelog-tools_0.0.14/changelog-checker.py --changelog ../$(v).zip
|
||||
|
||||
zorro:
|
||||
python3 ../da-changelog-tools_0.0.14/changelog-checker.py --zorro --changelog ../$(v).zip
|
||||
|
||||
13
README.md
13
README.md
|
|
@ -1,13 +0,0 @@
|
|||
# Very BZ
|
||||
|
||||
[factorio mod page](https://mods.factorio.com/mod/bzvery)
|
||||
|
||||
Sets up optional dependencies on BZMods (Lead, Silica & Silicon, Titanium, Tungsten) for Deadlock Stacked Recipes or other mods to use. Does not currently provide any additional functionality on its own.
|
||||
|
||||
## Version History
|
||||
See changelog.txt
|
||||
|
||||
## Created by
|
||||
|
||||
- [brevven](https://mods.factorio.com/user/brevven)
|
||||
|
||||
|
|
@ -1,40 +1,5 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.5.1
|
||||
Date: 2022-12-05
|
||||
Features:
|
||||
- Copper Tungsten is enabled by default now. Can be turned off.
|
||||
This update should not break any existing factories.
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.5.0
|
||||
Date: 2022-11-21
|
||||
Features:
|
||||
- Added Tin and Natural Gas to the modpack. Stay at 0.4.0 if this breaks your factory.
|
||||
- Bronze and tinned cable enabled by default. Can be turned off.
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.4.0
|
||||
Date: 2022-06-05
|
||||
Features:
|
||||
- Added Aluminum to the modpack. Stay at 0.3.0 if this breaks your factory.
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.3.0
|
||||
Date: 2022-02-17
|
||||
Features:
|
||||
- Added Graphite & Diamonds to the modpack.
|
||||
Stay at 0.2.0 if this breaks your factory.
|
||||
- Carbon black will be enabled by default. This modifies oil processing. Can be turned off.
|
||||
- Diamond reuse in low density structures is on by default. Can be turned off.
|
||||
- Foundry refractory recipes will now be turned on by default. Can be turned off.
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.2.0
|
||||
Date: 2022-01-29
|
||||
Features:
|
||||
- Added Foundry to the modpack. Some parts still might change, but it seems ready.
|
||||
Due to this, Advanced Carbon Furnace will no longer be available in the full modpack.
|
||||
If either of these changes break your factory, recommend staying at 0.1.0
|
||||
- Silica & Silicon MEMS gyroscope is enabled by default (can be turned off)
|
||||
- New thumbnail
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.1.0
|
||||
Date: 2021-05-18
|
||||
Features:
|
||||
- Mod pack that contains all BZ mods
|
||||
Version: 2.0.0
|
||||
Date: 10.12.2025
|
||||
Changes:
|
||||
- Updated for 2.0 and my legacy forks
|
||||
40
info.json
40
info.json
|
|
@ -1,24 +1,24 @@
|
|||
{
|
||||
"name": "bzvery",
|
||||
"version": "0.5.1",
|
||||
"factorio_version": "1.1",
|
||||
"title": "Very BZ",
|
||||
"author": "Brevven",
|
||||
"contact": "",
|
||||
"homepage": "https://forums.factorio.com/viewtopic.php?f=190&t=98515",
|
||||
"name": "bzvery2",
|
||||
"version": "2.0.0",
|
||||
"factorio_version": "2.0",
|
||||
"title": "Very BZ - Legacy",
|
||||
"description": "Mod pack for all my forks of the BZ Mods.",
|
||||
"author": "Brevven, cackling fiend",
|
||||
"homepage": "https://discord.gg/ufvFUJtVwk",
|
||||
"dependencies": [
|
||||
"bz-dsr-bridge",
|
||||
"bzaluminum",
|
||||
"bzcarbon",
|
||||
"bzfoundry",
|
||||
"bzlead",
|
||||
"bzsilicon",
|
||||
"bztitanium",
|
||||
"bztungsten",
|
||||
"bzzirconium",
|
||||
"bztin",
|
||||
"bzgas"
|
||||
],
|
||||
"description": "Mod pack for all BZ Mods including Titanium, Lead, Tungsten, Silicon, Zirconium and more. Turns on some settings by default, but adds nothing new to the game itself."
|
||||
"bzaluminum2",
|
||||
"bzcarbon2",
|
||||
"bzchlorine2",
|
||||
"bzfoundry2",
|
||||
"bzgas2",
|
||||
"bzgold2",
|
||||
"bzlead2",
|
||||
"bzsilicon2",
|
||||
"bztin2",
|
||||
"bztitanium2",
|
||||
"bztungsten2",
|
||||
"bzzirconium2"
|
||||
]
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
|
||||
|
||||
-- Update various settings to give the "fullest" BZ mods experience
|
||||
data.raw["string-setting"]["bzsilicon-more-intermediates"].default_value = "more"
|
||||
data.raw["string-setting"]["bzlead-more-entities"].default_value = "yes"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue