-
Notifications
You must be signed in to change notification settings - Fork 1
/
Weapon.cs
47 lines (42 loc) · 1.22 KB
/
Weapon.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
40
41
42
43
44
45
46
47
using System;
namespace ApexRandomBot
{
public class Weapon : IGacha{
private readonly Random _rand;
private readonly string[] _weapons = {
"フラットライン",
"G7スカウト",
"ヘムロック",
"R301 カービン",
"ハボック",
"オルタネーター",
"プラウラー",
"R-99",
"ボルト",
"デヴォーション",
"スピットファイア",
"Lスター",
"ロングボウ",
"クレーバー",
"トリプルテイク",
"チャージライフル",
"センチネル",
"EVA8",
"マスティフ",
"モザンビーク",
"ピースキーパー",
"RE-45",
"P2020",
"ウィングマン",
"30-30 リピーター",
"ボセックボウ",
"ランページLMG",
"C.A.R. SMG"
};
public Weapon() => _rand = GatchaUtil.GenerateRandom();
public string Gacha(){
var index = _rand.Next(_weapons.Length);
return _weapons[index];
}
}
}