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