-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTypes.cs
70 lines (68 loc) · 2.04 KB
/
Types.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Decompiled with JetBrains decompiler
// Type: LcDevPack_TeamDamonA.Types
// Assembly: LcDevPack_TeamDamonA, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 6B9BC8BF-B510-4945-A515-04135CC0F4A4
// Assembly location: C:\Users\NTServer\Desktop\LcDevPack_TeamDamonA\LcDevPack_TeamDamonA\LcDevPack_TeamDamonA.exe
using System.Collections.Generic;
namespace LcDevPack_TeamDamonA
{
public class Types
{
public static string[] JobSubTypes(int Type)
{
List<string> stringList = new List<string>();
switch (Type)
{
case 0:
stringList.Add("0 - None");
stringList.Add("1 - Highlander");
stringList.Add("2 - Warmaster");
break;
case 1:
stringList.Add("0 - None");
stringList.Add("1 - Royal");
stringList.Add("2 - Templar");
break;
case 2:
stringList.Add("0 - None");
stringList.Add("1 - Archer");
stringList.Add("2 - Cleric");
break;
case 3:
stringList.Add("0 - None");
stringList.Add("1 - Wizard");
stringList.Add("2 - Witch");
break;
case 4:
stringList.Add("0 - None");
stringList.Add("1 - Assasin");
stringList.Add("2 - Ranger");
break;
case 5:
stringList.Add("0 - None");
stringList.Add("1 - Elementalist");
stringList.Add("2 - Specialist");
break;
case 6:
stringList.Add("0 - None");
stringList.Add("1 - NightShadow");
stringList.Add("2 - NightShadow2");
break;
case 7:
stringList.Add("0 - None");
stringList.Add("1 - Ex-Assasin");
stringList.Add("2 - Ex-Ranger");
break;
case 8:
stringList.Add("0 - None");
stringList.Add("1 - Ex-Wizard");
stringList.Add("2 - Ex-Witch");
break;
default:
stringList.Add("-1 - Unknown");
break;
}
return stringList.ToArray();
}
}
}