Slope Type

From Final Fantasy Hacktics Wiki
Jump to navigation Jump to search
Slope Type (Tile Data 0x04)

This Byte holds 4 groups of data (2 bits each) : one group for Each direction (North - South - East and West)
The three possible value are (binaries) : 
  - 00 : Low and Straight
  - 01 : Sloping
  - 10 : High and Straight
 
There's three type of slope tile in four direction

                             Sides
                             -----
Type    Binaries       North  South  West  East     Description

0x52    01010010        01     01     00    10      Edge (Up to the East)
0x58    01011000        01     01     10    00      Edge (Up to the West)
0x25    00100101        00     10     01    01      Edge (Up to the South)
0x85    10000101        10     00     01    01      Edge (Up to the North)
0x41    01000001        01     00     00    01      Low Corner (North East Angle up)  
0x11    00010001        00     01     00    01      Low Corner (South East Angle up)
0x14    00010100        00     01     01    00      Low Corner (South West Angle up)
0x44    01000100        01     00     01    00      Low Corner (North West Angle up)
0x96    10010110        10     01     01    10      High Corner (North East up)
0x66    01100110        01     10     01    10      High Corner (South East up)
0x69    01101001        01     10     10    01      High Corner (South West up)
0x99    10011001        10     01     10    01      High Corner (North West up)

               EDGE                        LOW CORNER                  HIGH CORNER      
3Types.png