We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A dataset is needed that contains the base stats for each commander as well as basic information about their race, classes, and available skills.
Note: Here is a in-browser script to help generate a blank list.
var commanders; fetch("./Subsites/LOTR_RiseToWar/data/commanders.json") .then(r => r.json()) .then(d => { commanders = d; }); copy(commanders.map((c) => ` - [ ] ${c.name}\r\n\t - [ ] Stats\r\n\t - [ ] Skills\r\n\t - [ ] Flavor Text\r\n\t - [ ] Icon`).join('\r\n'));
The text was updated successfully, but these errors were encountered:
tbm0115
No branches or pull requests
A dataset is needed that contains the base stats for each commander as well as basic information about their race, classes, and available skills.
Note: Here is a in-browser script to help generate a blank list.
The text was updated successfully, but these errors were encountered: