-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
116 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using PKHeX.Core; | ||
|
||
internal static class RaidEmbedInfoHelpers | ||
{ | ||
public static string RaidEmbedTitle = string.Empty; | ||
public static Species RaidSpecies = Species.None; | ||
public static byte RaidSpeciesForm = 0; | ||
public static string RaidSpeciesGender = string.Empty; | ||
public static int RaidLevel; | ||
public static string RaidSpeciesIVs = string.Empty; | ||
public static string RaidSpeciesAbility = string.Empty; | ||
public static string RaidSpeciesNature = string.Empty; | ||
public static string RaidSpeciesTeraType = string.Empty; | ||
public static string Moves = string.Empty; | ||
public static string ExtraMoves = string.Empty; | ||
public static string ScaleText = string.Empty; | ||
public static string SpecialRewards = string.Empty; | ||
public static int ScaleNumber; | ||
} |
Oops, something went wrong.