mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-18 06:36:11 -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
12 lines
325 B
C#
12 lines
325 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NHSE.Core
|
|
{
|
|
public abstract class BatchMutator<T> where T : class
|
|
{
|
|
protected const string CONST_RAND = "$rand";
|
|
|
|
public abstract ModifyResult Modify(T item, IEnumerable<StringInstruction> filters, IEnumerable<StringInstruction> modifications);
|
|
}
|
|
}
|