mirror of
https://github.com/nzp-team/trenchbroom-profile.git
synced 2024-11-10 06:31:46 +00:00
Initial Commit
This commit is contained in:
commit
f813e286f2
5 changed files with 1478 additions and 0 deletions
30
.github/workflows/fgd-update.yml
vendored
Normal file
30
.github/workflows/fgd-update.yml
vendored
Normal file
|
@ -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: nope@example.org
|
78
GameConfig.cfg
Normal file
78
GameConfig.cfg
Normal file
|
@ -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"}
|
||||
]
|
||||
}
|
BIN
Icon.png
Normal file
BIN
Icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
5
README.md
Normal file
5
README.md
Normal file
|
@ -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.
|
1365
tb-nzp.fgd
Normal file
1365
tb-nzp.fgd
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue