ModernUO/Projects
Kamron Batman 8ffd5a5bd0
fix: Updates races to properly support gargoyle equipment. (#744)
* Adds `RaceFlag` to the `Race` object. This is `1 << RaceIndex`
* Replaces `RequiredRace`  with `RequiredRaces` for items.
* Adds convenience flags for `RequiredRaces`
  ```cs
  
  public const int AllowAllRaces = 0x7;      // Race.Human.RaceFlag | Race.Elf.RaceFlag | Race.Gargoyle.RaceFlag
  public const int AllowHumanOrElves = 0x3;  // Race.Human.RaceFlag | Race.Elf.RaceFlag
  public const int AllowElvesOnly = 0x2;     // Race.Elf.RaceFlag
  public const int AllowGargoylesOnly = 0x4; // Race.Gargoyle.RaceFlag
  ```
* Example usage on an item:
  ```cs
  public override int RequiredRaces => Race.AllowHumanOrElves;
  ```
* Adds Wood and Stone armor material types
* Updates Woodland armor to Wood
* Adds proper messaging for race restrictions
* Adds gargoyle only for object properties
* Adds `CheckRace` functions for validating if a race or mobile can use the item:
  ```cs
  bool CheckRace(Race race);
  bool CheckRace(Mobile from, bool message = true);
  ```
2021-08-29 00:43:55 -07:00
..
Benchmarks fix: Fixes benchmarks (#729) 2021-08-25 00:35:07 -07:00
SerializationGenerator fix: Fixes codegenning nested classes (#738) 2021-08-27 19:08:04 -07:00
SerializationSchemaGenerator fix(codegen): Adds codegen for embedded objects and timer fields (#686) 2021-08-16 14:48:18 -07:00
Server fix: Updates races to properly support gargoyle equipment. (#744) 2021-08-29 00:43:55 -07:00
Server.Tests fix(core): Removes implicit cast between Serial and uint (#728) 2021-08-25 00:27:19 -07:00
UOContent fix: Updates races to properly support gargoyle equipment. (#744) 2021-08-29 00:43:55 -07:00
UOContent.Tests fix(core): Removes implicit cast between Serial and uint (#728) 2021-08-25 00:27:19 -07:00