RNA Crates.io Build Status Discord

RNA is a library for interpreting "Loot Table Script" designed by Minecraft Datapacks community.

Usage

```rust let ruby = rna::interpretfile("ruby.ult").unwrap(); let draconicore = rna::interpretfile("draconicore.ult").unwrap();

let mergedloot = rna::merge(&[ruby, draconicore]).unwrap(); ```

rust if rna::is_loot_table_script("path/to/loot_table/file.json.merge") { // Do something }