mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
# Conflicts: # code/_onclick/hud/screen_objects.dm # code/game/objects/items/weapons/storage/storage.dm # code/game/objects/structures/crates_lockers/closets/secure/medical.dm # code/modules/admin/admin_verbs.dm # code/modules/clothing/clothing.dm # code/modules/clothing/gloves/color.dm # code/modules/lore_codex/codex.dm # code/modules/mob/living/simple_animal/aliens/alien.dm # code/modules/mob/living/simple_animal/animals/cat.dm # code/modules/mob/living/simple_animal/animals/goose.dm # code/modules/mob/living/simple_animal/simple_animal.dm # code/modules/mob/mob_defines.dm # code/modules/projectiles/projectile/special.dm # html/changelogs/.all_changelog.yml # maps/southern_cross/southern_cross-1.dmm # maps/southern_cross/southern_cross-7.dmm # vorestation.dme
45 lines
2.0 KiB
Plaintext
45 lines
2.0 KiB
Plaintext
// Inherits from /book/ so it can fit on bookshelves.
|
|
/obj/item/weapon/book/codex
|
|
name = "The Traveler's Guide to Human Space: Virgo-Erigone Edition" //VOREStation Edit - Book Name
|
|
desc = "Contains useful information about the world around you. It seems to have been written for travelers to Virgo-Erigone, human or not. It also \
|
|
has the words 'Don't Panic' in small, friendly letters on the cover." //VOREStation Edit - System Name
|
|
icon_state = "codex"
|
|
unique = TRUE
|
|
var/datum/codex_tree/tree = null
|
|
var/root_type = /datum/lore/codex/category/main_vir_lore //Runtimes on codex_tree.dm, line 18 with a null here
|
|
|
|
/obj/item/weapon/book/codex/initialize()
|
|
tree = new(src, root_type)
|
|
. = ..()
|
|
|
|
/obj/item/weapon/book/codex/attack_self(mob/user)
|
|
if(!tree)
|
|
tree = new(src, root_type)
|
|
icon_state = "[initial(icon_state)]-open"
|
|
tree.display(user)
|
|
|
|
/obj/item/weapon/book/codex/lore/vir
|
|
name = "The Traveler's Guide to Human Space: Vir Edition"
|
|
desc = "Contains useful information about the world around you. It seems to have been written for travelers to Vir, human or not. It also \
|
|
has the words 'Don't Panic' in small, friendly letters on the cover."
|
|
icon_state = "codex"
|
|
root_type = /datum/lore/codex/category/main_vir_lore
|
|
|
|
/obj/item/weapon/book/codex/lore/news
|
|
name = "Daedalus Pocket Newscaster"
|
|
desc = "A regularly-updating compendium of articles on current events. Essential for new arrivals in the Vir system and anyone interested in politics."
|
|
icon_state = "newscodex"
|
|
w_class = ITEMSIZE_SMALL
|
|
root_type = /datum/lore/codex/category/main_news
|
|
|
|
/* //VORESTATION REMOVAL
|
|
// Combines SOP/Regs/Law
|
|
/obj/item/weapon/book/codex/corp_regs
|
|
name = "NanoTrasen Regulatory Compendium"
|
|
desc = "Contains large amounts of information on Standard Operating Procedure, Corporate Regulations, and important regional laws. The best friend of \
|
|
Internal Affairs."
|
|
icon_state = "corp_regs"
|
|
root_type = /datum/lore/codex/category/main_corp_regs
|
|
throwforce = 5 // Throw the book at 'em.
|
|
*/
|