2023-04-08 20:52:47 +01:00
|
|
|
import { Reader, Writer } from "../../bufferStuff";
|
2023-04-10 21:52:30 +01:00
|
|
|
import { Packet } from "../enums/Packet";
|
2023-04-08 20:52:47 +01:00
|
|
|
import { IPacket } from "./IPacket";
|
|
|
|
|
|
|
|
export class PacketEntityEquipment implements IPacket {
|
2023-04-10 21:52:30 +01:00
|
|
|
public packetId = Packet.EntityEquipment;
|
2023-04-08 20:52:47 +01:00
|
|
|
public entityId:number;
|
|
|
|
public slot:number;
|
|
|
|
public itemId:number;
|
|
|
|
public damage:number;
|
|
|
|
|
|
|
|
public constructor(entityId:number, slot:number, itemId:number, damage:number) {
|
|
|
|
this.entityId = entityId;
|
|
|
|
this.slot = slot;
|
|
|
|
this.itemId = itemId;
|
|
|
|
this.damage = damage;
|
|
|
|
}
|
|
|
|
|
|
|
|
public readData(reader:Reader) {
|
|
|
|
this.entityId = reader.readInt();
|
|
|
|
this.slot = reader.readShort();
|
|
|
|
this.itemId = reader.readShort();
|
|
|
|
this.damage = reader.readShort();
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public writeData() {
|
|
|
|
return new Writer(10).writeUByte(this.packetId).writeInt(this.entityId).writeShort(this.slot).writeShort(this.itemId).writeShort(this.damage).toBuffer();
|
|
|
|
}
|
|
|
|
}
|