public class BattleQueryPacket extends AbstractPixelmonPacket
Modifier and Type | Field and Description |
---|---|
java.util.UUID |
opponentUUID
The UUID of the opponent in the battle.
|
java.lang.String[] |
pokeballs
The types of Poké Balls that the opponent's Pokémon are in.
|
int |
queryIndex
The index of the battle query.
|
Constructor and Description |
---|
BattleQueryPacket()
Initializes an empty packet.
|
BattleQueryPacket(int queryIndex,
java.util.UUID opponentUUID,
PlayerPartyStorage opponentStorage)
Initializes a packet.
|
Modifier and Type | Method and Description |
---|---|
void |
decode(net.minecraft.network.PacketBuffer buffer)
Decodes the information from the buffer to the packet instance
|
void |
encode(net.minecraft.network.PacketBuffer buffer)
Encodes the buffer with the packet information
|
protected void |
handlePacket(net.minecraftforge.fml.network.NetworkEvent.Context context) |
handle, reply
public java.util.UUID opponentUUID
public int queryIndex
public java.lang.String[] pokeballs
public BattleQueryPacket()
public BattleQueryPacket(int queryIndex, java.util.UUID opponentUUID, PlayerPartyStorage opponentStorage)
queryIndex
- The index of the battle query.opponentUUID
- The UUID of the opponent in the battle.opponentStorage
- The opponent's Pokémon.public void decode(net.minecraft.network.PacketBuffer buffer)
PixelmonPacket
decode
in interface PixelmonPacket
decode
in class AbstractPixelmonPacket
buffer
- The buffer being decodedpublic void encode(net.minecraft.network.PacketBuffer buffer)
PixelmonPacket
encode
in interface PixelmonPacket
encode
in class AbstractPixelmonPacket
buffer
- The buffer being encodedprotected void handlePacket(net.minecraftforge.fml.network.NetworkEvent.Context context)
handlePacket
in class AbstractPixelmonPacket