2024-05-29 19:22:58 +00:00
|
|
|
|
using System.Text.Json.Serialization;
|
2024-08-02 16:30:21 +00:00
|
|
|
|
using Questionable.Model.Questing.Converter;
|
2024-05-27 19:54:34 +00:00
|
|
|
|
|
2024-08-02 16:30:21 +00:00
|
|
|
|
namespace Questionable.Model.Questing;
|
2024-05-29 19:22:58 +00:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(EnemySpawnTypeConverter))]
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public enum EEnemySpawnType
|
2024-05-27 19:54:34 +00:00
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
AfterInteraction,
|
2024-05-30 21:38:50 +00:00
|
|
|
|
AfterItemUse,
|
2024-09-01 12:21:26 +00:00
|
|
|
|
AfterAction,
|
2024-09-23 14:25:23 +00:00
|
|
|
|
AfterEmote,
|
2024-05-27 19:54:34 +00:00
|
|
|
|
AutoOnEnterArea,
|
2024-05-31 23:49:11 +00:00
|
|
|
|
OverworldEnemies,
|
2024-09-11 21:17:39 +00:00
|
|
|
|
FateEnemies,
|
2024-09-17 17:37:28 +00:00
|
|
|
|
QuestInterruption,
|
2024-05-27 19:54:34 +00:00
|
|
|
|
}
|