blob: 9eac3a1996c907c244fda2af663bb95b83a0ae8b (
plain)
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
71
72
73
74
75
76
|
namespace DiscoBot.Commands
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DiscoBot.Auxiliary;
using DiscoBot.Characters;
using Discord.Commands;
public class List : ModuleBase
{
[Command("list"), Summary("gibt eine Auflistung aus")]
public async Task ListAsync([Summary("Aktion")] string prop)
{
var res = new List<string>();
switch (prop.ToLower())
{
case "chars":
case "Chars":
res.AddRange(Dsa.Chars.Select(x => x.Name));
break;
case "t":
case "ta":
case "talent":
case "zauber":
res.AddRange(
((Character)Dsa.Chars.Find(x => x.Name.Equals(Dsa.Relation[this.Context.User.Username])))
.Talente.Select(s => s.Name + "\t " + s.Value + "\t " + s.Probe));
break;
case "w":
case "waffe":
case "waffen":
res.AddRange(
((Character)Dsa.Chars.Find(x => x.Name.Equals(Dsa.Relation[this.Context.User.Username])))
.Kampftalente.Select(s => s.Name));
break;
case "fern":
res.AddRange(
((Character)Dsa.Chars.Find(x => x.Name.Equals(Dsa.Relation[this.Context.User.Username])))
.Talente.Select(s => s.Name));
break;
case "v":
case "vt":
case "vor":
case "vorteil":
res.AddRange(
((Character)Dsa.Chars.Find(x => x.Name.Equals(Dsa.Relation[this.Context.User.Username])))
.Vorteile
.Select(s => s.Name + "\t " + (s.Value == 0 ? string.Empty : s.Value.ToString())));
break;
default:
res.Add($"Kommando {prop} nicht gefunden");
break;
}
var sb = new StringBuilder();
foreach (string re in res)
{
if (sb.Length + re.Length > 1798)
{
await this.ReplyTimedAsync(sb.ToString(), TimeSpan.FromSeconds(90));
sb.Clear();
}
sb.AppendLine(re);
}
await this.ReplyTimedAsync(sb.ToString(), TimeSpan.FromSeconds(90));
}
}
}
|