NHSE/NHSE.Core/Editing/Batch/ModifyResult.cs
Kurt 0798aa5a97 Add batch editor
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
2021-03-21 11:51:57 -07:00

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,
}
}