Twinkle Crusaders EPA: Difference between revisions

From XentaxWiki
Jump to navigation Jump to search
imported>Ikskoks
imported>Ikskoks
 
(19 intermediate revisions by the same user not shown)
Line 11: Line 11:
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;">
<div class="toccolours mw-collapsible" id="mw-customcollapsible-myDivision" style="width:800px; overflow:auto;">
<pre>
<pre>
//header
// header
2 bytes (char) - signature // "EP"
2 bytes (char) - signature // "EP"
2 bytes (uint16) - unknown // 257
1 byte (uint8) - difference flag // 1 - usual
4 bytes (uint32) - version? // 2
                                  // 2 - difference
4 bytes (uint32) - image width?
1 byte (uint8) - unknown flag
4 bytes (uint32) - image height?
2 bytes (uint16) - bpp flag // 0 - 8-bit image
2 bytes (uint16) - unknown  // 1
                            // 1 - 24-bit image
                            // 2 - 32-bit image
                            // 4 - 8-bit image
2 bytes (uint16) - nulls
4 bytes (uint32) - image width
4 bytes (uint32) - image height




// palette
x bytes - palette data
// data
x bytes - compressed image data
x bytes - compressed image data
</pre>
</pre>
Line 26: Line 36:
=== Notes and Comments ===  
=== Notes and Comments ===  


* This file format occurs in games made using "'''2XT - SEVEN WONDER Adventure Engine'''".
* This file format occurs in games made using "'''2XT - SEVEN WONDER Adventure Engine''' (Pajamas Adventure System)".
* EPA images are compressed or encrypted with unknown algorithm.
* EPA images are compressed with custom algorithm.


=== Games ===  
=== Games ===  
Line 33: Line 43:
* TAISHO x ALICE (*.EPA)
* TAISHO x ALICE (*.EPA)
* Twinkle Crusaders (*.EPA)
* Twinkle Crusaders (*.EPA)
Other (unconfirmed) games:
* Aneimo 2 ~Second Stage~
* Futa Ane ~Bitter & Sweet~
* Lilycle Rainbow Stage!!!
* Momichupa Teacher!
* Natsu no Owari no Nirvana
* Patissier na Nyanko
* Prism Heart
* Toraba!
* Trouble @ Spiral!


=== QuickBMS Script ===  
=== QuickBMS Script ===  
Line 40: Line 61:
=== Compatible Programs ===  
=== Compatible Programs ===  


* [https://github.com/lioncash/ExtractData/blob/master/Extract/Pajamas.cpp ExtractData/Extract/Pajamas.cpp]
* [https://github.com/morkt/GARbro GARbro]
* [https://github.com/morkt/GARbro GARbro]
=== See Also ===
* [[Twinkle Crusaders DAT]]
<br/><br>
<br/><br>




[[Category:Complete WIP|Twinkle Crusaders EPA]]
[[Category:Complete Almost Done|Twinkle Crusaders EPA]]
[[Category:Platform PC|Twinkle Crusaders EPA]]
[[Category:Platform PC|Twinkle Crusaders EPA]]
[[Category:CE Compressed|Twinkle Crusaders EPA]]
[[Category:CE Compressed|Twinkle Crusaders EPA]]

Latest revision as of 22:05, 8 May 2022

Back to index | Edit this page

EPA

  • Format Type : Image
  • Endian Order : Little Endian
  • Signature : EP


Format Specifications

// header
2 bytes (char) - signature // "EP"
1 byte (uint8) - difference flag  // 1 - usual
                                  // 2 - difference
1 byte (uint8) - unknown flag
2 bytes (uint16) - bpp flag  // 0 - 8-bit image
                             // 1 - 24-bit image
                             // 2 - 32-bit image
                             // 4 - 8-bit image
2 bytes (uint16) - nulls
4 bytes (uint32) - image width
4 bytes (uint32) - image height


// palette
x bytes - palette data


// data
x bytes - compressed image data

Notes and Comments

  • This file format occurs in games made using "2XT - SEVEN WONDER Adventure Engine (Pajamas Adventure System)".
  • EPA images are compressed with custom algorithm.

Games

List of games using this file format:

  • TAISHO x ALICE (*.EPA)
  • Twinkle Crusaders (*.EPA)

Other (unconfirmed) games:

  • Aneimo 2 ~Second Stage~
  • Futa Ane ~Bitter & Sweet~
  • Lilycle Rainbow Stage!!!
  • Momichupa Teacher!
  • Natsu no Owari no Nirvana
  • Patissier na Nyanko
  • Prism Heart
  • Toraba!
  • Trouble @ Spiral!

QuickBMS Script

Not written yet.

Compatible Programs

See Also