Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jam1garner/randl

A randomization framework for Smash Ultimate
https://github.com/jam1garner/randl

Last synced: 4 days ago
JSON representation

A randomization framework for Smash Ultimate

Awesome Lists containing this project

README

        

# randl
A param randomization framework for Smash Ultimate

## Usage

anyways, the configs go in

```
sd:/atmosphere/contents/01006A800016E000/romfs/randl
```

it loads ever .kdl file in that folder
currently only 2 types of prc paths are supported:

1. absolute paths (example: fighter/captain/param/vl.prc)
2. absolute templated paths (example: fighter/{fighter_names}/param/vl.prc)

the way the templating works:

```
set "fighter_names" {
value "captain"
value "bayonetta"
}

file "fighter/{fighter_names}/param/vl.prc" {
// ...
}
```

where `{fighter_names}` gets replaced by every value in the set fighter_names. meaning the above is the same as:

```
file "fighter/bayonetta/param/vl.prc" {
// ...
}

file "fighter/captain/param/vl.prc" {
// ...
}
```