// // BfPacket.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using NosSmooth.Packets.Enums.Entities; using NosSmooth.Packets.Server.Maps; using NosSmooth.PacketSerializer.Abstractions.Attributes; namespace NosSmooth.Packets.Server.Buffs; /// /// A buff effect has been added. /// /// The type of the entity. /// The id of the entity. /// The sub packet containing information about a buff. /// The level of the caster. [PacketHeader("bf", PacketSource.Server)] [GenerateSerializer(true)] public record BfPacket ( [PacketIndex(0)] EntityType EntityType, [PacketIndex(1)] long EntityId, [PacketIndex(2, InnerSeparator = '.')] BfSubPacket SubPacket, [PacketIndex(3)] short CasterLevel ) : IPacket;