mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
/*
|
|
* 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"
|
|
*/
|