forked from Nenkai/relink-modding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
152 lines (132 loc) · 4.04 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
site_name: Granblue Fantasy - Relink Modding
site_description: Granblue Fantasy - Relink Modding Docs
site_url: https://nenkai.github.io/relink-modding/
repo_url: https://github.com/Nenkai/relink-modding
repo_name: nenkai/relink-modding
copyright: Copyright © 2024 Nenkai - Not affiliated with Cygames.
theme:
name: material
logo: images/logo.png
favicon: images/favicon.png
features:
- navigation.tabs
- navigation.sections
- navigation.footer
- navigation.top
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- toc.follow
- search.suggest
- search.highlight
- content.tabs.link
- content.code.copy
- content.action.edit
- content.code.annotate
- header.autohide
language: en
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
primary: light blue
accent: light blue
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
primary: light blue
accent: light blue
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
primary: light blue
accent: light blue
nav:
- Main Page: index.md
- Getting Started:
- Extraction: getting_started/extraction_modding.md
- Mod Manager: getting_started/mod_manager.md
- Resources / Files:
- Asset Paths: resources/asset_paths.md
- File Extensions: resources/file_extensions.md
- Entity Prefixes: resources/entity_prefixes.md
- Model IDs: resources/model_ids.md
- Sigil/Gem IDs: resources/sigil_gem_ids.md
- Trait/Skill IDs: resources/trait_skill_ids.md
- Quest IDs: resources/quest_ids.md
- Quest Drop Rates: resources/quest_drop_rates.md
- Curio Loot Rates: resources/curio_loot_rates.md
- Formats:
.minfo - Model Info: resources/formats/minfo.md
.mmat - Material Info: resources/formats/mmat.md
.objread - Obj Read: resources/formats/objread.md
- Reverse-Engineering:
Hashes: resources/re/hashes.md
Obj IDs: resources/re/obj_id.md
User Attributes: resources/re/user_attributes.md
- Models:
- Model Importing: models/importing.md
- Model Exporting: models/exporting.md
- Textures:
- UI Textures (.wtb): textures/textures.md
- Granite Textures (.gtp/gts): textures/granite.md
- Contributing: contributing.md
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.mark
- pymdownx.keys
- pymdownx.critic
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
plugins:
- git-revision-date-localized:
enable_creation_date: true
- git-committers:
repository: nenkai/relink-modding
branch: main
- social
- search:
lang: en
- glightbox
- table-reader
extra:
social:
- icon: fontawesome/brands/discord
link: https://discord.gg/gbsG4CDsru
- icon: fontawesome/brands/twitter
link: https://twitter.com/Nenkaai
- icon: fontawesome/brands/github
link: https://github.com/Nenkai
- icon: simple/kofi
link: https://ko-fi.com/nenkai
extra_css:
- stylesheets/extra.css