Contains the Registry Stuff for my Book Shelves.
| 1798 | |
| 1799 | /** Contains the Registry Stuff for my Book Shelves. */ |
| 1800 | public static class BooksGT { |
| 1801 | // 0 = null |
| 1802 | // 1 = Book/Written Book/Writable Book/Default |
| 1803 | // 2 = Enchanted Book |
| 1804 | // 3 = Black, 4 = White, 5 = Red, 6 = Green, 7 = Blue, 8 = Cyan, 9 = Magenta, 10 = Yellow, 48 = Orange, 49 = Purple, 53 = Dusty |
| 1805 | // 11 = Material Dictionary |
| 1806 | // 12 = GT Book |
| 1807 | // 13 = Thaumonomicon |
| 1808 | // 14 = Crimson Rites |
| 1809 | // 15 = Stone Tablets |
| 1810 | // 16 = Maps |
| 1811 | // 17 = Crafting |
| 1812 | // 18 = Scrolls |
| 1813 | // 19 = Rails |
| 1814 | // 20 = Wolves |
| 1815 | // 21 = Witches |
| 1816 | // 22 = Brewing |
| 1817 | // 23 = Vampires |
| 1818 | // 24 = Reika |
| 1819 | // 25 = Default Black Folder, 26 = Red Folder, 27 = Green Folder, 28 = Blue Folder |
| 1820 | // 29 = Clipboard |
| 1821 | // 30 = Records |
| 1822 | // 31 = Printing Plates |
| 1823 | // 32 = Catalogues |
| 1824 | // 33 = Letters |
| 1825 | // 34 = Frame |
| 1826 | // 35 = Floppy Disk |
| 1827 | // 36 = VHS Tape |
| 1828 | // 37 = ID Card |
| 1829 | // 38 = AE Press |
| 1830 | // 39 = FZ Manual |
| 1831 | // 40 = OC Manual |
| 1832 | // 41 = IE Manual |
| 1833 | // 42 = Lexica Botania |
| 1834 | // 43 = Metallic Tablet Computer |
| 1835 | // 44 = Golden Tablet Computer |
| 1836 | // 45 = Extruder Shapes |
| 1837 | // 46 = AE Cells |
| 1838 | // 47 = AE Handhelds |
| 1839 | // 48 = Orange, 49 = Purple |
| 1840 | // 50 = Division Sigil |
| 1841 | // 51 = XL Letters, 52 = XXL Letters |
| 1842 | // 53 = Dusty Books |
| 1843 | // 54 = Hard Drives |
| 1844 | // 55 = Simple Extruder Shapes |
| 1845 | // 56 = Thaumometer |
| 1846 | // 57 = Tape_White |
| 1847 | // 58 = Tape_Gray |
| 1848 | // 59 = Tape_Black |
| 1849 | // 255 = Stone (this one is supposed to just fill the Shelf) |
| 1850 | public static final ITexture[] BOOK_TEXTURES_BACK = new ITexture[256]; |
| 1851 | public static final ITexture[] BOOK_TEXTURES_SIDE = new ITexture[256]; |
| 1852 | |
| 1853 | public static final ItemStackMap<ItemStackContainer, Byte> BOOK_REGISTER = new ItemStackMap<>(); |
| 1854 | |
| 1855 | public static final ItemStackSet<ItemStackContainer> BOOKS_NORMAL = ST.hashset(); |
| 1856 | public static final ItemStackSet<ItemStackContainer> BOOKS_ENCHANTED = ST.hashset(); |
| 1857 | } |