mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
# Conflicts: # README.md # code/game/jobs/job/job.dm # code/modules/client/preference_setup/loadout/loadout_utility.dm # code/modules/mob/living/carbon/human/examine.dm # code/modules/mob/living/carbon/human/npcs.dm # code/modules/mob/living/carbon/human/species/station/prometheans.dm # html/changelogs/.all_changelog.yml # maps/RandomZLevels/Academy.dmm # maps/RandomZLevels/beach.dmm # maps/RandomZLevels/blackmarketpackers.dmm # maps/RandomZLevels/challenge.dmm # maps/RandomZLevels/example.dmm # maps/RandomZLevels/jungle.dmm # maps/RandomZLevels/listeningpost.dmm # maps/RandomZLevels/spacebattle.dmm # maps/RandomZLevels/stationCollision.dmm # maps/RandomZLevels/wildwest.dmm # maps/RandomZLevels/zresearchlabs.dmm # maps/northern_star/polaris-1.dmm # maps/southern_cross/southern_cross-1.dmm # maps/southern_cross/southern_cross-3.dmm # maps/southern_cross/southern_cross-6.dmm # maps/southern_cross/southern_cross-7.dmm # maps/submaps/surface_submaps/mountains/CrashedMedShuttle1.dmm # maps/submaps/surface_submaps/plains/Boathouse.dmm # maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm # maps/submaps/surface_submaps/wilderness/Boombase.dmm # maps/submaps/surface_submaps/wilderness/DJOutpost1.dmm # maps/submaps/surface_submaps/wilderness/DecoupledEngine.dmm # maps/submaps/surface_submaps/wilderness/Drugden.dmm # maps/submaps/surface_submaps/wilderness/Rockybase.dmm # maps/submaps/surface_submaps/wilderness/Shack1.dmm # maps/virgo/virgo-6.dmm # vorestation.dme
52 lines
2.3 KiB
Plaintext
52 lines
2.3 KiB
Plaintext
// Inherits from /book/ so it can fit on bookshelves.
|
|
/obj/item/weapon/book/codex // Vorestation Edits throughout this object.
|
|
name = "The Traveler's Guide to Human Space: Virgo-Erigone Edition"
|
|
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."
|
|
icon_state = "codex"
|
|
unique = TRUE
|
|
var/datum/codex_tree/tree = null
|
|
var/root_type = /datum/lore/codex/category/main_virgo_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 // Vorestation Edits throughout this object.
|
|
name = "The Traveler's Guide to Human Space: Virgo-Erigone Edition"
|
|
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."
|
|
icon_state = "codex"
|
|
root_type = /datum/lore/codex/category/main_virgo_lore
|
|
|
|
/obj/item/weapon/book/codex/lore/robutt
|
|
name = "A Buyer's Guide to Artificial Bodies"
|
|
desc = "Recommended reading for the newly cyborgified, new positronics, and the upwardly-mobile FBP."
|
|
icon_state = "codex_robutt"
|
|
root_type = /datum/lore/codex/category/main_robutts
|
|
|
|
|
|
/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.
|
|
*/
|