/* //VORESTATION REMOVAL
/datum/lore/codex/category/main_corp_regs // The top-level categories for SOP/Regs/Law/etc
name = "Index"
data = "This book is meant to act as a reference for both NanoTrasen regulations, Standard Operating Procedure, and important laws of both \
the Sif Governmental Authority and the Solar Confederate Government. The legal interactions between Nanotrasen corporate policy and VGA/SolGov \
law can make for some confusing legalese. This book was written by the Vir division of NanoTrasen in order for employees, visitors, and residents \
at NanoTrasen installations such as the Northen Star and the Southen Cross to know what isn't allowed, without needing to be a lawyer to read it.\
\
In this book, there are two different types of rules. Corporate Regulations, and Laws. They each cover specific situations, and are both enforced \
by the Security team. Despite this, however, the punishments vary considerably for the two types. It should also be noted that no one is above \
these rules, not even the Station Director.\
\
Also contained inside are our Standard Operating Procedures, that all employees of NanoTrasen are expected to follow, and for the local facility's \
Command team and Internal Affairs to enforce.\
\
It should be noted that by being on-board our facility, you agree to follow the rules of Corporate Regulations. By being within VGA space, \
you are also required to follow the laws of VirGov."
children = list(
/datum/lore/codex/category/standard_operating_procedures,
/datum/lore/codex/category/corporate_regulations,
/datum/lore/codex/category/sif_law,
/datum/lore/codex/page/overview,
/datum/lore/codex/page/about_corp_regs
)
/datum/lore/codex/page/about_corp_regs
name = "About"
data = "This book was written and published by NanoTrasen, for use on NanoTrasen installations from within the Vir system."
// Special page which will hopefully enforce consistant formatting.
/datum/lore/codex/page/law
var/definition = null // Short definition of the law violation.
var/suggested_punishments = null
var/suggested_brig_time = null
var/suggested_fine = null
var/notes = null
var/mandated = FALSE // If true, changes 'suggested' to 'mandated' for punishments, used for virgov laws and some high corporate regs.
/datum/lore/codex/page/law/add_content()
data = "[definition]\
\
| Incident | " HTML += "Description | " HTML += "Suggested Punishment | " HTML += "Notes | " HTML += "Mandated? | " HTML += "
|---|---|---|---|---|
| [quick_link(L.name)] | " HTML += "[L.definition] | " HTML += "[L.suggested_punishments] | " HTML += "[L.notes] | " HTML += "[L.mandated ? "Yes" : "No"] | " HTML += "