Class UpdateTrainerPokemonPacketPacket

All Implemented Interfaces:
PixelmonPacket

public class UpdateTrainerPokemonPacketPacket extends UpdateEditedPokemonPacket
Updates an NPC Trainer's Pokémon's data server-side.
  • Field Details

    • trainerID

      public int trainerID
      The ID of the Trainer to update.
  • Constructor Details

    • UpdateTrainerPokemonPacketPacket

      public UpdateTrainerPokemonPacketPacket()
      Empty constructor for packet registration.
    • UpdateTrainerPokemonPacketPacket

      public UpdateTrainerPokemonPacketPacket(Pokemon data)
      Initializes a packet.
      Parameters:
      data - The updated Pokémon data.
    • UpdateTrainerPokemonPacketPacket

      public UpdateTrainerPokemonPacketPacket(Pokemon data, int slot)
      Initializes a packet.
      Parameters:
      data - The updated Pokémon data.
      slot - The slot to move this Pokémon to.
  • Method Details

    • encode

      public void encode(net.minecraft.network.FriendlyByteBuf buffer)
      Description copied from interface: PixelmonPacket
      Encodes the buffer with the packet information
      Specified by:
      encode in interface PixelmonPacket
      Overrides:
      encode in class UpdateEditedPokemonPacket
      Parameters:
      buffer - The buffer being encoded
    • decode

      public void decode(net.minecraft.network.FriendlyByteBuf buffer)
      Description copied from interface: PixelmonPacket
      Decodes the information from the buffer to the packet instance
      Specified by:
      decode in interface PixelmonPacket
      Overrides:
      decode in class UpdateEditedPokemonPacket
      Parameters:
      buffer - The buffer being decoded
    • handlePacket

      protected void handlePacket(net.minecraftforge.event.network.CustomPayloadEvent.Context context)
      Specified by:
      handlePacket in class AbstractPixelmonPacket