~ruther/NosSmooth

f31273ff7eed743f3e29197dc8fe4568b57e473d — Rutherther 2 years ago d4d8d81
feat(game): add mate skills api
1 files changed, 81 insertions(+), 2 deletions(-)

M Core/NosSmooth.Game/Apis/NostaleMateSkillsPacketApi.cs
M Core/NosSmooth.Game/Apis/NostaleMateSkillsPacketApi.cs => Core/NosSmooth.Game/Apis/NostaleMateSkillsPacketApi.cs +81 -2
@@ 4,6 4,11 @@
//  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.Core.Client;
using NosSmooth.Packets.Client.Battle;
using NosSmooth.Packets.Enums.Entities;
using Remora.Results;

namespace NosSmooth.Game.Apis;

/// <summary>


@@ 11,6 16,80 @@ namespace NosSmooth.Game.Apis;
/// </summary>
public class NostaleMateSkillsPacketApi
{
    // use pet skill on
    // use partner skill on
    private readonly INostaleClient _client;

    /// <summary>
    /// Initializes a new instance of the <see cref="NostaleMateSkillsPacketApi"/> class.
    /// </summary>
    /// <param name="client">The client.</param>
    public NostaleMateSkillsPacketApi(INostaleClient client)
    {
        _client = client;
    }

    /// <summary>
    /// Use a pet skill.
    /// </summary>
    /// <param name="petId">The pet id.</param>
    /// <param name="targetEntityType">The type of the target entity.</param>
    /// <param name="targetId">The id of the target.</param>
    /// <param name="mapX">The x coordinate of the partner.</param>
    /// <param name="mapY">The y coordinate of the partner.</param>
    /// <returns>A result that may or may not have succeeded.</returns>
    public async Task<Result> UsePetSkillAsync
    (
        long petId,
        EntityType targetEntityType,
        long targetId,
        short? mapX = default,
        short? mapY = default
    )
    {
        return await _client.SendPacketAsync
        (
            new UsePetSkillPacket
            (
                petId,
                targetEntityType,
                targetId,
                1,
                mapX,
                mapY
            )
        );
    }

    /// <summary>
    /// Use a partner skill.
    /// </summary>
    /// <param name="partnerId">The pet id.</param>
    /// <param name="skillSlot">The slot of the skill.</param>
    /// <param name="targetEntityType">The type of the target entity.</param>
    /// <param name="targetId">The id of the target.</param>
    /// <param name="mapX">The x coordinate of the partner.</param>
    /// <param name="mapY">The y coordinate of the partner.</param>
    /// <returns>A result that may or may not have succeeded.</returns>
    public async Task<Result> UsePartnerSkillAsync
    (
        long partnerId,
        byte skillSlot,
        EntityType targetEntityType,
        long targetId,
        short? mapX = default,
        short? mapY = default
    )
    {
        return await _client.SendPacketAsync
        (
            new UsePartnerSkillPacket
            (
                partnerId,
                targetEntityType,
                targetId,
                skillSlot,
                mapX,
                mapY
            )
        );
    }
}
\ No newline at end of file