-
Notifications
You must be signed in to change notification settings - Fork 1
/
warbandNumber.js
35 lines (30 loc) · 1.02 KB
/
warbandNumber.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
module.exports = (bandName) => {
switch(bandName){
case "steelhearts-champions" :
case "the-farstriders" :
case "stormsires-cursebreakers" :
case "ironsouls-condemners" :
case "rippas-snarlfangs":
case "the-wurmspat":
case "morgoks-krushas": return 3;
case "ironskulls-boyz" :
case "the-chosen-axes" :
case "magores-fiends" :
case "mollogs-mob" :
case "yltharis-guardians" :
case "lady-harrows-mournflight" : return 4;
case "garreks-reavers" :
case "spiteclaws-swarm" :
case "the-eyes-of-the-nine" :
case "thundriks-profiteers" :
case "skaeths-wild-hunt" :
case "hrothgorns-mantrappers" :
case "morgwaeths-blade-coven" : return 5;
case "godsworn-hunt" :
case "grashraks-despoilers" : return 6;
case "sepulchral-guard" :
case "thorns-of-the-briar-queen" :
case "the-grymwatch" : return 7;
case "zarbags-gitz" : return 9;
}
}