initial working mod pack
This commit is contained in:
commit
c80d6eddc0
8 changed files with 93 additions and 0 deletions
20
LICENSE.md
Normal file
20
LICENSE.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2021 Brevven
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
30
Makefile
Normal file
30
Makefile
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
# 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
Normal file
13
README.md
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# 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)
|
||||
|
||||
5
changelog.txt
Normal file
5
changelog.txt
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.1.0
|
||||
Date: 2021-05-18
|
||||
Features:
|
||||
- Mod pack that contains all BZ mods
|
||||
19
info.json
Normal file
19
info.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"name": "bzvery",
|
||||
"version": "0.1.0",
|
||||
"factorio_version": "1.1",
|
||||
"title": "Very BZ",
|
||||
"author": "Brevven",
|
||||
"contact": "",
|
||||
"homepage": "https://forums.factorio.com/viewtopic.php?f=190&t=98515",
|
||||
"dependencies": [
|
||||
"bz-dsr-bridge",
|
||||
"bzlead",
|
||||
"bzsilicon",
|
||||
"bztitanium",
|
||||
"bztungsten",
|
||||
"bzzirconium"
|
||||
],
|
||||
"description": "Mod pack for all BZ Mods including Titanium, Lead, Tungsten, Silicon, Zirconium. Turns on some settings by default, but adds nothing new to the game itself."
|
||||
}
|
||||
|
||||
6
settings-updates.lua
Normal file
6
settings-updates.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
|
||||
|
||||
-- Update various settings to give the "fullest" BZ mods experience
|
||||
data.raw["string-setting"]["bztungsten-advanced-carbon-furnace"].default_value = "yes"
|
||||
data.raw["string-setting"]["bzsilicon-more-intermediates"].default_value = "yes"
|
||||
data.raw["string-setting"]["bzlead-more-entities"].default_value = "yes"
|
||||
BIN
thumbnail.png
Normal file
BIN
thumbnail.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.5 KiB |
BIN
thumbnail.xcf
Normal file
BIN
thumbnail.xcf
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue