Compare commits
4 Commits
a7ac6f4841
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| c5c33041c0 | |||
| 12f4de1269 | |||
| 83ff658886 | |||
| 4ab142a417 |
8
.gitignore
vendored
@@ -34,7 +34,10 @@ bin/
|
|||||||
out/
|
out/
|
||||||
|
|
||||||
# VS Code
|
# VS Code
|
||||||
.vscode/
|
.vscode/*
|
||||||
|
|
||||||
|
# VS Code (include tasks)
|
||||||
|
!.vscode/tasks.json
|
||||||
|
|
||||||
# NetBeans
|
# NetBeans
|
||||||
nbproject/private/
|
nbproject/private/
|
||||||
@@ -49,3 +52,6 @@ nbdist/
|
|||||||
|
|
||||||
# Linux
|
# Linux
|
||||||
*~
|
*~
|
||||||
|
|
||||||
|
# build artifacts
|
||||||
|
dist/
|
||||||
11
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Build Hytale Asset Mod",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "./scripts/build-assets-mod.sh",
|
||||||
|
"group": "build"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
10
CHANGELOG.md
@@ -1,3 +1,13 @@
|
|||||||
|
# 1.0.0
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
|
||||||
|
* Fix duplicate entry in language file
|
||||||
|
* Tested compatibility with release version and update manifest for 2026.03.26-89796e57b
|
||||||
|
* Source: Add buildscript and VS Code task
|
||||||
|
|
||||||
|
***
|
||||||
|
|
||||||
# 0.9.3-prerelease
|
# 0.9.3-prerelease
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 690 KiB After Width: | Height: | Size: 650 KiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 772 KiB After Width: | Height: | Size: 707 KiB |
|
Before Width: | Height: | Size: 532 KiB After Width: | Height: | Size: 261 KiB |
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 1.3 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.0 MiB |
21
scripts/build-assets-mod.sh
Executable file
@@ -0,0 +1,21 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
PROJECT_ROOT="$(pwd)"
|
||||||
|
|
||||||
|
MANIFEST="$PROJECT_ROOT/src/main/resources/manifest.json"
|
||||||
|
RESOURCE_DIR="$PROJECT_ROOT/src/main/resources"
|
||||||
|
DIST_DIR="$PROJECT_ROOT/dist"
|
||||||
|
|
||||||
|
mkdir -p "$DIST_DIR"
|
||||||
|
|
||||||
|
NAME=$(jq -r '.Name' "$MANIFEST")
|
||||||
|
VERSION=$(jq -r '.Version' "$MANIFEST")
|
||||||
|
SERVER=$(jq -r '.ServerVersion' "$MANIFEST")
|
||||||
|
|
||||||
|
ZIP_NAME="${NAME}-${VERSION}_${SERVER}.zip"
|
||||||
|
|
||||||
|
echo "Building $ZIP_NAME"
|
||||||
|
|
||||||
|
cd "$RESOURCE_DIR"
|
||||||
|
zip -r "$DIST_DIR/$ZIP_NAME" .
|
||||||
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 402 KiB After Width: | Height: | Size: 108 KiB |
|
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 100 KiB |
|
Before Width: | Height: | Size: 156 KiB After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 868 KiB |
|
Before Width: | Height: | Size: 3.2 MiB After Width: | Height: | Size: 3.1 MiB |
|
Before Width: | Height: | Size: 3.3 MiB After Width: | Height: | Size: 3.1 MiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 110 KiB After Width: | Height: | Size: 84 KiB |
|
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 54 KiB After Width: | Height: | Size: 29 KiB |
@@ -1,7 +1,7 @@
|
|||||||
npcRoles.Golem_Wild_Crystal_Earth.name = Wild Earthen Golem
|
npcRoles.Golem_Wild_Crystal_Earth.name = Wild Earthen Golem
|
||||||
npcRoles.Golem_Wild_Crystal_Flame.name = Wild Ember Golem
|
npcRoles.Golem_Wild_Crystal_Flame.name = Wild Ember Golem
|
||||||
npcRoles.Golem_Wild_Crystal_Frost.name = Wild Frost Golem
|
npcRoles.Golem_Wild_Crystal_Frost.name = Wild Frost Golem
|
||||||
npcRoles.Golem_Wild_Crystal_Frost.name = Wild Snowy Golem
|
npcRoles.Golem_Wild_Crystal_Snow.name = Wild Snowy Golem
|
||||||
npcRoles.Golem_Wild_Crystal_Sand.name = Wild Sandswept Golem
|
npcRoles.Golem_Wild_Crystal_Sand.name = Wild Sandswept Golem
|
||||||
npcRoles.Golem_Wild_Crystal_Heart.name = Wild Heartfelt Golem
|
npcRoles.Golem_Wild_Crystal_Heart.name = Wild Heartfelt Golem
|
||||||
npcRoles.Golem_Wild_Crystal_Thunder.name = Wild Thunder Golem
|
npcRoles.Golem_Wild_Crystal_Thunder.name = Wild Thunder Golem
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"Group": "QuickBASIC",
|
"Group": "QuickBASIC",
|
||||||
"Name": "QuickBASIC.MoreGolems",
|
"Name": "QuickBASIC.MoreGolems",
|
||||||
"Version": "0.9.3-prerelease",
|
"Version": "1.0.0",
|
||||||
"Description": "Adds more golems and golem variants to world for renewable sources of crystal shards.",
|
"Description": "Adds more golems and golem variants to world for renewable sources of crystal shards.",
|
||||||
"Authors": [
|
"Authors": [
|
||||||
{
|
{
|
||||||
"Name": "QuickBASIC",
|
"Name": "QuickBASIC",
|
||||||
"Email": "",
|
"Email": "quickbasic@quickbasic.xyz",
|
||||||
"Url": ""
|
"Url": "https://git.quickbasic.xyz/hytale-modding"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"Website": "",
|
"Website": "",
|
||||||
"ServerVersion": "2026.03.12-b1f856309",
|
"ServerVersion": "2026.03.26-89796e57b",
|
||||||
"Dependencies": {},
|
"Dependencies": {},
|
||||||
"OptionalDependencies": {},
|
"OptionalDependencies": {},
|
||||||
"LoadBefore": {},
|
"LoadBefore": {},
|
||||||
|
|||||||