Fixed detection of barbarous wolves, pouilly slimes, sinow golds, yowies and kondrieu.

This commit is contained in:
Daan Vanden Bosch 2019-06-22 20:29:16 +02:00
parent fe3859b782
commit a21d31ce3a
2 changed files with 203 additions and 105 deletions

File diff suppressed because it is too large Load Diff

View File

@ -224,7 +224,7 @@ function parseNpcData(episode: number, npcs: DatNpc[]): QuestNpc[] {
// TODO: detect Mothmant, St. Rappy, Hallo Rappy, Egg Rappy, Death Gunner, Bulk and Recon.
function getNpcType(episode: number, { typeId, unknown, skin, areaId }: DatNpc): NpcType {
const regular = (unknown[2][18] & 0x80) === 0;
const regular = (unknown[2][6] & 0x80) === 0;
switch (`${typeId}, ${skin % 3}, ${episode}`) {
case `${0x044}, 0, 1`: return NpcType.Booma;