bl4-ncs 0.7.4

NCS (Nexus Config Store) parser for Borderlands 4
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! UE data table extraction from gbx_ue_data_table NCS files
//!
//! Parses the structured data tables that contain game balance values,
//! enemy stats, anointment parameters, elemental damage scales, and more.

mod extract;
mod types;

pub use extract::{
    extract_data_tables, extract_data_tables_from_dir, parse_boss_replay_comment,
    parse_boss_replay_type, table_to_tsv, write_data_tables,
};
pub use types::{DataTable, DataTableManifest, DataTableRow};