Add XScript definitions for Rebellion's Asura engine formats: - Archive chunks (fcsr, acsr, rcsr) - Texture chunks (tsxt, xbtx2d_chunk) - Resource chunks and headers Used by games like Sniper Elite V2 on Xbox 360. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
359 B
Plaintext
14 lines
359 B
Plaintext
// German locale file (Big Endian, Sniper Elite, AVP, etc.)
|
|
// Direct Asura archive
|
|
|
|
type geBE [root, display="German Locale (Big Endian)"] byteorder BE
|
|
{
|
|
criteria {
|
|
require _ext == "gebe";
|
|
require ascii(bytesat(0, 8)) == "Asura ";
|
|
}
|
|
|
|
archive = parse_here("asura_archive");
|
|
archive = archive [ui, display="Asura Archive"];
|
|
}
|