-
Notifications
You must be signed in to change notification settings - Fork 1
/
Legend.cs
39 lines (34 loc) · 1018 Bytes
/
Legend.cs
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
36
37
38
39
using System;
namespace ApexRandomBot
{
public class Legend : IGacha{
private readonly Random _rand;
private readonly string[] _legends = {
"バンガロール",
"レイス",
"ミラージュ",
"オクタン",
"レヴナント",
"ホライゾン",
"ジブラルタル",
"コースティック",
"ワットソン",
"ランパート",
"ライフライン",
"ローバ",
"ブラッドハウンド",
"パスファインダー",
"クリプト",
"ヒューズ",
"ヴァルキリー",
"シア",
"アッシュ",
"マッドマギー"
};
public Legend() => _rand = GatchaUtil.GenerateRandom();
public string Gacha(){
var index = _rand.Next(_legends.Length);
return _legends[index];
}
}
}