Files
abysmal-isle/Scripts/SubSystem/ACC/Complete Spell System/-=+ 02 Changing/School.cs
Unstable Kitsune b918192e4e Overwrite
Complete Overwrite of the Folder with the free shard. ServUO 57.3 has been added.
2023-11-28 23:20:26 -05:00

24 lines
460 B
C#

using System;
using System.Collections;
namespace Server.ACC.CSS
{
[Flags]
public enum School
{
Invalid = 0x00000000,
Magery = 0x00000001,
Necro = 0x00000002,
Chivalry = 0x00000004,
Ninja = 0x00000008,
Samurai = 0x00000010,
Druid = 0x00000020,
Avatar = 0x00000040,
Bard = 0x00000080,
Cleric = 0x00000100,
Ranger = 0x00000200,
Rogue = 0x00000400,
Undead = 0x00000800,
Ancient = 0x00001000,
}
}