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
|
Version: 2.0.0
|
||||||
Date: 2022-12-05
|
Date: 10.12.2025
|
||||||
Features:
|
Changes:
|
||||||
- Copper Tungsten is enabled by default now. Can be turned off.
|
- Updated for 2.0 and my legacy forks
|
||||||
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
|
|
||||||
40
info.json
40
info.json
|
|
@ -1,24 +1,24 @@
|
||||||
{
|
{
|
||||||
"name": "bzvery",
|
"name": "bzvery2",
|
||||||
"version": "0.5.1",
|
"version": "2.0.0",
|
||||||
"factorio_version": "1.1",
|
"factorio_version": "2.0",
|
||||||
"title": "Very BZ",
|
"title": "Very BZ - Legacy",
|
||||||
"author": "Brevven",
|
"description": "Mod pack for all my forks of the BZ Mods.",
|
||||||
"contact": "",
|
"author": "Brevven, cackling fiend",
|
||||||
"homepage": "https://forums.factorio.com/viewtopic.php?f=190&t=98515",
|
"homepage": "https://discord.gg/ufvFUJtVwk",
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"bz-dsr-bridge",
|
"bzaluminum2",
|
||||||
"bzaluminum",
|
"bzcarbon2",
|
||||||
"bzcarbon",
|
"bzchlorine2",
|
||||||
"bzfoundry",
|
"bzfoundry2",
|
||||||
"bzlead",
|
"bzgas2",
|
||||||
"bzsilicon",
|
"bzgold2",
|
||||||
"bztitanium",
|
"bzlead2",
|
||||||
"bztungsten",
|
"bzsilicon2",
|
||||||
"bzzirconium",
|
"bztin2",
|
||||||
"bztin",
|
"bztitanium2",
|
||||||
"bzgas"
|
"bztungsten2",
|
||||||
],
|
"bzzirconium2"
|
||||||
"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."
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,3 @@
|
||||||
|
|
||||||
|
|
||||||
-- Update various settings to give the "fullest" BZ mods experience
|
-- Update various settings to give the "fullest" BZ mods experience
|
||||||
data.raw["string-setting"]["bzsilicon-more-intermediates"].default_value = "more"
|
data.raw["string-setting"]["bzsilicon-more-intermediates"].default_value = "more"
|
||||||
data.raw["string-setting"]["bzlead-more-entities"].default_value = "yes"
|
data.raw["string-setting"]["bzlead-more-entities"].default_value = "yes"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue