Files
Shipwright/soh/assets/yml/ntsc_1-0/objects/object_tw.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

3098 lines
56 KiB
YAML

:config:
segments:
- [ 6, 0x010C3BE0 ]
- [ 4, 0x00D3A4E0 ]
- [ 8, 0x010C3BE0 ]
- [ 9, 0x010C3BE0 ]
- [ 10, 0x010C3BE0 ]
- [ 11, 0x010C3BE0 ]
- [ 12, 0x010C3BE0 ]
- [ 13, 0x010C3BE0 ]
external_files:
- ntsc_1-0/objects/gameplay_keep.yml
gTwinrovaBeamDL:
type: GFX
offset: 0x1DDF0
symbol: gTwinrovaBeamDL
gTwinrovaBigFlameDL:
type: GFX
offset: 0x19938
symbol: gTwinrovaBigFlameDL
gTwinrovaBigFlameMaskTex:
type: TEXTURE
offset: 0x19478
symbol: gTwinrovaBigFlameMaskTex
format: I4
width: 32
height: 64
gTwinrovaBigFlameTex:
type: TEXTURE
offset: 0x19078
symbol: gTwinrovaBigFlameTex
format: I8
width: 32
height: 32
gTwinrovaBraidEndTex:
type: TEXTURE
offset: 0x16650
symbol: gTwinrovaBraidEndTex
format: RGBA16
width: 8
height: 8
gTwinrovaBreastTex:
type: TEXTURE
offset: 0x24710
symbol: gTwinrovaBreastTex
format: RGBA16
width: 16
height: 16
gTwinrovaBroomFireJetDL:
type: GFX
offset: 0x2DFB0
symbol: gTwinrovaBroomFireJetDL
gTwinrovaBroomFireJetLimb:
type: OOT:LIMB
offset: 0x30B50
symbol: gTwinrovaBroomFireJetLimb
limb_type: Standard
gTwinrovaBroomFireTrailDL:
type: GFX
offset: 0x2E098
symbol: gTwinrovaBroomFireTrailDL
gTwinrovaBroomFireTrailLimb:
type: OOT:LIMB
offset: 0x30B5C
symbol: gTwinrovaBroomFireTrailLimb
limb_type: Standard
gTwinrovaBroomHandleTex:
type: TEXTURE
offset: 0xABB8
symbol: gTwinrovaBroomHandleTex
format: RGBA16
width: 8
height: 8
gTwinrovaBroomHeadTex:
type: TEXTURE
offset: 0xAC38
symbol: gTwinrovaBroomHeadTex
format: RGBA16
width: 16
height: 32
gTwinrovaBroomIceJetDL:
type: GFX
offset: 0x2DDD8
symbol: gTwinrovaBroomIceJetDL
gTwinrovaBroomIceJetLimb:
type: OOT:LIMB
offset: 0x30AE4
symbol: gTwinrovaBroomIceJetLimb
limb_type: Standard
gTwinrovaBroomIceTrailDL:
type: GFX
offset: 0x2DEB0
symbol: gTwinrovaBroomIceTrailDL
gTwinrovaBroomIceTrailLimb:
type: OOT:LIMB
offset: 0x30AD8
symbol: gTwinrovaBroomIceTrailLimb
limb_type: Standard
gTwinrovaChargedAttackHitAnim:
type: OOT:ANIMATION
offset: 0x324F0
symbol: gTwinrovaChargedAttackHitAnim
gTwinrovaCircleTex:
type: TEXTURE
offset: 0x1EB28
symbol: gTwinrovaCircleTex
format: I8
width: 16
height: 16
gTwinrovaCloudMaskTex:
type: TEXTURE
offset: 0x1E430
symbol: gTwinrovaCloudMaskTex
format: I4
width: 32
height: 32
gTwinrovaDamageAnim:
type: OOT:ANIMATION
offset: 0x24374
symbol: gTwinrovaDamageAnim
gTwinrovaDeathAnim:
type: OOT:ANIMATION
offset: 0x216DC
symbol: gTwinrovaDeathAnim
gTwinrovaEarAndFingerTLUT:
type: TEXTURE
offset: 0x2A020
symbol: gTwinrovaEarAndFingerTLUT
format: RGBA16
width: 8
height: 5
gTwinrovaEarTex:
type: TEXTURE
offset: 0x2ADF0
symbol: gTwinrovaEarTex
format: CI8
width: 8
height: 8
tlut: 0x2A020
gTwinrovaEffectHaloDL:
type: GFX
offset: 0x1A790
symbol: gTwinrovaEffectHaloDL
gTwinrovaEffectMaskTex:
type: TEXTURE
offset: 0xBE38
symbol: gTwinrovaEffectMaskTex
format: I4
width: 32
height: 64
gTwinrovaEffectTex:
type: TEXTURE
offset: 0xBA38
symbol: gTwinrovaEffectTex
format: I8
width: 32
height: 32
gTwinrovaEmblemTex:
type: TEXTURE
offset: 0x24510
symbol: gTwinrovaEmblemTex
format: RGBA16
width: 16
height: 16
gTwinrovaEyeAndMouthTLUT:
type: TEXTURE
offset: 0x29E50
symbol: gTwinrovaEyeAndMouthTLUT
format: RGBA16
width: 29
height: 8
gTwinrovaEyeClosedTex:
type: TEXTURE
offset: 0x2A470
symbol: gTwinrovaEyeClosedTex
format: CI8
width: 32
height: 32
tlut: 0x29E50
gTwinrovaEyeHalfTex:
type: TEXTURE
offset: 0x2A070
symbol: gTwinrovaEyeHalfTex
format: CI8
width: 32
height: 32
tlut: 0x29E50
gTwinrovaEyeOpenTex:
type: TEXTURE
offset: 0x2A9B0
symbol: gTwinrovaEyeOpenTex
format: CI8
width: 32
height: 32
tlut: 0x29E50
gTwinrovaEyebrowTex:
type: TEXTURE
offset: 0x2A970
symbol: gTwinrovaEyebrowTex
format: RGBA16
width: 8
height: 4
gTwinrovaFingerTex:
type: TEXTURE
offset: 0x2AF30
symbol: gTwinrovaFingerTex
format: CI8
width: 8
height: 16
tlut: 0x2A020
gTwinrovaFireAttackAnim:
type: OOT:ANIMATION
offset: 0x23750
symbol: gTwinrovaFireAttackAnim
gTwinrovaFireDL:
type: GFX
offset: 0x1A430
symbol: gTwinrovaFireDL
gTwinrovaFireMaskTex:
type: TEXTURE
offset: 0x1A200
symbol: gTwinrovaFireMaskTex
format: I4
width: 32
height: 32
gTwinrovaFirePoolAndShieldChargeCenterTex:
type: TEXTURE
offset: 0x19A20
symbol: gTwinrovaFirePoolAndShieldChargeCenterTex
format: I4
width: 32
height: 32
gTwinrovaFirePoolDL:
type: GFX
offset: 0x19D40
symbol: gTwinrovaFirePoolDL
gTwinrovaFireSmokeDL:
type: GFX
offset: 0x18FC0
symbol: gTwinrovaFireSmokeDL
gTwinrovaFireSmokeTex:
type: TEXTURE
offset: 0x18B60
symbol: gTwinrovaFireSmokeTex
format: I4
width: 32
height: 64
gTwinrovaFireTex:
type: TEXTURE
offset: 0x19E00
symbol: gTwinrovaFireTex
format: I4
width: 32
height: 64
gTwinrovaGrimaceTex:
type: TEXTURE
offset: 0x2A870
symbol: gTwinrovaGrimaceTex
format: CI8
width: 16
height: 16
tlut: 0x29e50
gTwinrovaHairFireJetDL:
type: GFX
offset: 0x2DBC8
symbol: gTwinrovaHairFireJetDL
gTwinrovaHairFireJetLimb:
type: OOT:LIMB
offset: 0x30A30
symbol: gTwinrovaHairFireJetLimb
limb_type: Standard
gTwinrovaHairFireTrailDL:
type: GFX
offset: 0x2DCB8
symbol: gTwinrovaHairFireTrailDL
gTwinrovaHairFireTrailLimb:
type: OOT:LIMB
offset: 0x30A3C
symbol: gTwinrovaHairFireTrailLimb
limb_type: Standard
gTwinrovaHairIceJetDL:
type: GFX
offset: 0x2D9F0
symbol: gTwinrovaHairIceJetDL
gTwinrovaHairIceJetLimb:
type: OOT:LIMB
offset: 0x30A24
symbol: gTwinrovaHairIceJetLimb
limb_type: Standard
gTwinrovaHairIceTrailDL:
type: GFX
offset: 0x2DAE0
symbol: gTwinrovaHairIceTrailDL
gTwinrovaHairIceTrailLimb:
type: OOT:LIMB
offset: 0x30A18
symbol: gTwinrovaHairIceTrailLimb
limb_type: Standard
gTwinrovaHairTex:
type: TEXTURE
offset: 0xA8F8
symbol: gTwinrovaHairTex
format: RGBA16
width: 8
height: 32
gTwinrovaHaloDL:
type: GFX
offset: 0x1F608
symbol: gTwinrovaHaloDL
gTwinrovaHeadDL:
type: GFX
offset: 0x2CBB0
symbol: gTwinrovaHeadDL
gTwinrovaHeadLimb:
type: OOT:LIMB
offset: 0x30A60
symbol: gTwinrovaHeadLimb
limb_type: Standard
gTwinrovaHoverAnim:
type: OOT:ANIMATION
offset: 0x317F8
symbol: gTwinrovaHoverAnim
gTwinrovaIceAttackAnim:
type: OOT:ANIMATION
offset: 0x22700
symbol: gTwinrovaIceAttackAnim
gTwinrovaIceMaterialDL:
type: GFX
offset: 0x1A998
symbol: gTwinrovaIceMaterialDL
gTwinrovaIceModelDL:
type: GFX
offset: 0x1AB00
symbol: gTwinrovaIceModelDL
gTwinrovaIcePoolDL:
type: GFX
offset: 0x1BC00
symbol: gTwinrovaIcePoolDL
gTwinrovaIcePoolShineDL:
type: GFX
offset: 0x1C1C0
symbol: gTwinrovaIcePoolShineDL
gTwinrovaIcePoolShineMaskTex:
type: TEXTURE
offset: 0x1C0A0
symbol: gTwinrovaIcePoolShineMaskTex
format: I4
width: 16
height: 16
gTwinrovaIcePoolShineTex:
type: TEXTURE
offset: 0x1BCA0
symbol: gTwinrovaIcePoolShineTex
format: I4
width: 32
height: 64
gTwinrovaIcePoolTex:
type: TEXTURE
offset: 0x1AB20
symbol: gTwinrovaIcePoolTex
format: I8
width: 64
height: 64
gTwinrovaIceSurroundingPlayerMaterialDL:
type: GFX
offset: 0x1AA50
symbol: gTwinrovaIceSurroundingPlayerMaterialDL
gTwinrovaIntroAnim:
type: OOT:ANIMATION
offset: 0x37A2C
symbol: gTwinrovaIntroAnim
gTwinrovaInvisibleLeftHairBunDL:
type: GFX
offset: 0x2CAF0
symbol: gTwinrovaInvisibleLeftHairBunDL
gTwinrovaInvisibleRightHairBunDL:
type: GFX
offset: 0x2CB50
symbol: gTwinrovaInvisibleRightHairBunDL
gTwinrovaKotakeBroomDL:
type: GFX
offset: 0x12B38
symbol: gTwinrovaKotakeBroomDL
gTwinrovaKotakeBroomInvisibleHeadDL:
type: GFX
offset: 0x11C98
symbol: gTwinrovaKotakeBroomInvisibleHeadDL
gTwinrovaKotakeBroomLimb:
type: OOT:LIMB
offset: 0x6FDC
symbol: gTwinrovaKotakeBroomLimb
limb_type: Standard
gTwinrovaKotakeFireBroomHeadDL:
type: GFX
offset: 0x14070
symbol: gTwinrovaKotakeFireBroomHeadDL
gTwinrovaKotakeFireBroomHeadOuterDL:
type: GFX
offset: 0x14158
symbol: gTwinrovaKotakeFireBroomHeadOuterDL
gTwinrovaKotakeGerudoFabricTex:
type: TEXTURE
offset: 0x9638
symbol: gTwinrovaKotakeGerudoFabricTex
format: RGBA16
width: 32
height: 32
gTwinrovaKotakeHeadDL:
type: GFX
offset: 0x12CE0
symbol: gTwinrovaKotakeHeadDL
gTwinrovaKotakeHeadInvisibleHairDL:
type: GFX
offset: 0x110A8
symbol: gTwinrovaKotakeHeadInvisibleHairDL
gTwinrovaKotakeHeadLimb:
type: OOT:LIMB
offset: 0x7030
symbol: gTwinrovaKotakeHeadLimb
limb_type: Standard
gTwinrovaKotakeIceBroomHeadDL:
type: GFX
offset: 0x13E98
symbol: gTwinrovaKotakeIceBroomHeadDL
gTwinrovaKotakeIceBroomHeadOuterDL:
type: GFX
offset: 0x13F98
symbol: gTwinrovaKotakeIceBroomHeadOuterDL
gTwinrovaKotakeIceHairDL:
type: GFX
offset: 0x13AE8
symbol: gTwinrovaKotakeIceHairDL
gTwinrovaKotakeJewelTex:
type: TEXTURE
offset: 0xB138
symbol: gTwinrovaKotakeJewelTex
format: RGBA16
width: 8
height: 8
gTwinrovaKotakeKoumeAttackEndAnim:
type: OOT:ANIMATION
offset: 0x4548
symbol: gTwinrovaKotakeKoumeAttackEndAnim
gTwinrovaKotakeKoumeAttackLoopAnim:
type: OOT:ANIMATION
offset: 0x3E34
symbol: gTwinrovaKotakeKoumeAttackLoopAnim
gTwinrovaKotakeKoumeAttackStartAnim:
type: OOT:ANIMATION
offset: 0x3614
symbol: gTwinrovaKotakeKoumeAttackStartAnim
gTwinrovaKotakeKoumeBickerAnim:
type: OOT:ANIMATION
offset: 0x12A4
symbol: gTwinrovaKotakeKoumeBickerAnim
gTwinrovaKotakeKoumeChargeUpAttackLoopAnim:
type: OOT:ANIMATION
offset: 0x9398
symbol: gTwinrovaKotakeKoumeChargeUpAttackLoopAnim
gTwinrovaKotakeKoumeChargeUpAttackStartAnim:
type: OOT:ANIMATION
offset: 0x7688
symbol: gTwinrovaKotakeKoumeChargeUpAttackStartAnim
gTwinrovaKotakeKoumeDamageEndAnim:
type: OOT:ANIMATION
offset: 0x6530
symbol: gTwinrovaKotakeKoumeDamageEndAnim
gTwinrovaKotakeKoumeDamageStartAnim:
type: OOT:ANIMATION
offset: 0x578C
symbol: gTwinrovaKotakeKoumeDamageStartAnim
gTwinrovaKotakeKoumeEarTex:
type: TEXTURE
offset: 0xAAF8
symbol: gTwinrovaKotakeKoumeEarTex
format: CI8
width: 8
height: 8
tlut: 0x9490
gTwinrovaKotakeKoumeEyeClosedTex:
type: TEXTURE
offset: 0xB638
symbol: gTwinrovaKotakeKoumeEyeClosedTex
format: CI8
width: 32
height: 32
tlut: 0x9490
gTwinrovaKotakeKoumeEyeHalfTex:
type: TEXTURE
offset: 0xB238
symbol: gTwinrovaKotakeKoumeEyeHalfTex
format: CI8
width: 32
height: 32
tlut: 0x9490
gTwinrovaKotakeKoumeEyeOpenTex:
type: TEXTURE
offset: 0xA438
symbol: gTwinrovaKotakeKoumeEyeOpenTex
format: CI8
width: 32
height: 32
tlut: 0x9490
gTwinrovaKotakeKoumeFingerTex:
type: TEXTURE
offset: 0xAB38
symbol: gTwinrovaKotakeKoumeFingerTex
format: CI8
width: 8
height: 16
tlut: 0x9490
gTwinrovaKotakeKoumeFloatLookForwardAnim:
type: OOT:ANIMATION
offset: 0x1D10
symbol: gTwinrovaKotakeKoumeFloatLookForwardAnim
gTwinrovaKotakeKoumeFloatLookUpAnim:
type: OOT:ANIMATION
offset: 0x17E0
symbol: gTwinrovaKotakeKoumeFloatLookUpAnim
gTwinrovaKotakeKoumeFlyAnim:
type: OOT:ANIMATION
offset: 0x6F28
symbol: gTwinrovaKotakeKoumeFlyAnim
gTwinrovaKotakeKoumeIdleEndAnim:
type: OOT:ANIMATION
offset: 0xAAC
symbol: gTwinrovaKotakeKoumeIdleEndAnim
gTwinrovaKotakeKoumeIdleLoopAnim:
type: OOT:ANIMATION
offset: 0x4A4
symbol: gTwinrovaKotakeKoumeIdleLoopAnim
gTwinrovaKotakeKoumeJewelHolderTex:
type: TEXTURE
offset: 0xB038
symbol: gTwinrovaKotakeKoumeJewelHolderTex
format: RGBA16
width: 16
height: 8
gTwinrovaKotakeKoumeLaughAnim:
type: OOT:ANIMATION
offset: 0x88C8
symbol: gTwinrovaKotakeKoumeLaughAnim
gTwinrovaKotakeKoumeMouthTex:
type: TEXTURE
offset: 0xA8B8
symbol: gTwinrovaKotakeKoumeMouthTex
format: CI8
width: 8
height: 8
tlut: 0x9490
gTwinrovaKotakeKoumeNeckTex:
type: TEXTURE
offset: 0xB1B8
symbol: gTwinrovaKotakeKoumeNeckTex
format: CI8
width: 8
height: 8
tlut: 0x9490
gTwinrovaKotakeKoumeNostrilsTex:
type: TEXTURE
offset: 0xB1F8
symbol: gTwinrovaKotakeKoumeNostrilsTex
format: CI8
width: 8
height: 8
tlut: 0x9490
gTwinrovaKotakeKoumeShakeHandAnim:
type: OOT:ANIMATION
offset: 0x230C
symbol: gTwinrovaKotakeKoumeShakeHandAnim
gTwinrovaKotakeKoumeSkinTex:
type: TEXTURE
offset: 0xA838
symbol: gTwinrovaKotakeKoumeSkinTex
format: CI8
width: 16
height: 8
tlut: 0x9490
gTwinrovaKotakeKoumeSpinAnim:
type: OOT:ANIMATION
offset: 0x7CA8
symbol: gTwinrovaKotakeKoumeSpinAnim
gTwinrovaKotakeKoumeTPoseAnim:
type: OOT:ANIMATION
offset: 0x947C
symbol: gTwinrovaKotakeKoumeTPoseAnim
gTwinrovaKotakeLeftBraidEndDL:
type: GFX
offset: 0x15440
symbol: gTwinrovaKotakeLeftBraidEndDL
gTwinrovaKotakeLeftBraidEndLimb:
type: OOT:LIMB
offset: 0x706C
symbol: gTwinrovaKotakeLeftBraidEndLimb
limb_type: Standard
gTwinrovaKotakeLeftBraidStartDL:
type: GFX
offset: 0x15538
symbol: gTwinrovaKotakeLeftBraidStartDL
gTwinrovaKotakeLeftBraidStartLimb:
type: OOT:LIMB
offset: 0x7060
symbol: gTwinrovaKotakeLeftBraidStartLimb
limb_type: Standard
gTwinrovaKotakeLeftFootDL:
type: GFX
offset: 0x12210
symbol: gTwinrovaKotakeLeftFootDL
gTwinrovaKotakeLeftFootLimb:
type: OOT:LIMB
offset: 0x6F64
symbol: gTwinrovaKotakeLeftFootLimb
limb_type: Standard
gTwinrovaKotakeLeftHandDL:
type: GFX
offset: 0x12410
symbol: gTwinrovaKotakeLeftHandDL
gTwinrovaKotakeLeftHandLimb:
type: OOT:LIMB
offset: 0x6FD0
symbol: gTwinrovaKotakeLeftHandLimb
limb_type: Standard
gTwinrovaKotakeLeftShinDL:
type: GFX
offset: 0x120C8
symbol: gTwinrovaKotakeLeftShinDL
gTwinrovaKotakeLeftShinLimb:
type: OOT:LIMB
offset: 0x6F58
symbol: gTwinrovaKotakeLeftShinLimb
limb_type: Standard
gTwinrovaKotakeLeftSleeveEndDL:
type: GFX
offset: 0x15FF8
symbol: gTwinrovaKotakeLeftSleeveEndDL
gTwinrovaKotakeLeftSleeveEndLimb:
type: OOT:LIMB
offset: 0x6FB8
symbol: gTwinrovaKotakeLeftSleeveEndLimb
limb_type: Standard
gTwinrovaKotakeLeftSleeveFrontDL:
type: GFX
offset: 0x15E78
symbol: gTwinrovaKotakeLeftSleeveFrontDL
gTwinrovaKotakeLeftSleeveFrontLimb:
type: OOT:LIMB
offset: 0x6FC4
symbol: gTwinrovaKotakeLeftSleeveFrontLimb
limb_type: Standard
gTwinrovaKotakeLeftSleeveMidDL:
type: GFX
offset: 0x16118
symbol: gTwinrovaKotakeLeftSleeveMidDL
gTwinrovaKotakeLeftSleeveMidLimb:
type: OOT:LIMB
offset: 0x6FAC
symbol: gTwinrovaKotakeLeftSleeveMidLimb
limb_type: Standard
gTwinrovaKotakeLeftSleeveStartDL:
type: GFX
offset: 0x16240
symbol: gTwinrovaKotakeLeftSleeveStartDL
gTwinrovaKotakeLeftSleeveStartLimb:
type: OOT:LIMB
offset: 0x6FA0
symbol: gTwinrovaKotakeLeftSleeveStartLimb
limb_type: Standard
gTwinrovaKotakeLeftThighDL:
type: GFX
offset: 0x164C8
symbol: gTwinrovaKotakeLeftThighDL
gTwinrovaKotakeLeftThighLimb:
type: OOT:LIMB
offset: 0x6F4C
symbol: gTwinrovaKotakeLeftThighLimb
limb_type: Standard
gTwinrovaKotakeMagicSigilDL:
type: GFX
offset: 0x1CEE0
symbol: gTwinrovaKotakeMagicSigilDL
gTwinrovaKotakeMagicSigilMaskTex:
type: TEXTURE
offset: 0x1C2A0
symbol: gTwinrovaKotakeMagicSigilMaskTex
format: I4
width: 32
height: 64
gTwinrovaKotakeMagicSigilTex:
type: TEXTURE
offset: 0x1C6A0
symbol: gTwinrovaKotakeMagicSigilTex
format: I4
width: 64
height: 64
gTwinrovaKotakeNeckDL:
type: GFX
offset: 0x15850
symbol: gTwinrovaKotakeNeckDL
gTwinrovaKotakeNeckLimb:
type: OOT:LIMB
offset: 0x7024
symbol: gTwinrovaKotakeNeckLimb
limb_type: Standard
gTwinrovaKotakePelvisDL:
type: GFX
offset: 0x164D0
symbol: gTwinrovaKotakePelvisDL
gTwinrovaKotakePelvisLimb:
type: OOT:LIMB
offset: 0x6F40
symbol: gTwinrovaKotakePelvisLimb
limb_type: Standard
gTwinrovaKotakeRightBraidEndDL:
type: GFX
offset: 0x15648
symbol: gTwinrovaKotakeRightBraidEndDL
gTwinrovaKotakeRightBraidEndLimb:
type: OOT:LIMB
offset: 0x7048
symbol: gTwinrovaKotakeRightBraidEndLimb
limb_type: Standard
gTwinrovaKotakeRightBraidStartDL:
type: GFX
offset: 0x15740
symbol: gTwinrovaKotakeRightBraidStartDL
gTwinrovaKotakeRightBraidStartLimb:
type: OOT:LIMB
offset: 0x703C
symbol: gTwinrovaKotakeRightBraidStartLimb
limb_type: Standard
gTwinrovaKotakeRightFootDL:
type: GFX
offset: 0x12178
symbol: gTwinrovaKotakeRightFootDL
gTwinrovaKotakeRightFootLimb:
type: OOT:LIMB
offset: 0x6F88
symbol: gTwinrovaKotakeRightFootLimb
limb_type: Standard
gTwinrovaKotakeRightHandDL:
type: GFX
offset: 0x122A8
symbol: gTwinrovaKotakeRightHandDL
gTwinrovaKotakeRightHandLimb:
type: OOT:LIMB
offset: 0x7018
symbol: gTwinrovaKotakeRightHandLimb
limb_type: Standard
gTwinrovaKotakeRightShinDL:
type: GFX
offset: 0x12018
symbol: gTwinrovaKotakeRightShinDL
gTwinrovaKotakeRightShinLimb:
type: OOT:LIMB
offset: 0x6F7C
symbol: gTwinrovaKotakeRightShinLimb
limb_type: Standard
gTwinrovaKotakeRightSleeveEndDL:
type: GFX
offset: 0x15B10
symbol: gTwinrovaKotakeRightSleeveEndDL
gTwinrovaKotakeRightSleeveEndLimb:
type: OOT:LIMB
offset: 0x7000
symbol: gTwinrovaKotakeRightSleeveEndLimb
limb_type: Standard
gTwinrovaKotakeRightSleeveFrontDL:
type: GFX
offset: 0x15990
symbol: gTwinrovaKotakeRightSleeveFrontDL
gTwinrovaKotakeRightSleeveFrontLimb:
type: OOT:LIMB
offset: 0x700C
symbol: gTwinrovaKotakeRightSleeveFrontLimb
limb_type: Standard
gTwinrovaKotakeRightSleeveMidDL:
type: GFX
offset: 0x15C30
symbol: gTwinrovaKotakeRightSleeveMidDL
gTwinrovaKotakeRightSleeveMidLimb:
type: OOT:LIMB
offset: 0x6FF4
symbol: gTwinrovaKotakeRightSleeveMidLimb
limb_type: Standard
gTwinrovaKotakeRightSleeveStartDL:
type: GFX
offset: 0x15D58
symbol: gTwinrovaKotakeRightSleeveStartDL
gTwinrovaKotakeRightSleeveStartLimb:
type: OOT:LIMB
offset: 0x6FE8
symbol: gTwinrovaKotakeRightSleeveStartLimb
limb_type: Standard
gTwinrovaKotakeRightThighDL:
type: GFX
offset: 0x164C0
symbol: gTwinrovaKotakeRightThighDL
gTwinrovaKotakeRightThighLimb:
type: OOT:LIMB
offset: 0x6F70
symbol: gTwinrovaKotakeRightThighLimb
limb_type: Standard
gTwinrovaKotakeRobeTex:
type: TEXTURE
offset: 0x9E38
symbol: gTwinrovaKotakeRobeTex
format: RGBA16
width: 16
height: 16
gTwinrovaKotakeSkel:
type: OOT:SKELETON
offset: 0x70E0
symbol: gTwinrovaKotakeSkel
limb_type: Standard
skel_type: Flex
gTwinrovaKotakeTeethDL:
type: GFX
offset: 0x11FB8
symbol: gTwinrovaKotakeTeethDL
gTwinrovaKotakeTeethLimb:
type: OOT:LIMB
offset: 0x7054
symbol: gTwinrovaKotakeTeethLimb
limb_type: Standard
gTwinrovaKotakeTorsoDL:
type: GFX
offset: 0x16360
symbol: gTwinrovaKotakeTorsoDL
gTwinrovaKotakeTorsoLimb:
type: OOT:LIMB
offset: 0x6F94
symbol: gTwinrovaKotakeTorsoLimb
limb_type: Standard
gTwinrovaKoumeBroomDL:
type: GFX
offset: 0x13310
symbol: gTwinrovaKoumeBroomDL
gTwinrovaKoumeBroomInvisibleHeadDL:
type: GFX
offset: 0x11E28
symbol: gTwinrovaKoumeBroomInvisibleHeadDL
gTwinrovaKoumeBroomLimb:
type: OOT:LIMB
offset: 0x1F784
symbol: gTwinrovaKoumeBroomLimb
limb_type: Standard
gTwinrovaKoumeFireHairDL:
type: GFX
offset: 0x13D68
symbol: gTwinrovaKoumeFireHairDL
gTwinrovaKoumeGerudoFabricTex:
type: TEXTURE
offset: 0xC238
symbol: gTwinrovaKoumeGerudoFabricTex
format: RGBA16
width: 32
height: 32
gTwinrovaKoumeHeadDL:
type: GFX
offset: 0x134B8
symbol: gTwinrovaKoumeHeadDL
gTwinrovaKoumeHeadInvisibleHairDL:
type: GFX
offset: 0x116A0
symbol: gTwinrovaKoumeHeadInvisibleHairDL
gTwinrovaKoumeHeadLimb:
type: OOT:LIMB
offset: 0x1F7D8
symbol: gTwinrovaKoumeHeadLimb
limb_type: Standard
gTwinrovaKoumeJewelTex:
type: TEXTURE
offset: 0xCA38
symbol: gTwinrovaKoumeJewelTex
format: RGBA16
width: 8
height: 8
gTwinrovaKoumeKotakeTLUT:
type: TEXTURE
offset: 0x9490
symbol: gTwinrovaKoumeKotakeTLUT
format: RGBA16
width: 53
height: 4
gTwinrovaKoumeLeftBraidEndDL:
type: GFX
offset: 0x17910
symbol: gTwinrovaKoumeLeftBraidEndDL
gTwinrovaKoumeLeftBraidEndLimb:
type: OOT:LIMB
offset: 0x1F814
symbol: gTwinrovaKoumeLeftBraidEndLimb
limb_type: Standard
gTwinrovaKoumeLeftBraidStartDL:
type: GFX
offset: 0x17A08
symbol: gTwinrovaKoumeLeftBraidStartDL
gTwinrovaKoumeLeftBraidStartLimb:
type: OOT:LIMB
offset: 0x1F808
symbol: gTwinrovaKoumeLeftBraidStartLimb
limb_type: Standard
gTwinrovaKoumeLeftFootDL:
type: GFX
offset: 0x12848
symbol: gTwinrovaKoumeLeftFootDL
gTwinrovaKoumeLeftFootLimb:
type: OOT:LIMB
offset: 0x1F70C
symbol: gTwinrovaKoumeLeftFootLimb
limb_type: Standard
gTwinrovaKoumeLeftHandDL:
type: GFX
offset: 0x126E0
symbol: gTwinrovaKoumeLeftHandDL
gTwinrovaKoumeLeftHandLimb:
type: OOT:LIMB
offset: 0x1F778
symbol: gTwinrovaKoumeLeftHandLimb
limb_type: Standard
gTwinrovaKoumeLeftShinDL:
type: GFX
offset: 0x12978
symbol: gTwinrovaKoumeLeftShinDL
gTwinrovaKoumeLeftShinLimb:
type: OOT:LIMB
offset: 0x1F700
symbol: gTwinrovaKoumeLeftShinLimb
limb_type: Standard
gTwinrovaKoumeLeftSleeveEndDL:
type: GFX
offset: 0x184C8
symbol: gTwinrovaKoumeLeftSleeveEndDL
gTwinrovaKoumeLeftSleeveEndLimb:
type: OOT:LIMB
offset: 0x1F760
symbol: gTwinrovaKoumeLeftSleeveEndLimb
limb_type: Standard
gTwinrovaKoumeLeftSleeveFrontDL:
type: GFX
offset: 0x18348
symbol: gTwinrovaKoumeLeftSleeveFrontDL
gTwinrovaKoumeLeftSleeveFrontLimb:
type: OOT:LIMB
offset: 0x1F76C
symbol: gTwinrovaKoumeLeftSleeveFrontLimb
limb_type: Standard
gTwinrovaKoumeLeftSleeveMidDL:
type: GFX
offset: 0x185E8
symbol: gTwinrovaKoumeLeftSleeveMidDL
gTwinrovaKoumeLeftSleeveMidLimb:
type: OOT:LIMB
offset: 0x1F754
symbol: gTwinrovaKoumeLeftSleeveMidLimb
limb_type: Standard
gTwinrovaKoumeLeftSleeveStartDL:
type: GFX
offset: 0x18710
symbol: gTwinrovaKoumeLeftSleeveStartDL
gTwinrovaKoumeLeftSleeveStartLimb:
type: OOT:LIMB
offset: 0x1F748
symbol: gTwinrovaKoumeLeftSleeveStartLimb
limb_type: Standard
gTwinrovaKoumeLeftThighDL:
type: GFX
offset: 0x18998
symbol: gTwinrovaKoumeLeftThighDL
gTwinrovaKoumeLeftThighLimb:
type: OOT:LIMB
offset: 0x1F6F4
symbol: gTwinrovaKoumeLeftThighLimb
limb_type: Standard
gTwinrovaKoumeMagicSigilDL:
type: GFX
offset: 0x1DBE8
symbol: gTwinrovaKoumeMagicSigilDL
gTwinrovaKoumeMagicSigilMaskTex:
type: TEXTURE
offset: 0x1CFA8
symbol: gTwinrovaKoumeMagicSigilMaskTex
format: I4
width: 32
height: 64
gTwinrovaKoumeMagicSigilTex:
type: TEXTURE
offset: 0x1D3A8
symbol: gTwinrovaKoumeMagicSigilTex
format: I4
width: 64
height: 64
gTwinrovaKoumeNeckDL:
type: GFX
offset: 0x17D20
symbol: gTwinrovaKoumeNeckDL
gTwinrovaKoumeNeckLimb:
type: OOT:LIMB
offset: 0x1F7CC
symbol: gTwinrovaKoumeNeckLimb
limb_type: Standard
gTwinrovaKoumePelvisDL:
type: GFX
offset: 0x189A0
symbol: gTwinrovaKoumePelvisDL
gTwinrovaKoumePelvisLimb:
type: OOT:LIMB
offset: 0x1F6E8
symbol: gTwinrovaKoumePelvisLimb
limb_type: Standard
gTwinrovaKoumeRightBraidEndDL:
type: GFX
offset: 0x17B18
symbol: gTwinrovaKoumeRightBraidEndDL
gTwinrovaKoumeRightBraidEndLimb:
type: OOT:LIMB
offset: 0x1F7F0
symbol: gTwinrovaKoumeRightBraidEndLimb
limb_type: Standard
gTwinrovaKoumeRightBraidStartDL:
type: GFX
offset: 0x17C10
symbol: gTwinrovaKoumeRightBraidStartDL
gTwinrovaKoumeRightBraidStartLimb:
type: OOT:LIMB
offset: 0x1F7E4
symbol: gTwinrovaKoumeRightBraidStartLimb
limb_type: Standard
gTwinrovaKoumeRightFootDL:
type: GFX
offset: 0x128E0
symbol: gTwinrovaKoumeRightFootDL
gTwinrovaKoumeRightFootLimb:
type: OOT:LIMB
offset: 0x1F730
symbol: gTwinrovaKoumeRightFootLimb
limb_type: Standard
gTwinrovaKoumeRightHandDL:
type: GFX
offset: 0x12578
symbol: gTwinrovaKoumeRightHandDL
gTwinrovaKoumeRightHandLimb:
type: OOT:LIMB
offset: 0x1F7C0
symbol: gTwinrovaKoumeRightHandLimb
limb_type: Standard
gTwinrovaKoumeRightShinDL:
type: GFX
offset: 0x12A28
symbol: gTwinrovaKoumeRightShinDL
gTwinrovaKoumeRightShinLimb:
type: OOT:LIMB
offset: 0x1F724
symbol: gTwinrovaKoumeRightShinLimb
limb_type: Standard
gTwinrovaKoumeRightSleeveEndDL:
type: GFX
offset: 0x17FE0
symbol: gTwinrovaKoumeRightSleeveEndDL
gTwinrovaKoumeRightSleeveEndLimb:
type: OOT:LIMB
offset: 0x1F7A8
symbol: gTwinrovaKoumeRightSleeveEndLimb
limb_type: Standard
gTwinrovaKoumeRightSleeveFrontDL:
type: GFX
offset: 0x17E60
symbol: gTwinrovaKoumeRightSleeveFrontDL
gTwinrovaKoumeRightSleeveFrontLimb:
type: OOT:LIMB
offset: 0x1F7B4
symbol: gTwinrovaKoumeRightSleeveFrontLimb
limb_type: Standard
gTwinrovaKoumeRightSleeveMidDL:
type: GFX
offset: 0x18100
symbol: gTwinrovaKoumeRightSleeveMidDL
gTwinrovaKoumeRightSleeveMidLimb:
type: OOT:LIMB
offset: 0x1F79C
symbol: gTwinrovaKoumeRightSleeveMidLimb
limb_type: Standard
gTwinrovaKoumeRightSleeveStartDL:
type: GFX
offset: 0x18228
symbol: gTwinrovaKoumeRightSleeveStartDL
gTwinrovaKoumeRightSleeveStartLimb:
type: OOT:LIMB
offset: 0x1F790
symbol: gTwinrovaKoumeRightSleeveStartLimb
limb_type: Standard
gTwinrovaKoumeRightThighDL:
type: GFX
offset: 0x18990
symbol: gTwinrovaKoumeRightThighDL
gTwinrovaKoumeRightThighLimb:
type: OOT:LIMB
offset: 0x1F718
symbol: gTwinrovaKoumeRightThighLimb
limb_type: Standard
gTwinrovaKoumeRobeTex:
type: TEXTURE
offset: 0xCAB8
symbol: gTwinrovaKoumeRobeTex
format: RGBA16
width: 16
height: 16
gTwinrovaKoumeSkel:
type: OOT:SKELETON
offset: 0x1F888
symbol: gTwinrovaKoumeSkel
limb_type: Standard
skel_type: Flex
gTwinrovaKoumeTeethDL:
type: GFX
offset: 0x12AD8
symbol: gTwinrovaKoumeTeethDL
gTwinrovaKoumeTeethLimb:
type: OOT:LIMB
offset: 0x1F7FC
symbol: gTwinrovaKoumeTeethLimb
limb_type: Standard
gTwinrovaKoumeTorsoDL:
type: GFX
offset: 0x18830
symbol: gTwinrovaKoumeTorsoDL
gTwinrovaKoumeTorsoLimb:
type: OOT:LIMB
offset: 0x1F73C
symbol: gTwinrovaKoumeTorsoLimb
limb_type: Standard
gTwinrovaLaughAnim:
type: OOT:ANIMATION
offset: 0x38ED0
symbol: gTwinrovaLaughAnim
gTwinrovaLeftBraidEndDL:
type: GFX
offset: 0x28570
symbol: gTwinrovaLeftBraidEndDL
gTwinrovaLeftBraidEndLimb:
type: OOT:LIMB
offset: 0x30A90
symbol: gTwinrovaLeftBraidEndLimb
limb_type: Standard
gTwinrovaLeftBraidStartDL:
type: GFX
offset: 0x28668
symbol: gTwinrovaLeftBraidStartDL
gTwinrovaLeftBraidStartLimb:
type: OOT:LIMB
offset: 0x30A84
symbol: gTwinrovaLeftBraidStartLimb
limb_type: Standard
gTwinrovaLeftBreastDL:
type: GFX
offset: 0x28B78
symbol: gTwinrovaLeftBreastDL
gTwinrovaLeftBreastLimb:
type: OOT:LIMB
offset: 0x30A00
symbol: gTwinrovaLeftBreastLimb
limb_type: Standard
gTwinrovaLeftBroomDL:
type: GFX
offset: 0x2D5D8
symbol: gTwinrovaLeftBroomDL
gTwinrovaLeftBroomLimb:
type: OOT:LIMB
offset: 0x30AFC
symbol: gTwinrovaLeftBroomLimb
limb_type: Standard
gTwinrovaLeftFootDL:
type: GFX
offset: 0x29268
symbol: gTwinrovaLeftFootDL
gTwinrovaLeftFootLimb:
type: OOT:LIMB
offset: 0x309C4
symbol: gTwinrovaLeftFootLimb
limb_type: Standard
gTwinrovaLeftFootTex:
type: TEXTURE
offset: 0x166D0
symbol: gTwinrovaLeftFootTex
format: RGBA16
width: 4
height: 8
gTwinrovaLeftForearmDL:
type: GFX
offset: 0x28220
symbol: gTwinrovaLeftForearmDL
gTwinrovaLeftForearmLimb:
type: OOT:LIMB
offset: 0x30AB4
symbol: gTwinrovaLeftForearmLimb
limb_type: Standard
gTwinrovaLeftHairBunDL:
type: GFX
offset: 0x2D940
symbol: gTwinrovaLeftHairBunDL
gTwinrovaLeftHairBunLimb:
type: OOT:LIMB
offset: 0x30A48
symbol: gTwinrovaLeftHairBunLimb
limb_type: Standard
gTwinrovaLeftHandDL:
type: GFX
offset: 0x2D320
symbol: gTwinrovaLeftHandDL
gTwinrovaLeftHandLimb:
type: OOT:LIMB
offset: 0x30AF0
symbol: gTwinrovaLeftHandLimb
limb_type: Standard
gTwinrovaLeftPantLegTex:
type: TEXTURE
offset: 0x24B10
symbol: gTwinrovaLeftPantLegTex
format: RGBA16
width: 16
height: 16
gTwinrovaLeftShinDL:
type: GFX
offset: 0x293E0
symbol: gTwinrovaLeftShinDL
gTwinrovaLeftShinLimb:
type: OOT:LIMB
offset: 0x309B8
symbol: gTwinrovaLeftShinLimb
limb_type: Standard
gTwinrovaLeftShoulderDL:
type: GFX
offset: 0x28468
symbol: gTwinrovaLeftShoulderDL
gTwinrovaLeftShoulderLimb:
type: OOT:LIMB
offset: 0x30A9C
symbol: gTwinrovaLeftShoulderLimb
limb_type: Standard
gTwinrovaLeftSleeveEndDL:
type: GFX
offset: 0x27FE8
symbol: gTwinrovaLeftSleeveEndDL
gTwinrovaLeftSleeveEndLimb:
type: OOT:LIMB
offset: 0x30ACC
symbol: gTwinrovaLeftSleeveEndLimb
limb_type: Standard
gTwinrovaLeftSleeveStartDL:
type: GFX
offset: 0x28100
symbol: gTwinrovaLeftSleeveStartDL
gTwinrovaLeftSleeveStartLimb:
type: OOT:LIMB
offset: 0x30AC0
symbol: gTwinrovaLeftSleeveStartLimb
limb_type: Standard
gTwinrovaLeftThighDL:
type: GFX
offset: 0x29530
symbol: gTwinrovaLeftThighDL
gTwinrovaLeftThighLimb:
type: OOT:LIMB
offset: 0x309AC
symbol: gTwinrovaLeftThighLimb
limb_type: Standard
gTwinrovaLeftUpperArmDL:
type: GFX
offset: 0x28370
symbol: gTwinrovaLeftUpperArmDL
gTwinrovaLeftUpperArmLimb:
type: OOT:LIMB
offset: 0x30AA8
symbol: gTwinrovaLeftUpperArmLimb
limb_type: Standard
gTwinrovaLightCircleDL:
type: GFX
offset: 0x1F390
symbol: gTwinrovaLightCircleDL
gTwinrovaLightPillarAndHaloTex:
type: TEXTURE
offset: 0x1ECF0
symbol: gTwinrovaLightPillarAndHaloTex
format: I4
width: 16
height: 16
gTwinrovaLightPillarDL:
type: GFX
offset: 0x1EEB0
symbol: gTwinrovaLightPillarDL
gTwinrovaLightRaysDL:
type: GFX
offset: 0x1F238
symbol: gTwinrovaLightRaysDL
gTwinrovaMagicParticleMaterialDL:
type: GFX
offset: 0x1A528
symbol: gTwinrovaMagicParticleMaterialDL
gTwinrovaMagicParticleModelDL:
type: GFX
offset: 0x1A5A8
symbol: gTwinrovaMagicParticleModelDL
gTwinrovaMagicParticleTex:
type: TEXTURE
offset: 0x1A5C0
symbol: gTwinrovaMagicParticleTex
format: I8
width: 16
height: 16
gTwinrovaMirrorShieldFireChargeCenterDL:
type: GFX
offset: 0x1E020
symbol: gTwinrovaMirrorShieldFireChargeCenterDL
gTwinrovaMirrorShieldFireChargeSidesDL:
type: GFX
offset: 0x1E0E0
symbol: gTwinrovaMirrorShieldFireChargeSidesDL
gTwinrovaMirrorShieldIceChargeCenterDL:
type: GFX
offset: 0x1E2C0
symbol: gTwinrovaMirrorShieldIceChargeCenterDL
gTwinrovaMirrorShieldIceChargeSidesDL:
type: GFX
offset: 0x1E3A0
symbol: gTwinrovaMirrorShieldIceChargeSidesDL
gTwinrovaNoseTex:
type: TEXTURE
offset: 0x2ADB0
symbol: gTwinrovaNoseTex
format: I8
width: 8
height: 8
gTwinrovaPelvisDL:
type: GFX
offset: 0x29B10
symbol: gTwinrovaPelvisDL
gTwinrovaPelvisLimb:
type: OOT:LIMB
offset: 0x30970
symbol: gTwinrovaPelvisLimb
limb_type: Standard
gTwinrovaRightBraidEndDL:
type: GFX
offset: 0x28778
symbol: gTwinrovaRightBraidEndDL
gTwinrovaRightBraidEndLimb:
type: OOT:LIMB
offset: 0x30A78
symbol: gTwinrovaRightBraidEndLimb
limb_type: Standard
gTwinrovaRightBraidStartDL:
type: GFX
offset: 0x28870
symbol: gTwinrovaRightBraidStartDL
gTwinrovaRightBraidStartLimb:
type: OOT:LIMB
offset: 0x30A6C
symbol: gTwinrovaRightBraidStartLimb
limb_type: Standard
gTwinrovaRightBreastDL:
type: GFX
offset: 0x28980
symbol: gTwinrovaRightBreastDL
gTwinrovaRightBreastLimb:
type: OOT:LIMB
offset: 0x30A0C
symbol: gTwinrovaRightBreastLimb
limb_type: Standard
gTwinrovaRightBroomDL:
type: GFX
offset: 0x2D4A0
symbol: gTwinrovaRightBroomDL
gTwinrovaRightBroomLimb:
type: OOT:LIMB
offset: 0x30B44
symbol: gTwinrovaRightBroomLimb
limb_type: Standard
gTwinrovaRightFootDL:
type: GFX
offset: 0x27720
symbol: gTwinrovaRightFootDL
gTwinrovaRightFootLimb:
type: OOT:LIMB
offset: 0x309E8
symbol: gTwinrovaRightFootLimb
limb_type: Standard
gTwinrovaRightFootTex:
type: TEXTURE
offset: 0x18B20
symbol: gTwinrovaRightFootTex
format: RGBA16
width: 4
height: 8
gTwinrovaRightForearmDL:
type: GFX
offset: 0x27C98
symbol: gTwinrovaRightForearmDL
gTwinrovaRightForearmLimb:
type: OOT:LIMB
offset: 0x30B20
symbol: gTwinrovaRightForearmLimb
limb_type: Standard
gTwinrovaRightHairBunDL:
type: GFX
offset: 0x2D890
symbol: gTwinrovaRightHairBunDL
gTwinrovaRightHairBunLimb:
type: OOT:LIMB
offset: 0x30A54
symbol: gTwinrovaRightHairBunLimb
limb_type: Standard
gTwinrovaRightHandDL:
type: GFX
offset: 0x2D710
symbol: gTwinrovaRightHandDL
gTwinrovaRightHandLimb:
type: OOT:LIMB
offset: 0x30B68
symbol: gTwinrovaRightHandLimb
limb_type: Standard
gTwinrovaRightPantLegTex:
type: TEXTURE
offset: 0x24910
symbol: gTwinrovaRightPantLegTex
format: RGBA16
width: 16
height: 16
gTwinrovaRightShinDL:
type: GFX
offset: 0x27820
symbol: gTwinrovaRightShinDL
gTwinrovaRightShinLimb:
type: OOT:LIMB
offset: 0x309DC
symbol: gTwinrovaRightShinLimb
limb_type: Standard
gTwinrovaRightShoulderDL:
type: GFX
offset: 0x27EE0
symbol: gTwinrovaRightShoulderDL
gTwinrovaRightShoulderLimb:
type: OOT:LIMB
offset: 0x30B08
symbol: gTwinrovaRightShoulderLimb
limb_type: Standard
gTwinrovaRightSleeveEndDL:
type: GFX
offset: 0x27A60
symbol: gTwinrovaRightSleeveEndDL
gTwinrovaRightSleeveEndLimb:
type: OOT:LIMB
offset: 0x30B38
symbol: gTwinrovaRightSleeveEndLimb
limb_type: Standard
gTwinrovaRightSleeveStartDL:
type: GFX
offset: 0x27B78
symbol: gTwinrovaRightSleeveStartDL
gTwinrovaRightSleeveStartLimb:
type: OOT:LIMB
offset: 0x30B2C
symbol: gTwinrovaRightSleeveStartLimb
limb_type: Standard
gTwinrovaRightThighDL:
type: GFX
offset: 0x27970
symbol: gTwinrovaRightThighDL
gTwinrovaRightThighLimb:
type: OOT:LIMB
offset: 0x309D0
symbol: gTwinrovaRightThighLimb
limb_type: Standard
gTwinrovaRightUpperArmDL:
type: GFX
offset: 0x27DE8
symbol: gTwinrovaRightUpperArmDL
gTwinrovaRightUpperArmLimb:
type: OOT:LIMB
offset: 0x30B14
symbol: gTwinrovaRightUpperArmLimb
limb_type: Standard
gTwinrovaRobePatternTex:
type: TEXTURE
offset: 0xA038
symbol: gTwinrovaRobePatternTex
format: RGBA16
width: 16
height: 16
gTwinrovaRobeTrimTex:
type: TEXTURE
offset: 0xA238
symbol: gTwinrovaRobeTrimTex
format: RGBA16
width: 16
height: 16
gTwinrovaSash1DL:
type: GFX
offset: 0x299F8
symbol: gTwinrovaSash1DL
gTwinrovaSash1Limb:
type: OOT:LIMB
offset: 0x3097C
symbol: gTwinrovaSash1Limb
limb_type: Standard
gTwinrovaSash2DL:
type: GFX
offset: 0x29900
symbol: gTwinrovaSash2DL
gTwinrovaSash2Limb:
type: OOT:LIMB
offset: 0x30988
symbol: gTwinrovaSash2Limb
limb_type: Standard
gTwinrovaSash3DL:
type: GFX
offset: 0x29738
symbol: gTwinrovaSash3DL
gTwinrovaSash3Limb:
type: OOT:LIMB
offset: 0x30994
symbol: gTwinrovaSash3Limb
limb_type: Standard
gTwinrovaSash4DL:
type: GFX
offset: 0x29620
symbol: gTwinrovaSash4DL
gTwinrovaSash4Limb:
type: OOT:LIMB
offset: 0x309A0
symbol: gTwinrovaSash4Limb
limb_type: Standard
gTwinrovaShieldAbsorbAndReflectEffectDL:
type: GFX
offset: 0x1E9F0
symbol: gTwinrovaShieldAbsorbAndReflectEffectDL
gTwinrovaSkel:
type: OOT:SKELETON
offset: 0x30C20
symbol: gTwinrovaSkel
limb_type: Standard
skel_type: Flex
gTwinrovaSkinAndBangleTex:
type: TEXTURE
offset: 0x244D0
symbol: gTwinrovaSkinAndBangleTex
format: RGBA16
width: 4
height: 8
gTwinrovaSmileTex:
type: TEXTURE
offset: 0x2AE30
symbol: gTwinrovaSmileTex
format: CI8
width: 16
height: 16
tlut: 0x29e50
gTwinrovaSpawnPortalShadowDL:
type: GFX
offset: 0x1EC68
symbol: gTwinrovaSpawnPortalShadowDL
gTwinrovaStunEndAnim:
type: OOT:ANIMATION
offset: 0x34588
symbol: gTwinrovaStunEndAnim
gTwinrovaStunLoopAnim:
type: OOT:ANIMATION
offset: 0x33C30
symbol: gTwinrovaStunLoopAnim
gTwinrovaStunStartAnim:
type: OOT:ANIMATION
offset: 0x32FB4
symbol: gTwinrovaStunStartAnim
gTwinrovaTPoseAnim:
type: OOT:ANIMATION
offset: 0x244B4
symbol: gTwinrovaTPoseAnim
gTwinrovaTitleCardTex:
type: TEXTURE
offset: 0x2E170
symbol: gTwinrovaTitleCardTex
format: IA8
width: 128
height: 80
gTwinrovaTorsoDL:
type: GFX
offset: 0x28D70
symbol: gTwinrovaTorsoDL
gTwinrovaTorsoLimb:
type: OOT:LIMB
offset: 0x309F4
symbol: gTwinrovaTorsoLimb
limb_type: Standard
gTwinrovaUnusedBoulderDL:
type: GFX
offset: 0x39280
symbol: gTwinrovaUnusedBoulderDL
gTwinrovaUnusedBoulderTex:
type: TEXTURE
offset: 0x393B0
symbol: gTwinrovaUnusedBoulderTex
format: RGBA16
width: 32
height: 32
gTwinrovaUnusedIceSteamCloudDL:
type: GFX
offset: 0x1A8A0
symbol: gTwinrovaUnusedIceSteamCloudDL
gTwinrovaWindUpAnim:
type: OOT:ANIMATION
offset: 0x35BBC
symbol: gTwinrovaWindUpAnim
gTwinrovaKotakeSkelLimbs:
type: BLOB
offset: 0x7078
symbol: gTwinrovaKotakeSkelLimbs
size: 0
object_twVtx_00CCB8:
type: OOT:ARRAY
offset: 0x00CCB8
symbol: object_twVtx_00CCB8
count: 157
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00D688:
type: OOT:ARRAY
offset: 0x00D688
symbol: object_twVtx_00D688
count: 157
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E058:
type: OOT:ARRAY
offset: 0x00E058
symbol: object_twVtx_00E058
count: 42
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E2F8:
type: OOT:ARRAY
offset: 0x00E2F8
symbol: object_twVtx_00E2F8
count: 42
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E598:
type: OOT:ARRAY
offset: 0x00E598
symbol: object_twVtx_00E598
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E628:
type: OOT:ARRAY
offset: 0x00E628
symbol: object_twVtx_00E628
count: 7
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E698:
type: OOT:ARRAY
offset: 0x00E698
symbol: object_twVtx_00E698
count: 7
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E708:
type: OOT:ARRAY
offset: 0x00E708
symbol: object_twVtx_00E708
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E748:
type: OOT:ARRAY
offset: 0x00E748
symbol: object_twVtx_00E748
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E788:
type: OOT:ARRAY
offset: 0x00E788
symbol: object_twVtx_00E788
count: 28
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00E948:
type: OOT:ARRAY
offset: 0x00E948
symbol: object_twVtx_00E948
count: 28
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00EB08:
type: OOT:ARRAY
offset: 0x00EB08
symbol: object_twVtx_00EB08
count: 28
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00ECC8:
type: OOT:ARRAY
offset: 0x00ECC8
symbol: object_twVtx_00ECC8
count: 28
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00EE88:
type: OOT:ARRAY
offset: 0x00EE88
symbol: object_twVtx_00EE88
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00EEC8:
type: OOT:ARRAY
offset: 0x00EEC8
symbol: object_twVtx_00EEC8
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00EF08:
type: OOT:ARRAY
offset: 0x00EF08
symbol: object_twVtx_00EF08
count: 7
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00EF78:
type: OOT:ARRAY
offset: 0x00EF78
symbol: object_twVtx_00EF78
count: 7
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00EFE8:
type: OOT:ARRAY
offset: 0x00EFE8
symbol: object_twVtx_00EFE8
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00F078:
type: OOT:ARRAY
offset: 0x00F078
symbol: object_twVtx_00F078
count: 48
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00F378:
type: OOT:ARRAY
offset: 0x00F378
symbol: object_twVtx_00F378
count: 159
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_00FD68:
type: OOT:ARRAY
offset: 0x00FD68
symbol: object_twVtx_00FD68
count: 48
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_010068:
type: OOT:ARRAY
offset: 0x010068
symbol: object_twVtx_010068
count: 159
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_010A58:
type: OOT:ARRAY
offset: 0x010A58
symbol: object_twVtx_010A58
count: 36
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_010C98:
type: OOT:ARRAY
offset: 0x010C98
symbol: object_twVtx_010C98
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_010DC8:
type: OOT:ARRAY
offset: 0x010DC8
symbol: object_twVtx_010DC8
count: 7
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_010E38:
type: OOT:ARRAY
offset: 0x010E38
symbol: object_twVtx_010E38
count: 17
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_010F48:
type: OOT:ARRAY
offset: 0x010F48
symbol: object_twVtx_010F48
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_010FE8:
type: OOT:ARRAY
offset: 0x010FE8
symbol: object_twVtx_010FE8
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014240:
type: OOT:ARRAY
offset: 0x014240
symbol: object_twVtx_014240
count: 21
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014390:
type: OOT:ARRAY
offset: 0x014390
symbol: object_twVtx_014390
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014430:
type: OOT:ARRAY
offset: 0x014430
symbol: object_twVtx_014430
count: 21
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014580:
type: OOT:ARRAY
offset: 0x014580
symbol: object_twVtx_014580
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014620:
type: OOT:ARRAY
offset: 0x014620
symbol: object_twVtx_014620
count: 24
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0147A0:
type: OOT:ARRAY
offset: 0x0147A0
symbol: object_twVtx_0147A0
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0148D0:
type: OOT:ARRAY
offset: 0x0148D0
symbol: object_twVtx_0148D0
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014990:
type: OOT:ARRAY
offset: 0x014990
symbol: object_twVtx_014990
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014AB0:
type: OOT:ARRAY
offset: 0x014AB0
symbol: object_twVtx_014AB0
count: 15
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014BA0:
type: OOT:ARRAY
offset: 0x014BA0
symbol: object_twVtx_014BA0
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014CD0:
type: OOT:ARRAY
offset: 0x014CD0
symbol: object_twVtx_014CD0
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014D90:
type: OOT:ARRAY
offset: 0x014D90
symbol: object_twVtx_014D90
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014EB0:
type: OOT:ARRAY
offset: 0x014EB0
symbol: object_twVtx_014EB0
count: 15
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_014FA0:
type: OOT:ARRAY
offset: 0x014FA0
symbol: object_twVtx_014FA0
count: 38
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_015260:
type: OOT:ARRAY
offset: 0x015260
symbol: object_twVtx_015260
count: 30
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016710:
type: OOT:ARRAY
offset: 0x016710
symbol: object_twVtx_016710
count: 21
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016860:
type: OOT:ARRAY
offset: 0x016860
symbol: object_twVtx_016860
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016900:
type: OOT:ARRAY
offset: 0x016900
symbol: object_twVtx_016900
count: 21
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016A50:
type: OOT:ARRAY
offset: 0x016A50
symbol: object_twVtx_016A50
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016AF0:
type: OOT:ARRAY
offset: 0x016AF0
symbol: object_twVtx_016AF0
count: 24
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016C70:
type: OOT:ARRAY
offset: 0x016C70
symbol: object_twVtx_016C70
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016DA0:
type: OOT:ARRAY
offset: 0x016DA0
symbol: object_twVtx_016DA0
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016E60:
type: OOT:ARRAY
offset: 0x016E60
symbol: object_twVtx_016E60
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_016F80:
type: OOT:ARRAY
offset: 0x016F80
symbol: object_twVtx_016F80
count: 15
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_017070:
type: OOT:ARRAY
offset: 0x017070
symbol: object_twVtx_017070
count: 19
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0171A0:
type: OOT:ARRAY
offset: 0x0171A0
symbol: object_twVtx_0171A0
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_017260:
type: OOT:ARRAY
offset: 0x017260
symbol: object_twVtx_017260
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_017380:
type: OOT:ARRAY
offset: 0x017380
symbol: object_twVtx_017380
count: 15
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_017470:
type: OOT:ARRAY
offset: 0x017470
symbol: object_twVtx_017470
count: 38
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_017730:
type: OOT:ARRAY
offset: 0x017730
symbol: object_twVtx_017730
count: 30
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_018F60:
type: OOT:ARRAY
offset: 0x018F60
symbol: object_twVtx_018F60
count: 6
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_019878:
type: OOT:ARRAY
offset: 0x019878
symbol: object_twVtx_019878
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_019C20:
type: OOT:ARRAY
offset: 0x019C20
symbol: object_twVtx_019C20
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01A400:
type: OOT:ARRAY
offset: 0x01A400
symbol: object_twVtx_01A400
count: 3
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01A4F8:
type: OOT:ARRAY
offset: 0x01A4F8
symbol: object_twVtx_01A4F8
count: 3
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01A6C0:
type: OOT:ARRAY
offset: 0x01A6C0
symbol: object_twVtx_01A6C0
count: 13
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01A860:
type: OOT:ARRAY
offset: 0x01A860
symbol: object_twVtx_01A860
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01A968:
type: OOT:ARRAY
offset: 0x01A968
symbol: object_twVtx_01A968
count: 3
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01BB60:
type: OOT:ARRAY
offset: 0x01BB60
symbol: object_twVtx_01BB60
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01C120:
type: OOT:ARRAY
offset: 0x01C120
symbol: object_twVtx_01C120
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01CEA0:
type: OOT:ARRAY
offset: 0x01CEA0
symbol: object_twVtx_01CEA0
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01DBA8:
type: OOT:ARRAY
offset: 0x01DBA8
symbol: object_twVtx_01DBA8
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01DCB0:
type: OOT:ARRAY
offset: 0x01DCB0
symbol: object_twVtx_01DCB0
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01DED0:
type: OOT:ARRAY
offset: 0x01DED0
symbol: object_twVtx_01DED0
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01DF60:
type: OOT:ARRAY
offset: 0x01DF60
symbol: object_twVtx_01DF60
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01E170:
type: OOT:ARRAY
offset: 0x01E170
symbol: object_twVtx_01E170
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01E200:
type: OOT:ARRAY
offset: 0x01E200
symbol: object_twVtx_01E200
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01E630:
type: OOT:ARRAY
offset: 0x01E630
symbol: object_twVtx_01E630
count: 60
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01EC28:
type: OOT:ARRAY
offset: 0x01EC28
symbol: object_twVtx_01EC28
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01ED70:
type: OOT:ARRAY
offset: 0x01ED70
symbol: object_twVtx_01ED70
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01EFB8:
type: OOT:ARRAY
offset: 0x01EFB8
symbol: object_twVtx_01EFB8
count: 40
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01F350:
type: OOT:ARRAY
offset: 0x01F350
symbol: object_twVtx_01F350
count: 4
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_01F428:
type: OOT:ARRAY
offset: 0x01F428
symbol: object_twVtx_01F428
count: 30
array_type: VTX
zero_flag: true
null_cross_file: true
gTwinrovaKoumeSkelLimbs:
type: BLOB
offset: 0x1F820
symbol: gTwinrovaKoumeSkelLimbs
size: 0
object_twVtx_024D10:
type: OOT:ARRAY
offset: 0x024D10
symbol: object_twVtx_024D10
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_024D90:
type: OOT:ARRAY
offset: 0x024D90
symbol: object_twVtx_024D90
count: 14
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_024E70:
type: OOT:ARRAY
offset: 0x024E70
symbol: object_twVtx_024E70
count: 26
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025010:
type: OOT:ARRAY
offset: 0x025010
symbol: object_twVtx_025010
count: 23
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025180:
type: OOT:ARRAY
offset: 0x025180
symbol: object_twVtx_025180
count: 32
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025380:
type: OOT:ARRAY
offset: 0x025380
symbol: object_twVtx_025380
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025400:
type: OOT:ARRAY
offset: 0x025400
symbol: object_twVtx_025400
count: 14
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0254E0:
type: OOT:ARRAY
offset: 0x0254E0
symbol: object_twVtx_0254E0
count: 26
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025680:
type: OOT:ARRAY
offset: 0x025680
symbol: object_twVtx_025680
count: 23
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0257F0:
type: OOT:ARRAY
offset: 0x0257F0
symbol: object_twVtx_0257F0
count: 32
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0259F0:
type: OOT:ARRAY
offset: 0x0259F0
symbol: object_twVtx_0259F0
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025B30:
type: OOT:ARRAY
offset: 0x025B30
symbol: object_twVtx_025B30
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025BD0:
type: OOT:ARRAY
offset: 0x025BD0
symbol: object_twVtx_025BD0
count: 20
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025D10:
type: OOT:ARRAY
offset: 0x025D10
symbol: object_twVtx_025D10
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_025DB0:
type: OOT:ARRAY
offset: 0x025DB0
symbol: object_twVtx_025DB0
count: 38
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026010:
type: OOT:ARRAY
offset: 0x026010
symbol: object_twVtx_026010
count: 38
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026270:
type: OOT:ARRAY
offset: 0x026270
symbol: object_twVtx_026270
count: 103
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0268E0:
type: OOT:ARRAY
offset: 0x0268E0
symbol: object_twVtx_0268E0
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026980:
type: OOT:ARRAY
offset: 0x026980
symbol: object_twVtx_026980
count: 12
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026A40:
type: OOT:ARRAY
offset: 0x026A40
symbol: object_twVtx_026A40
count: 8
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026AC0:
type: OOT:ARRAY
offset: 0x026AC0
symbol: object_twVtx_026AC0
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026B60:
type: OOT:ARRAY
offset: 0x026B60
symbol: object_twVtx_026B60
count: 37
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026DB0:
type: OOT:ARRAY
offset: 0x026DB0
symbol: object_twVtx_026DB0
count: 26
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_026F50:
type: OOT:ARRAY
offset: 0x026F50
symbol: object_twVtx_026F50
count: 17
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_027060:
type: OOT:ARRAY
offset: 0x027060
symbol: object_twVtx_027060
count: 29
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_027230:
type: OOT:ARRAY
offset: 0x027230
symbol: object_twVtx_027230
count: 26
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0273D0:
type: OOT:ARRAY
offset: 0x0273D0
symbol: object_twVtx_0273D0
count: 17
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_0274E0:
type: OOT:ARRAY
offset: 0x0274E0
symbol: object_twVtx_0274E0
count: 36
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02AFB0:
type: OOT:ARRAY
offset: 0x02AFB0
symbol: object_twVtx_02AFB0
count: 5
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02B000:
type: OOT:ARRAY
offset: 0x02B000
symbol: object_twVtx_02B000
count: 5
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02B050:
type: OOT:ARRAY
offset: 0x02B050
symbol: object_twVtx_02B050
count: 196
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02BC90:
type: OOT:ARRAY
offset: 0x02BC90
symbol: object_twVtx_02BC90
count: 32
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02BE90:
type: OOT:ARRAY
offset: 0x02BE90
symbol: object_twVtx_02BE90
count: 22
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02BFF0:
type: OOT:ARRAY
offset: 0x02BFF0
symbol: object_twVtx_02BFF0
count: 22
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C150:
type: OOT:ARRAY
offset: 0x02C150
symbol: object_twVtx_02C150
count: 32
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C350:
type: OOT:ARRAY
offset: 0x02C350
symbol: object_twVtx_02C350
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C3E0:
type: OOT:ARRAY
offset: 0x02C3E0
symbol: object_twVtx_02C3E0
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C470:
type: OOT:ARRAY
offset: 0x02C470
symbol: object_twVtx_02C470
count: 14
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C550:
type: OOT:ARRAY
offset: 0x02C550
symbol: object_twVtx_02C550
count: 15
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C640:
type: OOT:ARRAY
offset: 0x02C640
symbol: object_twVtx_02C640
count: 14
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C720:
type: OOT:ARRAY
offset: 0x02C720
symbol: object_twVtx_02C720
count: 18
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C840:
type: OOT:ARRAY
offset: 0x02C840
symbol: object_twVtx_02C840
count: 7
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C8B0:
type: OOT:ARRAY
offset: 0x02C8B0
symbol: object_twVtx_02C8B0
count: 17
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02C9C0:
type: OOT:ARRAY
offset: 0x02C9C0
symbol: object_twVtx_02C9C0
count: 10
array_type: VTX
zero_flag: true
null_cross_file: true
object_twVtx_02CA60:
type: OOT:ARRAY
offset: 0x02CA60
symbol: object_twVtx_02CA60
count: 9
array_type: VTX
zero_flag: true
null_cross_file: true
gTwinrovaSkelLimbs:
type: BLOB
offset: 0x30B74
symbol: gTwinrovaSkelLimbs
size: 0
object_twVtx_038EE0:
type: OOT:ARRAY
offset: 0x038EE0
symbol: object_twVtx_038EE0
count: 58
array_type: VTX
zero_flag: true
null_cross_file: true