* Cherry-picked summonspell * Renamed the script for clarity * Fixed Spell type error in yaml * Fixed Sound issues and increased the cooldown * Newline * Major script change * Fixed Namespace * Validation fixed, TryGet replaced * Typo again * Allowed for proper localisation * Typo fixed Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> * Adressed changes * Review cleanup Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
41 lines
924 B
C#
41 lines
924 B
C#
#nullable enable
|
|
namespace Content.Shared.Actions
|
|
{
|
|
/// <summary>
|
|
/// Every possible action. Corresponds to actionType in action prototypes.
|
|
/// </summary>
|
|
public enum ActionType : byte
|
|
{
|
|
Error,
|
|
HumanScream,
|
|
VoxScream,
|
|
CombatMode,
|
|
Disarm,
|
|
GhostBoo,
|
|
DebugInstant,
|
|
DebugToggle,
|
|
DebugTargetPoint,
|
|
DebugTargetPointRepeat,
|
|
DebugTargetEntity,
|
|
DebugTargetEntityRepeat,
|
|
SpellPie
|
|
}
|
|
|
|
/// <summary>
|
|
/// Every possible item action. Corresponds to actionType in itemAction prototypes.
|
|
/// </summary>
|
|
public enum ItemActionType : byte
|
|
{
|
|
Error,
|
|
ToggleInternals,
|
|
ToggleLight,
|
|
ToggleMagboots,
|
|
DebugInstant,
|
|
DebugToggle,
|
|
DebugTargetPoint,
|
|
DebugTargetPointRepeat,
|
|
DebugTargetEntity,
|
|
DebugTargetEntityRepeat
|
|
}
|
|
}
|