-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f813e28
Showing
5 changed files
with
1,478 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Update TrenchBroom FGD | ||
on: | ||
schedule: | ||
- cron: 0 8 * * * | ||
workflow_dispatch: | ||
|
||
jobs: | ||
Do-The-Thing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
- name: Get apt ready | ||
run: | | ||
apt update | ||
apt install -y wget | ||
- name: Download FGD | ||
run: | | ||
git config --global --add safe.directory $GITHUB_WORKSPACE | ||
cd $GITHUB_WORKSPACE | ||
rm -f tb-nzp.fgd | ||
wget -nc https://raw.githubusercontent.com/nzp-team/assets/main/source/maps/fgd/tb-nzp.fgd | ||
- name: Commit and Push | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Update TrenchBroom FGD | ||
branch: main | ||
commit_user_name: Awesome NZ:P Updater Bot | ||
commit_user_email: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
{ | ||
"version": 5, | ||
"name": "NZP", | ||
"icon": "Icon.png", | ||
"fileformats": [ | ||
{ "format": "Valve" }, | ||
{ "format": "Standard" } | ||
], | ||
"filesystem": { | ||
"searchpath": "nzp", | ||
"packageformat": { "extension": "pak", "format": "idpak" } | ||
}, | ||
"textures": { | ||
"package": { "type": "file", "format": { "extension": "wad", "format": "wad2" } }, | ||
"format": { "extension": "C", "format": "hlmip" }, | ||
"palette": "gfx/palette.lmp", | ||
"attribute": "wad" | ||
}, | ||
"entities": { | ||
"definitions": [ "tb-nzp.fgd" ], | ||
"defaultcolor": "0.6 0.6 0.6 1.0", | ||
"modelformats": [ "mdl", "bsp" ] | ||
}, | ||
"tags": { | ||
"brush": [ | ||
{ | ||
"name": "Trigger", | ||
"attribs": [ "transparent" ], | ||
"match": "classname", | ||
"pattern": "trigger*" | ||
} | ||
], | ||
"brushface": [ | ||
{ | ||
"name": "Clip", | ||
"attribs": [ "transparent" ], | ||
"match": "texture", | ||
"pattern": "clip" | ||
}, | ||
{ | ||
"name": "Skip", | ||
"attribs": [ "transparent" ], | ||
"match": "texture", | ||
"pattern": "skip" | ||
}, | ||
{ | ||
"name": "Hint", | ||
"attribs": [ "transparent" ], | ||
"match": "texture", | ||
"pattern": "hint*" | ||
}, | ||
{ | ||
"name": "Liquid", | ||
"match": "texture", | ||
"pattern": "\**" | ||
}, | ||
{ | ||
"name": "Null", | ||
"attribs": [ "transparent" ], | ||
"match": "texture", | ||
"pattern": "null" | ||
}, | ||
{ | ||
"name": "TriggerFace", | ||
"attribs": [ "transparent" ], | ||
"match": "texture", | ||
"pattern": "*trigger*" | ||
} | ||
] | ||
}, | ||
"softMapBounds":"-4096 -4096 -4096 4096 4096 4096", | ||
"compilationTools": [ | ||
{ "name": "csg"}, | ||
{ "name": "bsp"}, | ||
{ "name": "vis"}, | ||
{ "name": "rad"} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Nazi Zombies: Portable TrenchBroom Profile | ||
|
||
## About | ||
|
||
This repository contains the TrenchBroom profile and up-to-date `.FGD` for NZ:P. It is updated nightly. |
Oops, something went wrong.