Files
Shipwright/soh/assets/yml/ntsc_1-0/objects/object_fd.yml
T
briaguya c00dd24caa Replace ZAPDTR and OTRExporter with Torch (#6989)
* Add Torch migration plan

Plan for replacing ZAPDTR + OTRExporter with Torch as SoH's only asset
pipeline, following HarbourMasters/Torch#219 ("oot support").

Co-Authored-By: Claude <noreply@anthropic.com>

* Plan: yml repo is source of truth, drop the move-to-assets-repo steps

- Name the actual repo (briaguya0/soh-asset-yml); it holds yml only, and is
  edited directly rather than regenerated. zapd_to_torch.py is a one-shot
  conversion, not an ongoing workflow, since nobody edits the ZAPD XMLs once
  ZAPD is gone.
- Phase 5 is pure deletion. Generator inputs are already preserved by the
  harness's shipwright@95d8f7e submodule pin and by git history, so nothing
  needs snapshotting or moving out of Shipwright.
- Clarify soh/CMakeLists.txt:107-109 as a configure-soh-directly fallback with
  nothing left to fall back to.
- Downgrade the extraction wall-clock risk; perf work landed in Torch#219.

Co-Authored-By: Claude <noreply@anthropic.com>

* Phase 0: flesh out the verification gates

Adds torch-migration/PHASE0.md with the full gate detail: what each gate's
variable is, the driver source, exact commands, cost, and exit criteria.

Two gates the plan was missing:
  - Gate C (Release build) - the harness 14/14 is a Debug measurement; CI
    and releases build -O3.
  - Gate A2 (two extractions in one process) - free once the driver exists,
    retires the re-entrancy risk offline instead of by hand in the game.

Also: gates run full-tree + check.sh rather than test_assets.py (which
hardcodes the torch path and copies a filtered yml subset), 19 ROM dumps
not 17, and libgfxd being USE_STANDALONE-only is called out as the real
hazard in Gate A.

* Phase 0: correct the test_assets.py claim

The "filtered subset" was a misread. The log line prints the pre-recursion
yml count (1320); setup_scratch's external_files recursion then pulls in the
remaining 130, so an unfiltered run copies all 1450 - verified by replaying
the logic. So the gates use test_assets.py, the same tool that produced the
existing 14/14, with a TORCH_BIN env override as the only harness patch.

Gate A2 keeps the check.sh path, since it needs two extractions in one
process and test_assets.py execs the binary once per ROM.

* Phase 0: preflight green, 19/19

Baseline Torch build (USE_STANDALONE=ON, all games, Debug, PORT_VERSION_
ENDIANNESS=ON) reproduces every reference archive: 19 ROM dumps, all
0 failed / 0 not generated / 0 not in reference. Counts match the harness
README's 14-target table, and the duplicate dumps agree with each other,
which the 14-target matrix never showed.

Reference manifests also spot-checked by re-derivation from two o2r files
-- the baseline the gates measure against hasn't drifted.

* Phase 0: Gate A green, 19/19

USE_STANDALONE=OFF plus driving Companion by hand produces byte-identical
archives for all 19 ROM dumps.

The real question was libgfxd, which is fetched only if(USE_STANDALONE) --
_deps/ confirms it is absent, so the Binary export path is genuinely
gfxd-free. Reading said so; now it's run.

Progress denominator confirmed exact: SetPhaseCallback fires once per yml
file, matching the on-disk count for all three classes (1449/1450/1480).
Phase 3's bar can be monotonic with no change to OTRGlobals.

Also observed for Phase 2: zlib is fetched even with BUILD_STORMLIB=OFF and
no zlib.h use in torch/src, confirming risk #1; spdlog is not fetched, so
only the global-logger stomping applies there.

* Phase 0: Gate A2 green, and the duplicate-entry finding

Two extractions in one process, vanilla then MQ, both byte-identical to
their references. The second run's phases=1450 matches pal_mq's on-disk
yml count exactly, which is the direct refutation of the gProcessedFiles
risk -- a leak would have skipped files and truncated the archive. A
fresh Companion per extraction is sufficient; PLAN.md risk #6 retired.

Also records what the gate turned up on the way: torch writes 25
duplicate archive entries, benign because libultraship indexes by CRC64
of the path. Filed as Torch#233 item 5. Corrects the Gate A note that
attributed the whole ~343 KB size delta to compression -- 76 KB of it is
these duplicates.

* Phase 0: Gates B and C green

OoT-only (eight BUILD_<game> flags OFF) and Release (-O3) each 19/19
identical, one variable moved apiece -- verified against the option()
defaults so the other flags genuinely match the baseline cache.

Gate C mattered: every parity measurement to date, including the original
14/14, was Debug, while CI and releases build -O3.

Also records extraction wall-clock from torch's own timing line: Release
averages 11.4s per ROM against Debug's 26.7s, and the OoT-only flags cost
nothing. SoH ships Release, so PLAN.md risk #5 looks much smaller than the
Debug numbers suggested -- though ZAPD's time on the same machine is still
unmeasured.

* Phase 0: Gate A' green -- the shipping configuration is the spec

Static lib + OoT-only + Release together: 19/19 identical plus the
vanilla-then-MQ pair. Flags verified from the generated cache rather than
assumed, so Phase 2's CMake block and TorchExtract.cpp can be
transcriptions of this build and RunOnce respectively.

Archive bytes turn out to be configuration-independent -- the pair
produced exactly the sizes the Debug static-lib run did, phases=1450 on
both runs. Extraction 11.8s mean, so the static-lib wrapper costs nothing
over Gate C.

Confirms both Phase 2 dependency risks in the configuration that actually
ships: zlib fetched with BUILD_STORMLIB=OFF and no zlib.h includes,
tinyxml2 fetched with BUILD_NAUDIO=OFF removing its only consumers. Both
FetchContent declarations are unconditional.

* Copy soh.o2r from a checked-in prebuilt archive (TEMPORARY)

Unblocks the rest of the migration. soh.o2r is produced by ZAPD via
OTRExporter/extract_assets.py, both of which this migration deletes; its
replacement is a small in-tree packer that has to reproduce ZAPD's
texture quantisation exactly. Rather than block Phases 2/3/5 on that
packer, check the archive in and make GenerateSohOtr a copy.

The archive doubles as Phase 4's acceptance oracle -- the packer is
correct when its output matches this entry-for-entry -- which is strictly
more useful than Gate E's planned manifest of hashes of it.

Generation turns out to be content-deterministic but NOT byte-
deterministic: two runs give identical payloads for all 1,042 entries but
different file hashes, because zip stores per-entry timestamps. So the
Phase 4 comparison must be entry-wise; whole-file would fail even on a
correct archive. Recorded in prebuilt/README.md.

Adds a configure-time guard on the baked-in portVersion. OTRGlobals.cpp
:283 requires exact major.minor.patch equality and RunExtract exit(1)s
with "soh.o2r is outdated", which is an opaque symptom for a stale
checked-in file; verified the guard fires by building against 9.2.4.

ExtractAssets, CI and copy-existing-otrs.cmake are deliberately untouched
-- ExtractAssets still generates a correct archive while ZAPD exists, and
the CI job keeps working since it just builds this target.

* Extract ROMs with Torch instead of ZAPD

Adds soh/assets/yml as a submodule (briaguya0/soh-asset-yml, 20,353 asset
definitions) and FetchContents torch at 4cae4416, configured exactly as
Gate A' measured it: static lib, OoT only, no UI, no StormLib.

find_package(ZLIB) has to run before torch is declared. Torch declares
zlib with OVERRIDE_FIND_PACKAGE, so it takes over the whole build's
find_package(ZLIB), and its copy provides no ZLIB::ZLIB -- which both
StormLib and CMake's FindPNG link by name. Filed upstream as Torch#233.

CallZapd becomes CallTorch: no chdir, no symlinked assets dir, no 22-entry
argv. Everything that needed the working directory is now a parameter.
TorchExtract.cpp is the only TU that includes Companion.h, since torch
exports its whole lib/ as PUBLIC includes.

Progress uses torch's phase callback, which fires once per yml file, with
the denominator counted off disk. Gate A confirmed the two match exactly
for all three yml counts, so the bar runs 0-100 without the sawtooth the
old per-file counter would have produced.

GetZapdVerStr becomes GetTorchVersionDir, returning the version directory
under the yml tree rather than a ZAPD xml directory.

soh.elf links torch and no longer references zapd_report.

* Record the two-ROM session passing in-game

Vanilla then MQ extracted in one process, both loaded and played. Closes
PLAN.md risk #6 in the game rather than only against the harness driver,
and confirms config.yml-driven archive naming end to end.

* Add soh-torch, rebuild ExtractAssets on it

soh links torch as a static library, which compiles out torch's own CLI,
so build-time extraction needs an entry point. soh-torch supplies one
around the same SohTorch::Extract the game calls -- one implementation,
so the CLI and the in-game path can't drift.

ExtractAssets keeps its old contract: SOH_ROM_PATH accepts roms and/or
directories of roms and defaults to roms/, so dropping a vanilla and a
master quest rom in produces oot.o2r and oot-mq.o2r in one run, and
chaining GenerateSohOtr keeps soh.o2r coming out of it too.

Extract now returns the archive name torch chose rather than deriving it
from IsMasterQuest(), so config.yml is the only thing naming archives.
The name comes from Companion::GetOutputPath(): scanning the destination
for *.o2r picks up an unrelated soh.o2r when extracting into the build
directory, which is only invisible in the game because it extracts into
an empty temp dir.

ExtractAssetHeaders stays as a target that explains why it can't run --
torch registers no OoT header exporter and emits no #define d<sym>, which
soh source references ~24k times. Documented in BUILDING.md alongside it.

This removes the last ZAPD dependency from the build.

* Add the roms directory ExtractAssets defaults to

BUILDING.md points people at roms/, but git can't track an empty
directory, so a fresh clone didn't have one. Its .gitignore keeps
everything but itself and the readme out.

* Delete ZAPDTR and OTRExporter

Nothing drives them any more: ExtractAssets runs soh-torch, the in-game
extractor calls Companion directly, GenerateSohOtr copies a prebuilt
archive, and soh links torch instead of ZAPDLib. Verified with a build
from a fresh tree with both submodules absent from disk.

Removes the submodules, the 7,680 ZAPD xmls under soh/assets/xml, the
extractor inputs (Config_*.xml, TexturePool.xml, filelists, symbols) and
copy-existing-otrs.cmake. The xmls remain in this repo's history and in
the test harness's pinned shipwright submodule, which is where the yaml
was generated from.

Packaging changes shape as well as content: the extractor assets used to
install into the 'extractor' component, which Packaging-2.cmake only
includes for the AppImage generator, so linux zips shipped without them.
torch is linked into soh rather than being a separate binary, so the yml
tree installs into 'ship' on every platform and every package can extract
a rom.

* Keep CI providing tinyxml2 itself

Torch's fetched copy satisfies libultraship today, so the install steps
are redundant -- but that rests on torch declaring tinyxml2 with an
unconditional OVERRIDE_FIND_PACKAGE, which is an implementation detail,
and one we've asked upstream to reconsider in Torch#233. If the fetch
gets gated, find_package needs a system copy again and CI would break
because we removed the steps providing it.

Also notes that the generate-soh-otr slim-down was written before the
prebuilt archive, which makes that job build nothing for now.

* Generate soh.o2r again, replacing the prebuilt archive

soh-o2r-packer builds soh.o2r from soh/assets/custom, reproducing the
ZAPD/OTRExporter archive exactly: 1,042 entries, 0 missing, 0 extra, 0
content mismatch, checked entry-wise because zip stores per-entry
timestamps and whole-file hashes never match between runs.

Most of it is torch's: Companion::Pack walks the directory, zips it and
writes portVersion; BaseExporter::WriteHeader writes the resource header;
TextureType and CalculateTextureSize come from TextureUtils. The packer
stages the assets into the shape the archive should have and hands that
over. Encoding a PNG into an N64 texture is the only piece nothing else
provides -- torch decodes rom data that is already N64 format, never the
reverse -- so PngTexture.cpp is the whole of what had to be written, and
it follows ZAPD's quantisation rather than n64graphics', which scales
where ZAPD shifts.

GenerateSohOtr copies the libultraship shaders into assets/custom again
before packing; assets/custom/shaders is gitignored and nothing else
populates it, so a fresh clone would otherwise pack three files short.

Removes prebuilt/ and its configure-time portVersion guard.

* Move the asset tools under soh/assets

soh-torch and soh-o2r-packer both exist to turn assets into archives, so
they sit better beside the assets they read than at the repo root.

Nothing tangled: both targets are declared in the root CMakeLists with
explicit paths rather than add_subdirectory, and soh/CMakeLists.txt globs
only include/, soh/ and src/, so sources under assets/ aren't swept into
the soh target.

* Build soh.o2r in CI without libultraship or soh

SOH_TOOLS_ONLY returns from the root CMakeLists once the asset tools are
declared, before libultraship and soh are added, so a configure that only
needs soh-o2r-packer never reaches LUS's find_package(SDL2 REQUIRED).

That lets generate-soh-otr drop building SDL2 from source, SDL2_net, and
the deps cache that existed to hold the SDL2 tarball -- eleven steps down
to six. Verified a tools-only build produces the archive with all 1,042
entries matching.

The tool targets move above the sub-projects so the early return can sit
between them; they only ever needed torch. The packer creates its output
directory, which previously came for free from soh's build directory.

* Fix macos and windows builds, keep the tools out of the game build

macos: libultraship declares spdlog with OVERRIDE_FIND_PACKAGE so its own
find_package(spdlog REQUIRED) resolves, but torch declares spdlog without
it, and FetchContent_Declare is first-wins. Configuring torch first made
LUS's declaration a no-op and left find_package with no config to find.
It only showed on macos because that's the platform where neither project
finds an installed spdlog -- it's kept out of macports.yml because its fmt
dependency breaks the universal build -- so both fall through to fetching.
Declaring it ahead of both keeps macos on the same source-built v1.16.0 it
used before. Torch already uses OVERRIDE_FIND_PACKAGE for tinyxml2 and
zlib, so the real fix is upstream.

windows: soh builds with /WX, and TorchExtract.cpp is the one translation
unit reaching yaml-cpp through torch's headers, which trips the
dll-interface warnings. Suppress those two on that file.

EXCLUDE_FROM_ALL on soh-torch and soh-o2r-packer: they are build-time
tools, so building the game shouldn't compile them. ExtractAssets and
GenerateSohOtr still pull them in through DEPENDS.

Drops the .gitattributes rule for the prebuilt archive, which is gone.

* Drop the gitignore negation for the prebuilt archive

Left over with the .gitattributes rule when prebuilt/ was removed.

* TEMPORARY: put soh/assets/xml back so the branch diff is reviewable

Deleting 7,680 xmls puts the diff past what GitHub will render, and they
are 99.8% of it. Restoring them here leaves the ~46 files that actually
changed, which reviews in the compare view.

Revert this before opening the PR.

* Remove the migration planning docs

Scaffolding for the migration itself rather than anything the repo needs
to carry afterwards.

* Fix NTSC master quest roms being rejected as unsupported

verMap's two master quest rows keyed off the GameCube constants instead
of the MQ ones, so with duplicate keys dropped the map never contained
OOT_NTSC_US_MQ or OOT_NTSC_JP_MQ and both roms were filtered out before
extraction. IsMasterQuest already handles both, and the asset yml covers
ntsc_u_mq and ntsc_j_mq, so keying them correctly is all that's needed.

Predates this migration; the torch cli was unaffected because it hashes
the rom rather than consulting verMap.

* Revert "TEMPORARY: put soh/assets/xml back so the branch diff is reviewable"

This reverts commit 28f41138d6.

* Run clang-format

Renaming CallZapd to CallTorch made the call sites one character longer
and left their continuation lines under-indented.

Co-Authored-By: Claude <noreply@anthropic.com>

* Temporarily pin torch to the fork carrying the Windows fixes

HarbourMasters/Torch#234 fixes three Windows-only defects in the OoT factories:
a 64 KiB over-read past the code segment that crashes extraction, backslashes
in exported scene resource names that crash at scene load, and external_files
being keyed differently from the directory walk, which processed every
dependency twice.

Without them a Windows build of this branch cannot extract a rom. Goes back to
a HarbourMasters sha once that PR merges.

Co-Authored-By: Claude <noreply@anthropic.com>

* Point torch back at upstream

HarbourMasters/Torch#234 landed as 65eb11c, squashing the three Windows fixes
this branch was pinned to a fork for. The squashed tree is identical to the
fork commit that was tested, and extraction output is unchanged: 35,386
entries, same CRCs.

Co-Authored-By: Claude <noreply@anthropic.com>

* Vendor the asset yml instead of submoduling it

The submodule existed only so this PR's diff stayed reviewable; squash-merging
it would have put a submodule on develop. This replaces it with the 20,353
files themselves, from briaguya0/soh-asset-yml@523be1d.

The submodule's own README is dropped rather than vendored, since it describes
that repo and was showing up in the assets folder of release downloads.

Co-Authored-By: Claude <noreply@anthropic.com>

* Bump torch to pick up the yaml-cpp 0.9.0 bump

HarbourMasters/Torch#235 landed as e92c210. The pinned yaml-cpp predated
jbeder/yaml-cpp@4fe2fb8, so every scalar conversion constructed a named
std::locale; cheap on glibc, expensive on MSVC. Windows extraction of a PAL GC
rom drops from 49.0s to 13.9s on the same machine, which also puts it ahead of
ZAPDTR's 48.4s rather than fractionally behind.

The merged commit is tree-identical to the fork commit those numbers were
measured on. Extraction output is unchanged: 35,386 entries, same CRCs.

Co-Authored-By: Claude <noreply@anthropic.com>

* Consume torch as a submodule instead of FetchContent

Reviewer feedback on #6989: FetchContent makes iterating on torch itself
awkward, since testing a change means pushing it somewhere the pin can
reach. A submodule is editable in place, which is how libultraship
already works.

Nothing else changes -- FetchContent_MakeAvailable was already doing
add_subdirectory, so the include topology and every build option are the
same. The pin moves from GIT_TAG into the gitlink, at the same sha.

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Claude <noreply@anthropic.com>
2026-08-01 02:12:01 +00:00

1241 lines
23 KiB
YAML

:config:
segments:
- [ 6, 0x00FD15B0 ]
- [ 4, 0x00D3A4E0 ]
- [ 8, 0x00FD15B0 ]
- [ 9, 0x00FD15B0 ]
- [ 10, 0x00FD15B0 ]
- [ 11, 0x00FD15B0 ]
- [ 12, 0x00FD15B0 ]
- [ 13, 0x00FD15B0 ]
external_files:
- ntsc_1-0/objects/gameplay_keep.yml
gVolvagiaBodySeg10DL:
type: GFX
offset: 0x7E10
symbol: gVolvagiaBodySeg10DL
gVolvagiaBodySeg11DL:
type: GFX
offset: 0x7E70
symbol: gVolvagiaBodySeg11DL
gVolvagiaBodySeg12DL:
type: GFX
offset: 0x7ED0
symbol: gVolvagiaBodySeg12DL
gVolvagiaBodySeg13DL:
type: GFX
offset: 0x7F30
symbol: gVolvagiaBodySeg13DL
gVolvagiaBodySeg14DL:
type: GFX
offset: 0x7F90
symbol: gVolvagiaBodySeg14DL
gVolvagiaBodySeg15DL:
type: GFX
offset: 0x7FF0
symbol: gVolvagiaBodySeg15DL
gVolvagiaBodySeg16DL:
type: GFX
offset: 0x8038
symbol: gVolvagiaBodySeg16DL
gVolvagiaBodySeg17DL:
type: GFX
offset: 0x8080
symbol: gVolvagiaBodySeg17DL
gVolvagiaBodySeg18DL:
type: GFX
offset: 0x80D8
symbol: gVolvagiaBodySeg18DL
gVolvagiaBodySeg1DL:
type: GFX
offset: 0x79A0
symbol: gVolvagiaBodySeg1DL
gVolvagiaBodySeg2DL:
type: GFX
offset: 0x7AC0
symbol: gVolvagiaBodySeg2DL
gVolvagiaBodySeg3DL:
type: GFX
offset: 0x7B70
symbol: gVolvagiaBodySeg3DL
gVolvagiaBodySeg4DL:
type: GFX
offset: 0x7BD0
symbol: gVolvagiaBodySeg4DL
gVolvagiaBodySeg5DL:
type: GFX
offset: 0x7C30
symbol: gVolvagiaBodySeg5DL
gVolvagiaBodySeg6DL:
type: GFX
offset: 0x7C90
symbol: gVolvagiaBodySeg6DL
gVolvagiaBodySeg7DL:
type: GFX
offset: 0x7CF0
symbol: gVolvagiaBodySeg7DL
gVolvagiaBodySeg8DL:
type: GFX
offset: 0x7D50
symbol: gVolvagiaBodySeg8DL
gVolvagiaBodySeg9DL:
type: GFX
offset: 0x7DB0
symbol: gVolvagiaBodySeg9DL
gVolvagiaBodySkel:
type: OOT:SKELETON
offset: 0x10020
symbol: gVolvagiaBodySkel
limb_type: Standard
skel_type: Flex
gVolvagiaBodyStaticAnim:
type: OOT:ANIMATION
offset: 0x61D8
symbol: gVolvagiaBodyStaticAnim
gVolvagiaBodyTex:
type: TEXTURE
offset: 0x8128
symbol: gVolvagiaBodyTex
format: RGBA16
width: 32
height: 64
gVolvagiaBrokenFaceDL:
type: GFX
offset: 0x59F8
symbol: gVolvagiaBrokenFaceDL
gVolvagiaDL_009668:
type: GFX
offset: 0x9668
symbol: gVolvagiaDL_009668
gVolvagiaDebrisMaterialDL:
type: GFX
offset: 0xD3A0
symbol: gVolvagiaDebrisMaterialDL
gVolvagiaDebrisModelDL:
type: GFX
offset: 0xD420
symbol: gVolvagiaDebrisModelDL
gVolvagiaDustMaterialDL:
type: GFX
offset: 0xB3A8
symbol: gVolvagiaDustMaterialDL
gVolvagiaDustModelDL:
type: GFX
offset: 0xB3C8
symbol: gVolvagiaDustModelDL
gVolvagiaEmberMaterialDL:
type: GFX
offset: 0xA880
symbol: gVolvagiaEmberMaterialDL
gVolvagiaEmberModelDL:
type: GFX
offset: 0xA900
symbol: gVolvagiaEmberModelDL
gVolvagiaEyeClosedTex:
type: TEXTURE
offset: 0x3CA8
symbol: gVolvagiaEyeClosedTex
format: I8
width: 32
height: 32
gVolvagiaEyeHalfTex:
type: TEXTURE
offset: 0x34A8
symbol: gVolvagiaEyeHalfTex
format: I8
width: 32
height: 32
gVolvagiaEyeOpenTex:
type: TEXTURE
offset: 0x38A8
symbol: gVolvagiaEyeOpenTex
format: I8
width: 32
height: 32
gVolvagiaHeadEmergeAnim:
type: OOT:ANIMATION
offset: 0x101E4
symbol: gVolvagiaHeadEmergeAnim
gVolvagiaHeadSkel:
type: OOT:SKELETON
offset: 0x10260
symbol: gVolvagiaHeadSkel
limb_type: Standard
skel_type: Normal
gVolvagiaJawboneDL:
type: GFX
offset: 0xD0A0
symbol: gVolvagiaJawboneDL
gVolvagiaLeftArmEmergeAnim:
type: OOT:ANIMATION
offset: 0x10064
symbol: gVolvagiaLeftArmEmergeAnim
gVolvagiaLeftArmSkel:
type: OOT:SKELETON
offset: 0x100E0
symbol: gVolvagiaLeftArmSkel
limb_type: Standard
skel_type: Normal
gVolvagiaManeMaterialDL:
type: GFX
offset: 0x9168
symbol: gVolvagiaManeMaterialDL
gVolvagiaManeModelDL:
type: GFX
offset: 0x91E8
symbol: gVolvagiaManeModelDL
gVolvagiaPlatformCol:
type: OOT:COLLISION
offset: 0xD68
symbol: gVolvagiaPlatformCol
gVolvagiaPlatformDL:
type: GFX
offset: 0x240
symbol: gVolvagiaPlatformDL
gVolvagiaRibsDL:
type: GFX
offset: 0xB2F8
symbol: gVolvagiaRibsDL
gVolvagiaRightArmEmergeAnim:
type: OOT:ANIMATION
offset: 0x10124
symbol: gVolvagiaRightArmEmergeAnim
gVolvagiaRightArmSkel:
type: OOT:SKELETON
offset: 0x101A0
symbol: gVolvagiaRightArmSkel
limb_type: Standard
skel_type: Normal
gVolvagiaRockDL:
type: GFX
offset: 0x9F20
symbol: gVolvagiaRockDL
gVolvagiaSkullDL:
type: GFX
offset: 0xCBC8
symbol: gVolvagiaSkullDL
gVolvagiaSkullPieceMaterialDL:
type: GFX
offset: 0xD668
symbol: gVolvagiaSkullPieceMaterialDL
gVolvagiaSkullPieceModelDL:
type: GFX
offset: 0xD6E8
symbol: gVolvagiaSkullPieceModelDL
object_fdTLUT_000438:
type: TEXTURE
offset: 0x438
symbol: object_fdTLUT_000438
format: RGBA16
width: 4
height: 4
object_fdTLUT_000A58:
type: TEXTURE
offset: 0xA58
symbol: object_fdTLUT_000A58
format: RGBA16
width: 4
height: 4
object_fdTLUT_0032A8:
type: TEXTURE
offset: 0x32A8
symbol: object_fdTLUT_0032A8
format: RGBA16
width: 16
height: 16
object_fdTex_000458:
type: TEXTURE
offset: 0x458
symbol: object_fdTex_000458
format: CI4
width: 32
height: 32
tlut: 0x438
object_fdTex_000658:
type: TEXTURE
offset: 0x658
symbol: object_fdTex_000658
format: CI4
width: 32
height: 64
tlut: 0x438
object_fdTex_000A78:
type: TEXTURE
offset: 0xA78
symbol: object_fdTex_000A78
format: CI4
width: 32
height: 32
tlut: 0xA58
object_fdTex_0040A8:
type: TEXTURE
offset: 0x40A8
symbol: object_fdTex_0040A8
format: RGBA16
width: 32
height: 32
object_fdTex_0048A8:
type: TEXTURE
offset: 0x48A8
symbol: object_fdTex_0048A8
format: RGBA16
width: 32
height: 32
object_fdTex_0050A8:
type: TEXTURE
offset: 0x50A8
symbol: object_fdTex_0050A8
format: RGBA16
width: 16
height: 16
object_fdTex_0052A8:
type: TEXTURE
offset: 0x52A8
symbol: object_fdTex_0052A8
format: RGBA16
width: 16
height: 16
object_fdTex_0054A8:
type: TEXTURE
offset: 0x54A8
symbol: object_fdTex_0054A8
format: RGBA16
width: 16
height: 16
object_fdTex_0056A8:
type: TEXTURE
offset: 0x56A8
symbol: object_fdTex_0056A8
format: RGBA16
width: 16
height: 16
object_fdTex_005B60:
type: TEXTURE
offset: 0x5B60
symbol: object_fdTex_005B60
format: RGBA16
width: 16
height: 16
object_fdTex_005D60:
type: TEXTURE
offset: 0x5D60
symbol: object_fdTex_005D60
format: RGBA16
width: 16
height: 16
object_fdTex_005F60:
type: TEXTURE
offset: 0x5F60
symbol: object_fdTex_005F60
format: RGBA16
width: 16
height: 16
object_fdTex_009208:
type: TEXTURE
offset: 0x9208
symbol: object_fdTex_009208
format: I8
width: 16
height: 16
object_fdTex_009780:
type: TEXTURE
offset: 0x9780
symbol: object_fdTex_009780
format: RGBA16
width: 16
height: 16
object_fdTex_009980:
type: TEXTURE
offset: 0x9980
symbol: object_fdTex_009980
format: RGBA16
width: 16
height: 16
object_fdTex_00A050:
type: TEXTURE
offset: 0xA050
symbol: object_fdTex_00A050
format: RGBA16
width: 32
height: 32
object_fdTex_00A918:
type: TEXTURE
offset: 0xA918
symbol: object_fdTex_00A918
format: I8
width: 16
height: 16
object_fdTex_00AA18:
type: TEXTURE
offset: 0xAA18
symbol: object_fdTex_00AA18
format: RGBA16
width: 32
height: 32
object_fdTex_00B458:
type: TEXTURE
offset: 0xB458
symbol: object_fdTex_00B458
format: RGBA16
width: 32
height: 32
object_fdTex_00BC58:
type: TEXTURE
offset: 0xBC58
symbol: object_fdTex_00BC58
format: RGBA16
width: 16
height: 16
object_fdTex_00BE58:
type: TEXTURE
offset: 0xBE58
symbol: object_fdTex_00BE58
format: RGBA16
width: 16
height: 16
object_fdTex_00C058:
type: TEXTURE
offset: 0xC058
symbol: object_fdTex_00C058
format: RGBA16
width: 16
height: 16
object_fdTex_00D170:
type: TEXTURE
offset: 0xD170
symbol: object_fdTex_00D170
format: RGBA16
width: 16
height: 16
object_fdTex_00D438:
type: TEXTURE
offset: 0xD438
symbol: object_fdTex_00D438
format: RGBA16
width: 16
height: 16
object_fdVtx_000000:
type: OOT:ARRAY
offset: 0x000000
symbol: object_fdVtx_000000
count: 36
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_000DA0:
type: OOT:ARRAY
offset: 0x000DA0
symbol: object_fdVtx_000DA0
count: 67
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0011D0:
type: OOT:ARRAY
offset: 0x0011D0
symbol: object_fdVtx_0011D0
count: 23
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001340:
type: OOT:ARRAY
offset: 0x001340
symbol: object_fdVtx_001340
count: 32
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001540:
type: OOT:ARRAY
offset: 0x001540
symbol: object_fdVtx_001540
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001680:
type: OOT:ARRAY
offset: 0x001680
symbol: object_fdVtx_001680
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0017C0:
type: OOT:ARRAY
offset: 0x0017C0
symbol: object_fdVtx_0017C0
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001880:
type: OOT:ARRAY
offset: 0x001880
symbol: object_fdVtx_001880
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001900:
type: OOT:ARRAY
offset: 0x001900
symbol: object_fdVtx_001900
count: 5
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001950:
type: OOT:ARRAY
offset: 0x001950
symbol: object_fdVtx_001950
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0019D0:
type: OOT:ARRAY
offset: 0x0019D0
symbol: object_fdVtx_0019D0
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001A50:
type: OOT:ARRAY
offset: 0x001A50
symbol: object_fdVtx_001A50
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001AD0:
type: OOT:ARRAY
offset: 0x001AD0
symbol: object_fdVtx_001AD0
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001B60:
type: OOT:ARRAY
offset: 0x001B60
symbol: object_fdVtx_001B60
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001BE0:
type: OOT:ARRAY
offset: 0x001BE0
symbol: object_fdVtx_001BE0
count: 5
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001C30:
type: OOT:ARRAY
offset: 0x001C30
symbol: object_fdVtx_001C30
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001CB0:
type: OOT:ARRAY
offset: 0x001CB0
symbol: object_fdVtx_001CB0
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_001D30:
type: OOT:ARRAY
offset: 0x001D30
symbol: object_fdVtx_001D30
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
gVolvagiaHeadSkelLimbsLimb_01023CDL_001DB0:
type: GFX
offset: 0x001DB0
symbol: gVolvagiaHeadSkelLimbsLimb_01023CDL_001DB0
gVolvagiaHeadSkelLimbsLimb_010230DL_0020A8:
type: GFX
offset: 0x0020A8
symbol: gVolvagiaHeadSkelLimbsLimb_010230DL_0020A8
gVolvagiaHeadSkelLimbsLimb_01020CDL_002180:
type: GFX
offset: 0x002180
symbol: gVolvagiaHeadSkelLimbsLimb_01020CDL_002180
gVolvagiaHeadSkelLimbsLimb_010218DL_002358:
type: GFX
offset: 0x002358
symbol: gVolvagiaHeadSkelLimbsLimb_010218DL_002358
gVolvagiaHeadSkelLimbsLimb_010224DL_002420:
type: GFX
offset: 0x002420
symbol: gVolvagiaHeadSkelLimbsLimb_010224DL_002420
gVolvagiaLeftArmSkelLimbsLimb_010080DL_0024E8:
type: GFX
offset: 0x0024E8
symbol: gVolvagiaLeftArmSkelLimbsLimb_010080DL_0024E8
gVolvagiaLeftArmSkelLimbsLimb_01008CDL_002678:
type: GFX
offset: 0x002678
symbol: gVolvagiaLeftArmSkelLimbsLimb_01008CDL_002678
gVolvagiaLeftArmSkelLimbsLimb_010098DL_002770:
type: GFX
offset: 0x002770
symbol: gVolvagiaLeftArmSkelLimbsLimb_010098DL_002770
gVolvagiaLeftArmSkelLimbsLimb_0100A4DL_002850:
type: GFX
offset: 0x002850
symbol: gVolvagiaLeftArmSkelLimbsLimb_0100A4DL_002850
gVolvagiaLeftArmSkelLimbsLimb_0100BCDL_002990:
type: GFX
offset: 0x002990
symbol: gVolvagiaLeftArmSkelLimbsLimb_0100BCDL_002990
gVolvagiaLeftArmSkelLimbsLimb_0100B0DL_002AD0:
type: GFX
offset: 0x002AD0
symbol: gVolvagiaLeftArmSkelLimbsLimb_0100B0DL_002AD0
gVolvagiaRightArmSkelLimbsLimb_010140DL_002C10:
type: GFX
offset: 0x002C10
symbol: gVolvagiaRightArmSkelLimbsLimb_010140DL_002C10
gVolvagiaRightArmSkelLimbsLimb_01014CDL_002D10:
type: GFX
offset: 0x002D10
symbol: gVolvagiaRightArmSkelLimbsLimb_01014CDL_002D10
gVolvagiaRightArmSkelLimbsLimb_010158DL_002E08:
type: GFX
offset: 0x002E08
symbol: gVolvagiaRightArmSkelLimbsLimb_010158DL_002E08
gVolvagiaRightArmSkelLimbsLimb_010170DL_002EE8:
type: GFX
offset: 0x002EE8
symbol: gVolvagiaRightArmSkelLimbsLimb_010170DL_002EE8
gVolvagiaRightArmSkelLimbsLimb_010164DL_003028:
type: GFX
offset: 0x003028
symbol: gVolvagiaRightArmSkelLimbsLimb_010164DL_003028
gVolvagiaRightArmSkelLimbsLimb_01017CDL_003168:
type: GFX
offset: 0x003168
symbol: gVolvagiaRightArmSkelLimbsLimb_01017CDL_003168
object_fdVtx_0058A8:
type: OOT:ARRAY
offset: 0x0058A8
symbol: object_fdVtx_0058A8
count: 21
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0061F0:
type: OOT:ARRAY
offset: 0x0061F0
symbol: object_fdVtx_0061F0
count: 15
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0062E0:
type: OOT:ARRAY
offset: 0x0062E0
symbol: object_fdVtx_0062E0
count: 15
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0063D0:
type: OOT:ARRAY
offset: 0x0063D0
symbol: object_fdVtx_0063D0
count: 16
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0064D0:
type: OOT:ARRAY
offset: 0x0064D0
symbol: object_fdVtx_0064D0
count: 14
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0065B0:
type: OOT:ARRAY
offset: 0x0065B0
symbol: object_fdVtx_0065B0
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0066E0:
type: OOT:ARRAY
offset: 0x0066E0
symbol: object_fdVtx_0066E0
count: 22
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_006840:
type: OOT:ARRAY
offset: 0x006840
symbol: object_fdVtx_006840
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_006980:
type: OOT:ARRAY
offset: 0x006980
symbol: object_fdVtx_006980
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_006AC0:
type: OOT:ARRAY
offset: 0x006AC0
symbol: object_fdVtx_006AC0
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_006BF0:
type: OOT:ARRAY
offset: 0x006BF0
symbol: object_fdVtx_006BF0
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_006D20:
type: OOT:ARRAY
offset: 0x006D20
symbol: object_fdVtx_006D20
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_006E50:
type: OOT:ARRAY
offset: 0x006E50
symbol: object_fdVtx_006E50
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_006F70:
type: OOT:ARRAY
offset: 0x006F70
symbol: object_fdVtx_006F70
count: 17
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_007080:
type: OOT:ARRAY
offset: 0x007080
symbol: object_fdVtx_007080
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0071A0:
type: OOT:ARRAY
offset: 0x0071A0
symbol: object_fdVtx_0071A0
count: 17
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0072B0:
type: OOT:ARRAY
offset: 0x0072B0
symbol: object_fdVtx_0072B0
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_0073E0:
type: OOT:ARRAY
offset: 0x0073E0
symbol: object_fdVtx_0073E0
count: 58
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_007780:
type: OOT:ARRAY
offset: 0x007780
symbol: object_fdVtx_007780
count: 34
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_009128:
type: OOT:ARRAY
offset: 0x009128
symbol: object_fdVtx_009128
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_009308:
type: OOT:ARRAY
offset: 0x009308
symbol: object_fdVtx_009308
count: 54
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_009B80:
type: OOT:ARRAY
offset: 0x009B80
symbol: object_fdVtx_009B80
count: 58
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_00A850:
type: OOT:ARRAY
offset: 0x00A850
symbol: object_fdVtx_00A850
count: 3
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_00B218:
type: OOT:ARRAY
offset: 0x00B218
symbol: object_fdVtx_00B218
count: 14
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_00B418:
type: OOT:ARRAY
offset: 0x00B418
symbol: object_fdVtx_00B418
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_00C258:
type: OOT:ARRAY
offset: 0x00C258
symbol: object_fdVtx_00C258
count: 151
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_00CF60:
type: OOT:ARRAY
offset: 0x00CF60
symbol: object_fdVtx_00CF60
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_00D370:
type: OOT:ARRAY
offset: 0x00D370
symbol: object_fdVtx_00D370
count: 3
array_type: VTX
zero_flag: true
null_cross_file: true
object_fdVtx_00D638:
type: OOT:ARRAY
offset: 0x00D638
symbol: object_fdVtx_00D638
count: 3
array_type: VTX
zero_flag: true
null_cross_file: true
gVolvagiaBodySkelLimbsLimb_00FF00:
type: OOT:LIMB
offset: 0x00FF00
symbol: gVolvagiaBodySkelLimbsLimb_00FF00
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF0C:
type: OOT:LIMB
offset: 0x00FF0C
symbol: gVolvagiaBodySkelLimbsLimb_00FF0C
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF18:
type: OOT:LIMB
offset: 0x00FF18
symbol: gVolvagiaBodySkelLimbsLimb_00FF18
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF24:
type: OOT:LIMB
offset: 0x00FF24
symbol: gVolvagiaBodySkelLimbsLimb_00FF24
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF30:
type: OOT:LIMB
offset: 0x00FF30
symbol: gVolvagiaBodySkelLimbsLimb_00FF30
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF3C:
type: OOT:LIMB
offset: 0x00FF3C
symbol: gVolvagiaBodySkelLimbsLimb_00FF3C
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF48:
type: OOT:LIMB
offset: 0x00FF48
symbol: gVolvagiaBodySkelLimbsLimb_00FF48
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF54:
type: OOT:LIMB
offset: 0x00FF54
symbol: gVolvagiaBodySkelLimbsLimb_00FF54
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF60:
type: OOT:LIMB
offset: 0x00FF60
symbol: gVolvagiaBodySkelLimbsLimb_00FF60
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF6C:
type: OOT:LIMB
offset: 0x00FF6C
symbol: gVolvagiaBodySkelLimbsLimb_00FF6C
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF78:
type: OOT:LIMB
offset: 0x00FF78
symbol: gVolvagiaBodySkelLimbsLimb_00FF78
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF84:
type: OOT:LIMB
offset: 0x00FF84
symbol: gVolvagiaBodySkelLimbsLimb_00FF84
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF90:
type: OOT:LIMB
offset: 0x00FF90
symbol: gVolvagiaBodySkelLimbsLimb_00FF90
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FF9C:
type: OOT:LIMB
offset: 0x00FF9C
symbol: gVolvagiaBodySkelLimbsLimb_00FF9C
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FFA8:
type: OOT:LIMB
offset: 0x00FFA8
symbol: gVolvagiaBodySkelLimbsLimb_00FFA8
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FFB4:
type: OOT:LIMB
offset: 0x00FFB4
symbol: gVolvagiaBodySkelLimbsLimb_00FFB4
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FFC0:
type: OOT:LIMB
offset: 0x00FFC0
symbol: gVolvagiaBodySkelLimbsLimb_00FFC0
limb_type: Standard
gVolvagiaBodySkelLimbsLimb_00FFCC:
type: OOT:LIMB
offset: 0x00FFCC
symbol: gVolvagiaBodySkelLimbsLimb_00FFCC
limb_type: Standard
gVolvagiaBodySkelLimbs:
type: BLOB
offset: 0xFFD8
symbol: gVolvagiaBodySkelLimbs
size: 0
gVolvagiaLeftArmSkelLimbsLimb_010080:
type: OOT:LIMB
offset: 0x010080
symbol: gVolvagiaLeftArmSkelLimbsLimb_010080
limb_type: Standard
gVolvagiaLeftArmSkelLimbsLimb_01008C:
type: OOT:LIMB
offset: 0x01008C
symbol: gVolvagiaLeftArmSkelLimbsLimb_01008C
limb_type: Standard
gVolvagiaLeftArmSkelLimbsLimb_010098:
type: OOT:LIMB
offset: 0x010098
symbol: gVolvagiaLeftArmSkelLimbsLimb_010098
limb_type: Standard
gVolvagiaLeftArmSkelLimbsLimb_0100A4:
type: OOT:LIMB
offset: 0x0100A4
symbol: gVolvagiaLeftArmSkelLimbsLimb_0100A4
limb_type: Standard
gVolvagiaLeftArmSkelLimbsLimb_0100B0:
type: OOT:LIMB
offset: 0x0100B0
symbol: gVolvagiaLeftArmSkelLimbsLimb_0100B0
limb_type: Standard
gVolvagiaLeftArmSkelLimbsLimb_0100BC:
type: OOT:LIMB
offset: 0x0100BC
symbol: gVolvagiaLeftArmSkelLimbsLimb_0100BC
limb_type: Standard
gVolvagiaLeftArmSkelLimbs:
type: BLOB
offset: 0x100C8
symbol: gVolvagiaLeftArmSkelLimbs
size: 0
gVolvagiaRightArmSkelLimbsLimb_010140:
type: OOT:LIMB
offset: 0x010140
symbol: gVolvagiaRightArmSkelLimbsLimb_010140
limb_type: Standard
gVolvagiaRightArmSkelLimbsLimb_01014C:
type: OOT:LIMB
offset: 0x01014C
symbol: gVolvagiaRightArmSkelLimbsLimb_01014C
limb_type: Standard
gVolvagiaRightArmSkelLimbsLimb_010158:
type: OOT:LIMB
offset: 0x010158
symbol: gVolvagiaRightArmSkelLimbsLimb_010158
limb_type: Standard
gVolvagiaRightArmSkelLimbsLimb_010164:
type: OOT:LIMB
offset: 0x010164
symbol: gVolvagiaRightArmSkelLimbsLimb_010164
limb_type: Standard
gVolvagiaRightArmSkelLimbsLimb_010170:
type: OOT:LIMB
offset: 0x010170
symbol: gVolvagiaRightArmSkelLimbsLimb_010170
limb_type: Standard
gVolvagiaRightArmSkelLimbsLimb_01017C:
type: OOT:LIMB
offset: 0x01017C
symbol: gVolvagiaRightArmSkelLimbsLimb_01017C
limb_type: Standard
gVolvagiaRightArmSkelLimbs:
type: BLOB
offset: 0x10188
symbol: gVolvagiaRightArmSkelLimbs
size: 0
gVolvagiaHeadSkelLimbsLimb_010200:
type: OOT:LIMB
offset: 0x010200
symbol: gVolvagiaHeadSkelLimbsLimb_010200
limb_type: Standard
gVolvagiaHeadSkelLimbsLimb_01020C:
type: OOT:LIMB
offset: 0x01020C
symbol: gVolvagiaHeadSkelLimbsLimb_01020C
limb_type: Standard
gVolvagiaHeadSkelLimbsLimb_010218:
type: OOT:LIMB
offset: 0x010218
symbol: gVolvagiaHeadSkelLimbsLimb_010218
limb_type: Standard
gVolvagiaHeadSkelLimbsLimb_010224:
type: OOT:LIMB
offset: 0x010224
symbol: gVolvagiaHeadSkelLimbsLimb_010224
limb_type: Standard
gVolvagiaHeadSkelLimbsLimb_010230:
type: OOT:LIMB
offset: 0x010230
symbol: gVolvagiaHeadSkelLimbsLimb_010230
limb_type: Standard
gVolvagiaHeadSkelLimbsLimb_01023C:
type: OOT:LIMB
offset: 0x01023C
symbol: gVolvagiaHeadSkelLimbsLimb_01023C
limb_type: Standard
gVolvagiaHeadSkelLimbs:
type: BLOB
offset: 0x10248
symbol: gVolvagiaHeadSkelLimbs
size: 0