Setup for New Library (#6514)

* Setup for New Library

* F U C K

* Multipage Huzzah

* FixFix

* Fixfix2Bookboogaloo
This commit is contained in:
Mechoid
2019-11-04 18:24:08 -08:00
committed by Atermonera
parent f135aa9ddf
commit 41fc81e9f0
6 changed files with 207 additions and 5 deletions
@@ -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"
*/