mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-07-18 11:42:52 +01:00
Setup for New Library (#6514)
* Setup for New Library * F U C K * Multipage Huzzah * FixFix * Fixfix2Bookboogaloo
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Home of the New (NOV 1st, 2019) library books.
|
||||
*/
|
||||
|
||||
/obj/item/weapon/book/custom_library
|
||||
name = "Book"
|
||||
desc = "A hardbound book."
|
||||
description_info = "This book is printed from the custom repo. If you can see this, something went wrong."
|
||||
|
||||
icon = 'icons/obj/custom_books.dmi'
|
||||
icon_state = "book"
|
||||
|
||||
// This is the ckey of the book's author.
|
||||
var/origkey = null
|
||||
author = "UNKNOWN"
|
||||
|
||||
/obj/item/weapon/book/custom_library/fiction
|
||||
libcategory = "Fiction"
|
||||
|
||||
/obj/item/weapon/book/custom_library/nonfiction
|
||||
libcategory = "Non-Fiction"
|
||||
|
||||
/obj/item/weapon/book/custom_library/reference
|
||||
libcategory = "Reference"
|
||||
|
||||
/obj/item/weapon/book/custom_library/religious
|
||||
libcategory = "Religious"
|
||||
/*
|
||||
/obj/item/weapon/book/custom_library/adult
|
||||
libcategory = "Adult"
|
||||
*/
|
||||
/obj/item/weapon/book/bundle/custom_library
|
||||
name = "Book"
|
||||
desc = "A hardbound book."
|
||||
description_info = "This book is printed from the custom repo. If you can see this, something went wrong."
|
||||
|
||||
icon = 'icons/obj/custom_books.dmi'
|
||||
icon_state = "book"
|
||||
|
||||
// This is the ckey of the book's author.
|
||||
var/origkey = null
|
||||
author = "UNKNOWN"
|
||||
|
||||
page = 1 //current page
|
||||
pages = list() //the contents of each page
|
||||
|
||||
/obj/item/weapon/book/bundle/custom_library/fiction
|
||||
libcategory = "Fiction"
|
||||
|
||||
/obj/item/weapon/book/bundle/custom_library/nonfiction
|
||||
libcategory = "Non-Fiction"
|
||||
|
||||
/obj/item/weapon/book/bundle/custom_library/reference
|
||||
libcategory = "Reference"
|
||||
|
||||
/obj/item/weapon/book/bundle/custom_library/religious
|
||||
libcategory = "Religious"
|
||||
/*
|
||||
/obj/item/weapon/book/bundle/custom_library/adult
|
||||
libcategory = "Adult"
|
||||
*/
|
||||
Reference in New Issue
Block a user