From f60249de3a19f7d1bec4d0f4aacfd4754e609b0a Mon Sep 17 00:00:00 2001 From: AntiqueR Date: Sat, 18 Dec 2021 16:39:10 +0900 Subject: [PATCH] yay season11 --- ApexVersion.cs | 11 +++++++++++ GachaModules.cs | 2 +- Legend.cs | 3 ++- Weapon.cs | 3 ++- 4 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 ApexVersion.cs diff --git a/ApexVersion.cs b/ApexVersion.cs new file mode 100644 index 0000000..16f932a --- /dev/null +++ b/ApexVersion.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace ApexRandomBot +{ + public class ApexVersion + { + public const string SupportedVersion = "11"; + } +} diff --git a/GachaModules.cs b/GachaModules.cs index 00eebd3..1192347 100644 --- a/GachaModules.cs +++ b/GachaModules.cs @@ -41,7 +41,7 @@ public async Task All() public async Task HelpAsync() { var footer = new EmbedFooterBuilder() - .WithText("シーズン10まで対応しています。"); + .WithText($"シーズン{ApexVersion.SupportedVersion}まで対応しています。"); var eb = new EmbedBuilder() { diff --git a/Legend.cs b/Legend.cs index 3500683..e55f56e 100644 --- a/Legend.cs +++ b/Legend.cs @@ -24,7 +24,8 @@ public class Legend : IGacha{ "クリプト", "ヒューズ", "ヴァルキリー", - "シア" + "シア", + "アッシュ" }; public Legend() => _rand = GatchaUtil.GenerateRandom(); diff --git a/Weapon.cs b/Weapon.cs index 4a60756..0ccd761 100644 --- a/Weapon.cs +++ b/Weapon.cs @@ -33,7 +33,8 @@ public class Weapon : IGacha{ "ウィングマン", "30-30 リピーター", "ボセックボウ", - "ランページLMG" + "ランページLMG", + "C.A.R. SMG" }; public Weapon() => _rand = GatchaUtil.GenerateRandom();