2021-02-27 04:12:09 +01:00
|
|
|
namespace Content.Shared.Actions
|
2020-12-13 14:28:20 -08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Every possible action. Corresponds to actionType in action prototypes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum ActionType : byte
|
|
|
|
|
{
|
|
|
|
|
Error,
|
2021-03-28 08:26:32 +02:00
|
|
|
HumanScream,
|
|
|
|
|
VoxScream,
|
2021-03-26 10:23:12 -05:00
|
|
|
CombatMode,
|
2021-01-09 20:31:34 +01:00
|
|
|
Disarm,
|
2021-02-26 04:31:06 +03:00
|
|
|
GhostBoo,
|
2020-12-13 14:28:20 -08:00
|
|
|
DebugInstant,
|
|
|
|
|
DebugToggle,
|
|
|
|
|
DebugTargetPoint,
|
|
|
|
|
DebugTargetPointRepeat,
|
|
|
|
|
DebugTargetEntity,
|
2021-07-01 14:26:44 +03:00
|
|
|
DebugTargetEntityRepeat,
|
2021-12-02 12:49:18 -06:00
|
|
|
SpellPie,
|
|
|
|
|
PAIMidi
|
2020-12-13 14:28:20 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Every possible item action. Corresponds to actionType in itemAction prototypes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum ItemActionType : byte
|
|
|
|
|
{
|
|
|
|
|
Error,
|
|
|
|
|
ToggleInternals,
|
|
|
|
|
ToggleLight,
|
2021-01-11 19:24:09 +01:00
|
|
|
ToggleMagboots,
|
2020-12-13 14:28:20 -08:00
|
|
|
DebugInstant,
|
|
|
|
|
DebugToggle,
|
|
|
|
|
DebugTargetPoint,
|
|
|
|
|
DebugTargetPointRepeat,
|
|
|
|
|
DebugTargetEntity,
|
|
|
|
|
DebugTargetEntityRepeat
|
|
|
|
|
}
|
|
|
|
|
}
|