mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-16 13:45:54 -05:00
Similar to PKHeX's batch editor, probably with some stubbed functionality. Example to change Oak Trees to apple trees: =ItemId=60000 .ItemId=60001 ; =ExtensionItemId=60000 .ExtensionItemId=60001 Example to unbury all items: =IsBuried=True .IsBuried=False .IsDropped=True
29 lines
682 B
C#
29 lines
682 B
C#
namespace NHSE.Core
|
|
{
|
|
/// <summary>
|
|
/// Batch Editor Modification result for an individual item.
|
|
/// </summary>
|
|
public enum ModifyResult
|
|
{
|
|
/// <summary>
|
|
/// The data has invalid data and is not a suitable candidate for modification.
|
|
/// </summary>
|
|
Invalid,
|
|
|
|
/// <summary>
|
|
/// An error was occurred while iterating modifications for this data.
|
|
/// </summary>
|
|
Error,
|
|
|
|
/// <summary>
|
|
/// The data was skipped due to a matching Filter.
|
|
/// </summary>
|
|
Filtered,
|
|
|
|
/// <summary>
|
|
/// The data was modified.
|
|
/// </summary>
|
|
Modified,
|
|
}
|
|
}
|