Add the four remaining named Stygian Abyss throwing artifacts — Abyss Reaver, Storm Caller, Banshee's Call, and Wind of Corruption — as item definitions, stat-for-stat from ServUO. They are [add-only for now: their in-world sources (the Into the Void quest for Abyss Reaver; the renowned/boss creatures for the others) are deferred to future efforts, but the items themselves are useful to have defined. Storm Caller's ServUO BattleLust attribute is left as a TODO — BattleLust is not yet implemented in ModernUO's AosWeaponAttribute set. (The human Bow variant WindOfCorruptionHuman is out of throwing scope and not included.) Co-Authored-By: Joe Valentine <jwvalentine@outlook.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
17 lines
439 B
C#
17 lines
439 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
[SerializationGenerator(0)]
|
|
public partial class AbyssReaver : Cyclone
|
|
{
|
|
[Constructible]
|
|
public AbyssReaver()
|
|
{
|
|
SkillBonuses.SetValues(0, SkillName.Throwing, Utility.RandomMinMax(5, 10));
|
|
Attributes.WeaponDamage = Utility.RandomMinMax(25, 35);
|
|
Slayer = SlayerName.Exorcism;
|
|
}
|
|
|
|
public override int LabelNumber => 1112694; // Abyss Reaver
|
|
}
|