mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed detection of barbarous wolves, pouilly slimes, sinow golds, yowies and kondrieu.
This commit is contained in:
parent
fe3859b782
commit
a21d31ce3a
File diff suppressed because it is too large
Load Diff
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user