SkillAgentSearch skills...

Evfl

Library for parsing and writing Nintendo EventFlow files (flowcharts and timelines)

Install / Use

/learn @zeldamods/Evfl
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Library for parsing and writing Nintendo EventFlow binary files

evfl is able to parse and rewrite every single event flow found in Breath of the Wild, both flowcharts (bfevfl) and timelines (bfevtm).

Usage

import evfl

flow = evfl.EventFlow()
with open('Animal_Master.bfevfl', 'rb') as file:
    flow.read(file.read())

flowchart = flow.flowchart
# Real documentation is nonexistent at the moment. I'm sorry.

with open('Animal_Master_Modified.bfevfl', 'wb') as modified_file:
    flow.write(modified_file)

Tests

Unit and integration tests can be executed by running python3 -m unittest discover.

License

This software is licensed under the terms of the GNU General Public License, version 2 or later.

View on GitHub
GitHub Stars22
CategoryContent
Updated21d ago
Forks4

Languages

Python

Security Score

95/100

Audited on Mar 18, 2026

No findings