Merge pull request #250 from Oposshim/call-it-whatever-the-fuck-i-want

Book sprite revamp
This commit is contained in:
Dahlular
2020-05-25 13:00:56 -06:00
committed by GitHub
5 changed files with 32 additions and 32 deletions
+2 -2
View File
@@ -179,10 +179,10 @@
* Book
*/
/obj/item/book
name = "book"
name = "Datapad"
icon = 'icons/obj/library.dmi'
icon_state ="book"
desc = "Crack it open, inhale the musk of its pages, and learn something new."
desc = "A fancy new state of the art Digital-Readpad(tm) provided by Nanotrasen, No more 20th century paper!"
throw_speed = 1
throw_range = 5
w_class = WEIGHT_CLASS_NORMAL //upped to three because books are, y'know, pretty big. (and you could hide them inside eachother recursively forever)
+2 -2
View File
@@ -564,10 +564,10 @@ GLOBAL_LIST(cachedbooks) // List of our cached book datums
* Book binder
*/
/obj/machinery/bookbinder
name = "book binder"
name = "Datapad transcriptor"
icon = 'icons/obj/library.dmi'
icon_state = "binder"
desc = "Only intended for binding paper products."
desc = "Reads and scans papers placed into it for text to datapad conversion."
density = TRUE
var/busy = FALSE
+1 -1
View File
@@ -58,7 +58,7 @@
B.author = query_get_random_books.item[2]
B.title = query_get_random_books.item[3]
B.dat = query_get_random_books.item[4]
B.name = "Book: [B.title]"
B.name = "Datapad: [B.title]"
B.icon_state= "book[rand(1,8)]"
qdel(query_get_random_books)