Files
fulpstation/code/__DEFINES/library.dm
John Willard 7199947c08 [MDB IGNORE] [IDB IGNORE] WIP TGU (#1427)
Several months worth of updates.

---------

Co-authored-by: A miscellaneous Fern <80640114+FernandoJ8@users.noreply.github.com>
Co-authored-by: Pepsilawn <reisenrui@gmail.com>
Co-authored-by: Ray <64306407+OneAsianTortoise@users.noreply.github.com>
Co-authored-by: Cure221 <106662180+Cure221@users.noreply.github.com>
2025-11-06 08:20:20 -05:00

19 lines
709 B
Plaintext

#define DEFAULT_UPLOAD_CATAGORY "Fiction"
#define DEFAULT_SEARCH_CATAGORY "Any"
///How many books should we load per page?
#define BOOKS_PER_PAGE 18
///How many checkout records should we load per page?
#define CHECKOUTS_PER_PAGE 17
///How many inventory items should we load per page?
#define INVENTORY_PER_PAGE 19
// Book categories, used in SQL so don't change randomly
#define BOOK_CATEGORY_FICTION "Fiction"
#define BOOK_CATEGORY_NONFICTION "Non-fiction"
#define BOOK_CATEGORY_RELIGION "Religion"
#define BOOK_CATEGORY_ADULT "Adult"
#define BOOK_CATEGORY_REFERENCE "Reference"
/// If making a book of this category it will be randomly selected from all categories
#define BOOK_CATEGORY_RANDOM "Random"