mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-23 21:51:29 +00:00
Add support for LBP3 quests
This commit is contained in:
parent
4c3c152322
commit
a70a934f99
2 changed files with 3 additions and 0 deletions
|
@ -40,6 +40,7 @@ public static class FileHelper
|
||||||
LbpFileType.Script => false,
|
LbpFileType.Script => false,
|
||||||
LbpFileType.Level => true,
|
LbpFileType.Level => true,
|
||||||
LbpFileType.Voice => true,
|
LbpFileType.Voice => true,
|
||||||
|
LbpFileType.Quest => true,
|
||||||
LbpFileType.Plan => true,
|
LbpFileType.Plan => true,
|
||||||
LbpFileType.Jpeg => true,
|
LbpFileType.Jpeg => true,
|
||||||
LbpFileType.Png => true,
|
LbpFileType.Png => true,
|
||||||
|
@ -121,6 +122,7 @@ public static class FileHelper
|
||||||
"VOPb" => LbpFileType.Voice,
|
"VOPb" => LbpFileType.Voice,
|
||||||
"LVLb" => LbpFileType.Level,
|
"LVLb" => LbpFileType.Level,
|
||||||
"PLNb" => LbpFileType.Plan,
|
"PLNb" => LbpFileType.Plan,
|
||||||
|
"QSTb" => LbpFileType.Quest,
|
||||||
_ => readAlternateHeader(reader),
|
_ => readAlternateHeader(reader),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,5 +13,6 @@ public enum LbpFileType
|
||||||
Painting, // PTG, paintings
|
Painting, // PTG, paintings
|
||||||
Jpeg, // JFIF / FIF, used in sticker switches,
|
Jpeg, // JFIF / FIF, used in sticker switches,
|
||||||
Png, // used in LBP Vita
|
Png, // used in LBP Vita
|
||||||
|
Quest, // A LBP3 quest, used in the organizertron
|
||||||
Unknown,
|
Unknown,
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue