diff --git a/src/NadekoBot/Resources/CommandStrings.Designer.cs b/src/NadekoBot/Resources/CommandStrings.Designer.cs index 5d6bdf64..168b5d14 100644 --- a/src/NadekoBot/Resources/CommandStrings.Designer.cs +++ b/src/NadekoBot/Resources/CommandStrings.Designer.cs @@ -491,6 +491,33 @@ namespace NadekoBot.Resources { } } + /// + /// Looks up a localized string similar to attack. + /// + public static string attack_cmd { + get { + return ResourceManager.GetString("attack_cmd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Attacks a target with the given move. Use `{0}movelist` to see a list of moves your type can use.. + /// + public static string attack_desc { + get { + return ResourceManager.GetString("attack_desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to `{0}attack "vine whip" @someguy`. + /// + public static string attack_usage { + get { + return ResourceManager.GetString("attack_usage", resourceCulture); + } + } + /// /// Looks up a localized string similar to autoassignrole aar. /// @@ -906,7 +933,7 @@ namespace NadekoBot.Resources { } /// - /// Looks up a localized string similar to Toggles automatic deletion of bye messages.. + /// Looks up a localized string similar to Sets the time it takes (in seconds) for bye messages to be auto-deleted. Set 0 to disable automatic deletion.. /// public static string byedel_desc { get { @@ -915,7 +942,7 @@ namespace NadekoBot.Resources { } /// - /// Looks up a localized string similar to `{0}byedel`. + /// Looks up a localized string similar to `{0}byedel 0` or `{0}byedel 30`. /// public static string byedel_usage { get { @@ -2688,7 +2715,7 @@ namespace NadekoBot.Resources { } /// - /// Looks up a localized string similar to Toggles automatic deletion of greet messages.. + /// Looks up a localized string similar to Sets the time it takes (in seconds) for greet messages to be auto-deleted. Set 0 to disable automatic deletion.. /// public static string greetdel_desc { get { @@ -2697,7 +2724,7 @@ namespace NadekoBot.Resources { } /// - /// Looks up a localized string similar to `{0}greetdel`. + /// Looks up a localized string similar to `{0}greetdel 0` or `{0}greetdel 30`. /// public static string greetdel_usage { get { @@ -2894,6 +2921,33 @@ namespace NadekoBot.Resources { } } + /// + /// Looks up a localized string similar to heal. + /// + public static string heal_cmd { + get { + return ResourceManager.GetString("heal_cmd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Heals someone. Revives those who fainted. Costs a NadekoFlower. + /// + public static string heal_desc { + get { + return ResourceManager.GetString("heal_desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to `{0}heal @someone`. + /// + public static string heal_usage { + get { + return ResourceManager.GetString("heal_usage", resourceCulture); + } + } + /// /// Looks up a localized string similar to hearthstone hs. /// @@ -4244,6 +4298,33 @@ namespace NadekoBot.Resources { } } + /// + /// Looks up a localized string similar to movelist ml. + /// + public static string movelist_cmd { + get { + return ResourceManager.GetString("movelist_cmd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Lists the moves you are able to use. + /// + public static string movelist_desc { + get { + return ResourceManager.GetString("movelist_desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to `{0}ml`. + /// + public static string movelist_usage { + get { + return ResourceManager.GetString("movelist_usage", resourceCulture); + } + } + /// /// Looks up a localized string similar to moveperm mp. /// @@ -6242,6 +6323,33 @@ namespace NadekoBot.Resources { } } + /// + /// Looks up a localized string similar to settype. + /// + public static string settype_cmd { + get { + return ResourceManager.GetString("settype_cmd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Set your poketype. Costs a NadekoFlower.. + /// + public static string settype_desc { + get { + return ResourceManager.GetString("settype_desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to `{0}settype fire`. + /// + public static string settype_usage { + get { + return ResourceManager.GetString("settype_usage", resourceCulture); + } + } + /// /// Looks up a localized string similar to shorten. /// @@ -6944,6 +7052,33 @@ namespace NadekoBot.Resources { } } + /// + /// Looks up a localized string similar to type. + /// + public static string type_cmd { + get { + return ResourceManager.GetString("type_cmd", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Get the poketype of the target.. + /// + public static string type_desc { + get { + return ResourceManager.GetString("type_desc", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to `{0}type @someone`. + /// + public static string type_usage { + get { + return ResourceManager.GetString("type_usage", resourceCulture); + } + } + /// /// Looks up a localized string similar to typeadd. /// diff --git a/src/NadekoBot/Resources/CommandStrings.resx b/src/NadekoBot/Resources/CommandStrings.resx index 76c0a001..2aa53d7c 100644 --- a/src/NadekoBot/Resources/CommandStrings.resx +++ b/src/NadekoBot/Resources/CommandStrings.resx @@ -2700,4 +2700,49 @@ `{0}yandere tag1+tag2` + + attack + + + Attacks a target with the given move. Use `{0}movelist` to see a list of moves your type can use. + + + `{0}attack "vine whip" @someguy` + + + heal + + + Heals someone. Revives those who fainted. Costs a NadekoFlower + + + `{0}heal @someone` + + + movelist ml + + + Lists the moves you are able to use + + + `{0}ml` + + + settype + + + Set your poketype. Costs a NadekoFlower. + + + `{0}settype fire` + + + type + + + Get the poketype of the target. + + + `{0}type @someone` + \ No newline at end of file