Porting book bags (#390)

Adding books bags, also the librarian starts with one.
This commit is contained in:
Alberyk
2016-06-20 17:53:58 +03:00
committed by skull132
parent bfcb0a4207
commit 2a262cd234
4 changed files with 56 additions and 2 deletions
@@ -10,7 +10,8 @@
* Plant Bag
* Sheet Snatcher
* Cash Bag
*
* Book Bag (New thing)
*
* -Sayu
*/
@@ -253,3 +254,19 @@
max_w_class = 3
w_class = 2
can_hold = list(/obj/item/weapon/coin,/obj/item/weapon/spacecash)
// -----------------------------
// Book bag
// -----------------------------
/obj/item/weapon/storage/bag/books
name = "book bag"
desc = "A bag for books."
icon = 'icons/obj/library.dmi'
icon_state = "bookbag"
storage_slots = 7
max_w_class = 3
w_class = 3
can_hold = list(/obj/item/weapon/book, /obj/item/weapon/spellbook)