70 lines
1.7 KiB
TOML
70 lines
1.7 KiB
TOML
# general properties/settings
|
|
|
|
modid = "hexcasting"
|
|
book = "hexcasting:thehexbook"
|
|
url = "https://gamma-delta.github.io/HexMod"
|
|
|
|
# top takes priority
|
|
resource_dirs = [
|
|
{ path = "src/hexdoc/_export/resources", reexport = false },
|
|
"{_common.src}/main/resources",
|
|
"{_common.src}/generated/resources",
|
|
"{_fabric.src}/main/resources",
|
|
"{_fabric.src}/generated/resources",
|
|
"{_forge.src}/main/resources",
|
|
"{_forge.src}/generated/resources",
|
|
]
|
|
export_dir = "src/hexdoc/_export/generated"
|
|
|
|
# NOTE: "!Raw" means "don't apply variable interpolation to this value"
|
|
_pattern_regex = { "!Raw" = 'make\(\s*"(?P<name>[a-zA-Z0-9_\/]+)",\s*(?:new )?(?:ActionRegistryEntry|OperationAction)\(\s*HexPattern\.fromAngles\(\s*"(?P<signature>[aqweds]+)",\s*HexDir.(?P<startdir>\w+)\)' }
|
|
|
|
entry_id_blacklist = []
|
|
|
|
template = "main.html.jinja"
|
|
template_dirs = []
|
|
template_packages = []
|
|
|
|
is_0_black = false
|
|
|
|
|
|
[template_args]
|
|
title = "Hex Book"
|
|
mod_name = "Hex Casting"
|
|
author = "petrak@, Alwinfy"
|
|
description = "The Hex Book, all in one place."
|
|
icon_href = "logo.png"
|
|
is_bleeding_edge = true
|
|
show_landing_text = true
|
|
|
|
|
|
[base_asset_urls]
|
|
hexcasting = "https://raw.githubusercontent.com/gamma-delta/HexMod/main/Common/src/main/resources"
|
|
|
|
|
|
[i18n]
|
|
default_lang = "en_us"
|
|
|
|
|
|
[[pattern_stubs]]
|
|
path = "{^_common.package}/common/lib/hex/HexActions.java"
|
|
regex = "{^_pattern_regex}"
|
|
|
|
[[pattern_stubs]]
|
|
path = "{^_fabric.package}/FabricHexInitializer.kt"
|
|
regex = "{^_pattern_regex}"
|
|
|
|
|
|
# platforms
|
|
|
|
[_common]
|
|
src = "../Common/src"
|
|
package = "{src}/main/java/at/petrak/hexcasting"
|
|
|
|
[_fabric]
|
|
src = "../Fabric/src"
|
|
package = "{src}/main/java/at/petrak/hexcasting/fabric"
|
|
|
|
[_forge]
|
|
src = "../Forge/src"
|
|
package = "{src}/main/java/at/petrak/hexcasting/forge"
|