diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-08 17:51:21 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-04-08 17:51:21 +0200 |
| commit | 0a7dc1e9597396edc5a099240bf8aef024946219 (patch) | |
| tree | b31f98aa4b380f6b724f35a85c3b8eedf066b8e9 /heroes.js | |
| parent | e6f3d77115cc9eb8f7c467b6f3e3712d2d859afc (diff) | |
| download | orm-0a7dc1e9597396edc5a099240bf8aef024946219.tar.gz orm-0a7dc1e9597396edc5a099240bf8aef024946219.zip | |
add hero mappings
Diffstat (limited to 'heroes.js')
| -rw-r--r-- | heroes.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/heroes.js b/heroes.js new file mode 100644 index 0000000..70bfff3 --- /dev/null +++ b/heroes.js @@ -0,0 +1,13 @@ +#!/usr/bin/node + +"use strict"; + +var heroes_source = require("./heroes_source.js"); +var heroes = {} + +heroes_source.map((entry) => { + heroes[entry.serverName] = entry.name; + heroes[entry.name] = entry.name; +}); + +module.exports = heroes; |
