A collection of tools for modding Breath of the Wild
Project description
botw_tools
A set of CLI tools for Breath of the Wild modding
yaz0
: De/compress a file with Yaz-0aamp
: Convert between AAMP and YMLbyml
: Convert between BYML and YMLsarc
: Manipulate SARC archivesactorinfo
: Manipulate ActorInfo file
All commands can read from stdin and write to stdout, either automatically or by explicitly using the pipe (-
) character instead of file path.
To see how to use these commands, please refer either to command --help
(ex. aamp --help
) or the examples below.
Examples:
AAMP:
# View a AAMP file
aamp DgnObj_EntranceElevatorSP.bphysics
# Save as YML
aamp DgnObj_EntranceElevatorSP.bphysics \!! # Saves as 'DgnObj_EntranceElevatorSP.physics.yml'
# or
aamp DgnObj_EntranceElevatorSP.bphysics test.yml
Yaz0 and BYML:
# View a BYML file
# First variant
yaz0 ActorInfo.product.sbyml | byml
# Second variant
yaz0 ActorInfo.product.sbyml ActorInfo.product.byml
byml ActorInfo.product.byml
# Save as YML
# First variant
yaz0 ActorInfo.product.sbyml | byml - ActorInfo.product.yml
# Second variant
yaz0 ActorInfo.product.sbyml ActorInfo.product.byml
byml ActorInfo.product.byml \!! # Saves as 'ActorInfo.product.yml'
# or
byml ActorInfo.product.byml actorinfo.yml
Yaz0 and SARC:
Decompress and extract a SARC archive DgnObj_EntranceElevatorSP.sbactorpack
to elevator
folder:
# First variant
yaz0 DgnObj_EntranceElevatorSP.sbactorpack | sarc e(x)tract - elevator
# Second variant
yaz0 DgnObj_EntranceElevatorSP.sbactorpack \!!
sarc x DgnObj_EntranceElevatorSP.bactorpack elevator
Remove all files inside SARC:
# First variant
yaz0 DgnObj_EntranceElevatorSP.sbactorpack | sarc (r)emove - \* | yaz0 - Empty.sbactorpack
# Second variant
yaz0 DgnObj_EntranceElevatorSP.sbactorpack DgnObj_EntranceElevatorSP.bactorpack
sarc r DgnObj_EntranceElevatorSP.bactorpack \*
yaz0 DgnObj_EntranceElevatorSP.bactorpack Empty.sbactorpack
ActorInfo:
# Get an entry
actorinfo ActorInfo.product.(s)byml (g)et DgnObj_EntranceElevatorSP
# Duplicate an entry
actorinfo ActorInfo.product.(s)byml (d)uplicate DgnObj_EntranceElevatorSP MyCustomEntranceElevator
# Change entry keys
actorinfo ActorInfo.product.(s)byml (e)dit MyCustomEntranceElevator bfres MyCustomEntranceElevatorBfres
# Get the new entry
actorinfo ActorInfo.product.(s)byml g MyCustomEntranceElevator
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
botw_tools-0.4.2.tar.gz
(113.7 kB
view hashes)
Built Distribution
Close
Hashes for botw_tools-0.4.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d376ae49c55ca04ecac8828dc731bf35c2992122498dc9cf22e1b30a393a8d4f |
|
MD5 | b9c8d453d4e0cb94ce4eeb8514742b07 |
|
BLAKE2b-256 | d05c6188e3232c8a123534d94529b534298baf0c155df784d9a3ee4c04189b28 |