#9 - GoToBreedingNestFailureEvent added

This commit is contained in:
oobjectt 2022-12-24 01:40:50 +01:00
parent 473f3ab12c
commit c236735947
4 changed files with 20 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -124,6 +124,7 @@ export class IncomingHeader
public static PET_SCRATCH_FAILED = 1130;
public static PET_OPEN_PACKAGE_REQUESTED = 2380;
public static PET_OPEN_PACKAGE_RESULT = 546;
public static PET_GO_TO_BREEDING_NEST_FAILURE = 2621;
public static RECYCLER_PRIZES = 3164;
public static ROOM_BAN_LIST = 1869;
public static ROOM_BAN_REMOVE = 3429;

View File

@ -0,0 +1,16 @@
import { IMessageEvent } from '../../../../../../api';
import { MessageEvent } from '../../../../../../events';
import { GoToBreedingNestFailureParser } from '../../../parser';
export class GoToBreedingNestFailureEvent extends MessageEvent implements IMessageEvent
{
constructor(callBack: Function)
{
super(callBack, GoToBreedingNestFailureParser);
}
public getParser(): GoToBreedingNestFailureParser
{
return this.parser as GoToBreedingNestFailureParser;
}
}

View File

@ -1,3 +1,4 @@
export * from './GoToBreedingNestFailureEvent';
export * from './PetAddedToInventoryEvent';
export * from './PetInventoryEvent';
export * from './PetReceivedMessageEvent';