From 8779f3bc597c1afa3b67ee176e73efc0eef8bc69 Mon Sep 17 00:00:00 2001 From: Blu <79374236+BlueHNT@users.noreply.github.com> Date: Mon, 13 Jan 2025 00:09:32 +0100 Subject: [PATCH] Space Law, Irons Out Xml's and Proposes Default Lawset (#1386) # Description Wizard's lawset while good for LRP and NRP, doesn't serve perfectly force MRP-HRP type servers as it is missing some common laws. I wish to introduce a more encompassing lawset which while it's still a bit underwork, should be fuller and more encompassing for what Einstein-Engines is trying to do. At the same time I have gone through some other entries in SpaceLaw category and added colouring to Controlled and Restricted items, while also adding further explanation of law categorization. Documentation on the space law is [here](https://docs.google.com/spreadsheets/d/1kSJSmXltODHW-gpnUb3b-lDwbq-c8W21MopfDSEqfI4/edit?gid=1898009230#gid=1898009230). --- # TODO - [x] Make SL more readable - [x] Add Space Law table - [x] Add individual item explanations ---

Media

![image](https://github.com/user-attachments/assets/0b00b349-7075-495f-92f8-72e05cf3171d) ![image](https://github.com/user-attachments/assets/cbfd81df-4310-4b40-824b-2007aacdd13e) ![image](https://github.com/user-attachments/assets/f8c1020c-9d6c-4849-88f9-a993e03b6fa7)

--- # Changelog :cl: - add: Added New Law - tweak: Tweaked Space Law entries - remove: Removed Old Law --- Resources/Locale/en-US/guidebook/guides.ftl | 2 +- Resources/Prototypes/Guidebook/rules.yml | 7 + .../SpaceLaw/SLControlledSubstances.xml | 20 +- .../ServerRules/SpaceLaw/SLCrimeList.xml | 1861 +++++++++++++++++ .../ServerRules/SpaceLaw/SLRestrictedGear.xml | 39 +- .../SpaceLaw/SLRestrictedWeapons.xml | 22 +- .../ServerRules/SpaceLaw/SpaceLaw.xml | 44 +- 7 files changed, 1941 insertions(+), 54 deletions(-) create mode 100644 Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl index 5abf9798415..e4a4fa07022 100644 --- a/Resources/Locale/en-US/guidebook/guides.ftl +++ b/Resources/Locale/en-US/guidebook/guides.ftl @@ -118,7 +118,7 @@ guide-entry-rules-s8 = S8 guide-entry-rules-s9 = S9 guide-entry-rules-s10 = S10 guide-entry-rules-space-law = Space Law -guide-entry-rules-sl-crime-list = Crime List +guide-entry-rules-sl-crime-list = Law Book guide-entry-rules-sl-controlled-substances = Controlled Substances guide-entry-rules-sl-restricted-gear = Restricted Gear guide-entry-rules-sl-restricted-weapons = Restricted Weapons diff --git a/Resources/Prototypes/Guidebook/rules.yml b/Resources/Prototypes/Guidebook/rules.yml index 162cdba7703..288c093f89e 100644 --- a/Resources/Prototypes/Guidebook/rules.yml +++ b/Resources/Prototypes/Guidebook/rules.yml @@ -12,6 +12,7 @@ - SpaceLawControlledSubstances - SpaceLawRestrictedGear - SpaceLawRestrictedWeapons + - SpaceLawCrimeList - type: guideEntry id: SpaceLawControlledSubstances @@ -30,3 +31,9 @@ name: guide-entry-rules-sl-restricted-weapons priority: 40 text: "/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml" + +- type: guideEntry + id: SpaceLawCrimeList + name: guide-entry-rules-sl-crime-list + priority: 50 + text: "/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml" \ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml index 14f0f46de1b..9d91262ecbc 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLControlledSubstances.xml @@ -1,14 +1,12 @@  + Certain substances are considered controlled due to their hazardous, addictive, or otherwise detrimental nature. These substances are categorized based on their potential for abuse, danger to personnel, or restricted usage outside of authorized roles and departments. Unauthorized possession, production, or distribution of these substances is a violation of NanoTrasen policy. + # Space Law: Controlled Substances - - \[Chemists/Science\] Explosive and pyrotechnic compounds excluding welding fuel contained in welders or welding fuel storage vessels - - \[Science\] Toxins - - \[Medical\] Chloral hydrate, Impedrezene, Ipecac, and Pax - - \[Medical\] Desoxyephedrine and Ephedrine - - \[None\] Mindbreaker toxin - - \[None\] Mute toxin - - \[None\] Nocturine - - \[None\] Norepinephirc acid - - \[None\] Romerol - - \[None\] Space drugs - - \[None\] Stimulants, excluding Desoxyephedrine and Ephedrine + + - [color=#cb0000]\[Chemists/Science\][/color] Includes any compound capable of combustion, explosion, or significant thermal output (excluding welding fuel stored in approved containers or welders for maintenance use.) + - [color=#cb0000]\[Science\][/color] Substances that directly harm or kill biological organisms. Examples include chemical toxins used in research or biohazard testing + - [color=#cb0000]\[Medical\][/color] Includes substances designed to impair cognitive function, induce paralysis, or suppress neural activity (Authorized for use by medical staff only in controlled doses for therapeutic purposes.) + - [color=#cb0000]\[Medical\][/color] Substances that enhance physical or mental performance, increase energy, or reduce fatigue (Restricted to medical use or approved research by medical personnel.) + - [color=#cb0000]\[None\][/color] Substances that alter perception, induce hallucinations, or affect mental stability (Unauthorized possession or distribution is prohibited unless explicitly authorized for research purposes.) + - [color=#cb0000]\[None\][/color] Any chemical compound classified as experimental or restricted under NanoTrasen policy (Includes substances with unknown effects or those tied to unauthorized cult activity or rituals.) diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml new file mode 100644 index 00000000000..ea59844a58d --- /dev/null +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLCrimeList.xml @@ -0,0 +1,1861 @@ + + # Space Law: Crime Listing + Crime codes are grouped by color to represent linked crime categories. Crimes within the same group cannot be stacked. + Suffixes are provided in the Quick Crime Guide to identify these links, with only the highest penalty being applied. + + ## Quick Crime Guide + + + + Code + + + + + §0-XX - Infraction + + + + + §1-XX - Minor + + + + + §2-XX - Moderate + + + + + §3-XX - Major + + + + + §4-XX - Capital + + + + + 01 + + + + + Disorderly Conduct (V) + + + + + Assault (V) + + + + + Aggravated Assault (V) + + + + + Murder (V) + + + + + Prime/Mass Murder (V) + + + + + 02 + + + + + + + + + + Pick-pocketing (T) + + + + + Theft (T) + + + + + Larceny (T) + + + + + Grand Larceny (T) + + + + + 03 + + + + + Superficial Vandalism (S) + + + + + Minor Vandalism (S) + + + + + Vandalism, Major (S) + + + + + Sabotage (S) + + + + + Grand Sabotage (S) + + + + + 04 + + + + + + + + + + Vigilantism + + + + + Conspiracy (C) + + + + + High Conspiracy (C) + + + + + Espionage (C) + + + + + 05 + + + + + Drug Possession + + + + + Illegal Distribution + + + + + Hostile Affiliation (A) + + + + + Hostile Activity (A) + + + + + Enemy Combatant (A) + + + + + 06 + + + + + Disruptive Communications + + + + + Disturbing the Peace + + + + + Possession, Contraband Equipmment (P) + + + + + Possession, Dangerous Contraband (P) + + + + + Possession, Corporate Secrets (P) + + + + + 07 + + + + + + + + + + + + + + + Rioting (R) + + + + + Inciting a Riot (R) + + + + + Subversion of the Chain of Command (R) + + + + + 08 + + + + + Creating a Hazard (N) + + + + + Negligence (N) + + + + + High Negligence (N) + + + + + Manslaughter (V)(N) + + + + + Biological Terror (V)(N) + + + + + 09 + + + + + + + + + + Trespass (T) + + + + + Trespass, Inherently Dangerous Areas (T) + + + + + Trespass, High Security Areas (T) + + + + + + + + + + 10 + + + + + + + + + + Breaking and Entering (T) + + + + + Breaking and Entering, Inherently Dangerous Areas (T) + + + + + Breaking and Entering, High Security Areas (T) + + + + + + + + + + 11 + + + + + + + + + + Discriminatory Language + + + + + Insubordination + + + + + Dereliction (N) + + + + + + + + + + 12 + + + + + + + + + + + + + + + Fraud (F) + + + + + Corporate Fraud (F) + + + + + + + + + + 13 + + + + + + + + + + + + + + + + + + + + Identity Theft + + + + + + + + + + 14 + + + + + + + + + + + + + + + + + + + + Kidnapping + + + + + + + + + + 15 + + + + + Unreported Psionics + + + + + + + + + + Mindguard Act + + + + + Mindbreaking + + + + + + + +
+ + ## Stackable Crimes: Crimes are to be considered ‘stackable’ + in the sense that if you charge someone with two or more different crimes, + you should combine the times you would give them for each crime. + Make sure you do not combine the same category of crimes, indicated by brackets. + + ## Crime Modifiers + Crimes can be influenced by specific modifiers that adjust their severity, sentencing, or context. + These modifiers provide additional nuance to legal proceedings and ensure appropriate handling of offenses; + Based on circumstances such as intent, danger, or external factors. + + + + + Code + + + + + Modifier + + + + + Description + + + + + Notes + + + + + M-01 + + + + + Clear and Present Danger + + + + + Crimes Committed in the interest of saving life, property, or preventing a disaster may have their sentences reduced, voided, or expunged. + + + + + This modifier is primarily to cover situations such as breaking into an area one does not have access to, in the interest of saving someone's life or otherwise with good intent. + + + + + M-02 + + + + + Elevated Sentencing + + + + + The scope of the crime(s), or repetitious behavior committed, warrant the charge be elevated to a higher offense for punishment in increments of one level per instance. + + + + + Primarily intended to be used after a few repetitions. This includes attacking security, heads of staff, or committing multiple instances of the same crime. Crimes charged with this modifier are exempt from punishment outside of confinement. + + + + + M-03 + + + + + Self Defense + + + + + Actions taken to defend ones self from an assailant may have sentences reduced, voided, or expunged if the officer(s) involved deem that use of force reasonable. + + + + + This isn't a school. You can punch back, but don't be out of scale. + + + + + M-04 + + + + + Non Compos Mentis + + + + + Those of unstable mind should be referred to medical treatment or, if required, forced cryogenic storage. + + + + + English: Insanity. This is intended to be applied to IC hypnosis, mind control, or otherwise actual incapacitation. IC 'insanity' is not an excuse for high crimes. + + + + + M-05 + + + + + Griseo Maris + + + + + Coordinated behavior by those with no clear assigned duty which interrupts the normal function of any one department may lead to sentencing for any crimes committed during such actions to be increased in severity by one level for punishment. + + + + + English: Grey Tide. Go be useful you fucks. + + + + + M-06 + + + + + Resisting Arrest + + + + + Knowingly resisting attempts at legal detention by members of the security team. It is advised that these individuals should have their sentences increased the recommended 20% of total duration. + + + + + Running will only increase your sentence. + + + + + M-07 + + + + + Escaped Prisoner + + + + + Someone who has escaped their cell should be recaptured and returned to the brig. Their timer should be reset to the full length of the original sentence. The sentence can be bumped by up to 50% with this. + + + + + Escaping will only delay the inevitable. + + + + + M-08 + + + + + Attempted crime + + + + + Anyone that tries to commit a crime but fails to achieve it, is to be charged under the relevant crime while recording that it was an attempt. A crime being an attempt can be downgraded to a lower offense for punishment in increments of one level per instance. This however does not bind in the case of repeated offender. + + + + + If a fact is too ambiguous, in that it is possible to both interpret it as the beginning of a crime and as a legal endeavor, then Security cannot charge with attempted crime. + + +
+ + ## Infractions + - The maximum sentence per Infraction is 2 minutes + - First time offenders should only receive a warning and be logged, but it is situationally dependant + - Also covers minor misdemeanors + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 0-1 + + + + + Disorderly Conduct (V) + + + + + To conduct ones self in a way unsuitable for the retention of one’s position. + + + + + Minor disruptive behavior that isn't otherwise illegal, such as drunkenly harassing a crew member. + + + + + 0-3 + + + + + Superficial Vandalism (S) + + + + + To deface the station or property of another individual. + + + + + Minor damage that can be repaired with space cleaner or other cosmetic only damage. + + + + + 0-5 + + + + + Drug Possession + + + + + The possession of illegal drugs in quantities appropriate for personal use. + + + + + A pill or two of drugs is reasonable for recreational use, anything more is probably better charged as distribution. + + + + + 0-6 + + + + + Disruptive Communications + + + + + To knowingly disrupt or needlessly populate a radio frequency with the intent to be a nuisance to users of that frequency. + + + + + Radio spam bad. I'm looking at you, circuit makers. + + + + + 0-8 + + + + + Creating a Hazard (N) + + + + + To create a situation which may lead to the harm of others during normal operation in that department. + + + + + Minor unsafe behavior can also be charged under this crime. + + + + + 0-15 + + + + + Unreported Psionics + + + + + Knowingly failing to report the possession or awakening of psionic abilities to the Mantis Authority. + + + + + Transparency with the Mantis is crucial for ensuring station safety and the proper regulation of psionic capabilities. + This act applies to all sophonts, without exception for rank or status. + Non-compliance may result in mindbreaking or designation as a threat to station security. + Failure to report potentially lethal psionics may result in immediate mindbreaking at the discretion of Security and the Mantis Authority and should be charged under 2XX Code as a Moderate Crime. + + +
+ + # Felonies + - The maximum sentence per Felony is 4 minutes + - Minor crimes encompass low-severity offenses that typically do not pose a significant threat to station security or personnel. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 1-01 + + + + + Assault (V) + + + + + To use physical force against someone without the apparent intent to harm them. + + + + + This covers minor criminal uses of force, Without intent to injure. That would be Aggravated Assault, or possibly a flavor of Murder. + + + + + 1-02 + + + + + Pick-pocketing (T) + + + + + To steal items belonging another person. + + + + + Small or easily replaceable items should be charged with this, otherwise consider a higher class of theft. + + + + + 1-03 + + + + + Minor Vandalism (S) + + + + + To damage, destroy, or permanently deface non-critical furniture, vendors, or personal property. + + + + + Large amounts of irreparable damage should be charged with Major Vandalism, Damage to critical infrastructure may be a form of Sabotage. + + + + + 1-04 + + + + + Vigilantism + + + + + To perform the responsibilities and duties of the security department without approval or due cause to act. + + + + + Valid hunting bad. Let the red shirts do their job. + + + + + 1-05 + + + + + Illegal Distribution + + + + + The possession of dangerous or illegal drugs/equipment in a quantity greater than that which is reasonable for personal consumption. + + + + + You should probably try to determine intent from additional evidence before charging someone with this. + + + + + 1-06 + + + + + Disturbing the Peace + + + + + To knowingly organize a movement which disrupts the normal operations of a department, or being a public disturbance. + + + + + Establishing a peaceful strike or otherwise disrupting standard department order without attachment to criminal entities. In the case of criminal attachment, refer to Rioting or Hostile Activity. + + + + + 1-08 + + + + + Negligence (N) + + + + + To be negligent in one's duty to an extent that it may cause harm, illness, or other negative effect, to another. + + + + + This is the charge for the doctor that accidentally pumps pentetic acid into an oozeling, or a scientist who accidentally floods toxins with room temperature CO2 or N2O. + + + + + 1-09 + + + + + Trespass (T) + + + + + To be in an area which a person has either not purposefully been admitted to, does not have access, or has been asked to leave by someone who has access to that area. + + + + + Being in an area, or having access to an area is not permission to that area. This crime covers non forcible entry into areas, such as following someone through a door. + + + + + 1-10 + + + + + Breaking and Entering (T) + + + + + To trespass into an area using a method of forcible entry. + + + + + This is a variant of trespass, but instead of tailgating someone or gaining access the individual had to break or disable something to enter, such as hacking an airlock. + + + + + 1-11 + + + + + Discriminatory Language + + + + + To use language which demeans, generalizes, or otherwise de-personafies the individual at which it is targeted. This counts towards all species. + + + + + Note that actual, OOC racism is not acceptable under the rules. + + +
+ + ## Moderate Crimes + - The maximum sentence per Moderate Crime is 7 minutes + - Moderate crimes involve more serious offenses that can disrupt station operations or endanger personnel, requiring stricter enforcement. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 2-01 + + + + + Aggravated Assault (V) + + + + + To take physical action against a person with intent to grievously harm, but not to kill. + + + + + This covers criminal uses of force, with intent to seriously injure, but no intent to kill. That would be some variation of Murder. This law also constitutes unlawful mindbreaking. + + + + + 2-02 + + + + + Theft (T) + + + + + To steal equipment or items from a workplace, or items of high value from one's person. + + + + + This includes things like insulated gloves, crew pinpointers, normal ID cards, or personal items. + + + + + 2-03 + + + + + Vandalism, Major (S) + + + + + To destroy or damage non-critical furniture, vendors, or personal property in a manor that can not be repaired. + + + + + Spray painting all the lights red and wrecking tables in the bar is fun and all, but it makes it hard to figure out where the fire is, or to have a polite sip of tea. + + + + + 2-04 + + + + + Conspiracy (C) + + + + + To knowingly work with another person in the interest of committing an illegal action. + + + + + It's important to note that an unwitting accomplice is not the same as a conspirator. Timer should be identical to the perpetrator that person conspired with. + + + + + 2-05 + + + + + Hostile Affiliation (A) + + + + + To knowingly act as a recruiter, representative, messenger, ally, benefactor, or associate of an organization criminally opposed to the Corporation or the Biesel Republic. + + + + + Syndicate agents, such as traitors, will generally fall under this charge rather than "Enemy Combatant" (4-05) unless violent actions are confirmed. + + + + + 2-06 + + + + + Possession, Contraband Equipment (P) + + + + + To possess equipment not approved for use or production aboard Nanotrasen stations. This includes equipment produced by The Syndicate, Wizard Federation, or any other hostile organization as defined within Code 405. + + + + + Reminder: Contraband equipment should be stored in evidence as per SOP. It is not candy to hand out to Security. + + + + + 2-07 + + + + + Rioting (R) + + + + + To act as a member in a group which collectively commits acts of vandalism, or other felony crimes. + + + + + A riot typically constitutes five or more people acting in a coordinated effort. This can however vary on the size and circumstances of the station. + + + + + 2-08 + + + + + High Negligence (N) + + + + + To be negligent in one's duty to an extent that it may cause harm to multiple individuals, a department, or in a manor which directly leads to a serious injury of another person which requires emergency medical treatment. + + + + + Virologists releasing Spanish flu on accident, or scientists that flood science/toxins with plasma get charged here. It can also include engineers who delaminate the SM or wander around with highly radioactive material. + + + + + 2-09 + + + + + Trespass, Inherently Dangerous Areas (T) + + + + + Trespassing in an area which may lead to the injury of self, or others. This also includes areas like security or general command areas which do not contain any sensitive items or consoles. + + + + + Engineering spaces specifically related to an engine such as turbine, super-matter room/chamber, or toxins lab count here. This list is not exhaustive, but should not be extorted to increase sentencing. + + + + + 2-10 + + + + + Breaking and Entering, Inherently Dangerous Areas (T) + + + + + To trespass into an area which may lead to the injury of self or others using forcible entry. Refer to 209 for area restrictions. + + + + + Generally this will lead to injury. See breaking and entering, and apply any of the areas for Trespassing to dangerous areas. + + + + + 2-11 + + + + + Insubordination + + + + + To knowingly disobey a lawful order from a superior, or obstructing security from doing it's job. + + + + + Obey your heads of staff if they instruct you to do something within the scope of your job. This crime can normally be accompanied by a demotion at the discretion of the relevant head of staff. + + + + + 2-12 + + + + + Fraud (F) + + + + + To misrepresent ones intention in the interest of gaining property or money from another individual. + + + + + Lying to someone about a cargo bounty, for example. Be honest with your intentions. Don't stretch this, gaining items which normally wouldn't be considered theft likely aren't worth charging under fraud. + + + + + 2-15 + + + + + Mindguard Act + + + + + Prohibits harmful misuse of psionics, causing danger, trauma, or detrimental alterations to others or the station. + + + + + Individuals convicted under this act must wear anti-psionic helmet for the full duration fo their sentence, removing it is akin to breaking out of prison. + Sophonts charged under the Mindguard Act are to be evaluated as potential candidates for mindbreaking or sacrifical use in the events of code white emergency. + Cases involving the misuse of lethal psionic powers or familiars fall under Code 3XX and should be treated as a Major Offense. + + +
+ + ## Major Crimes + - The maximum sentence per Major Crime is 10 minutes + - Major crimes are severe offenses that pose significant threats to station security, personnel safety, or corporate interests. These crimes warrant serious repercussions and careful documentation. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 3-01 + + + + + Murder (V) + + + + + To purposefully kill someone. + + + + + Please note, that negligence is covered under Code 208 + + + + + 3-02 + + + + + Larceny (T) + + + + + To steal rare, extraordinarily expensive (Items of greater than 1000 credit value), or restricted equipment from secure areas or one's person. This also constitutes kidnapping. + + + + + This does not include theft of people's ID cards, which are likely to hold a value of more than 1000 credits. + It does however cover ID cards which could lead into high security areas, such as the Captain's, Head of Personnel's, or Head of Security's. + + + + + 3-03 + + + + + Sabotage (S) + + + + + To destroy station assets or resources critical to normal or emergency station procedures, or cause sections of the station to become uninhabitable. + + + + + Spacing areas, tampering with fire alarms, pipes, wiring, disabling the emitters on the Supermatter and other general station assets. This includes unauthorized construction. + + + + + 3-04 + + + + + High Conspiracy (C) + + + + + To knowingly work with another person in the interest of committing a major or greater crime. + + + + + Generally this will be shown through communications records or other means of surveillance. The most basic proof of course is capturing the two together in the act. + + + + + 3-05 + + + + + Hostile Activity (A) + + + + + To knowingly commit an act which is in direct opposition to the interests of Nanotrasen, Or to directly assist a known enemy of the corporation. + + + + + Impeding security's ability to detain a dangerous convict, or walling off the security department or other critical areas. + + + + + 3-06 + + + + + Posession, Dangerous Contraband (P) + + + + + To possess restricted or illegal equipment which has a primary purpose of causing harm to others, or large amounts of destruction. + + + + + Energy daggers, swords, guns (without a weapons permit), and so on count here. And no, the bartender can not have a captured LMG because they have a weapon permit. Again, security, those are not toys, put them in evidence. + + + + + 3-07 + + + + + Inciting a Riot (R) + + + + + To perform actions in the interest of causing large amounts of unrest up to and including rioting. + + + + + This is for the ring leader in any insurrection or riot. Prisoners may have their radios removed and be contained in areas which are not visible to the general populace. + + + + + 3-08 + + + + + Manslaughter (V) (N) + + + + + To unintentionally kill someone through negligent, but not malicious, actions. + + + + + They didn't mean to do it but someone's dead now. It's important to remember that you may want them to fix what they've done before throwing them in the brig, in the example of medical malpractice. + + + + + 3-09 + + + + + Trespass, High Security Areas (T) + + + + + Trespassing in any of the following without appropriate permission or access: Command areas, Personal offices, Weapons storage, or other high security areas. + + + + + The clown is not legally allowed to trail the captain into the bridge unless it is for a prank according to their Standard Operating Procedures. + + + + + 3-10 + + + + + Breaking and Entering, High Security Areas (T) + + + + + To commit trespassing into a secure area as defined in Code 309 using forcible entry. + + + + + Please note, paramedics may have to commit breaking and entry in order to perform their duties. + + + + + 3-11 + + + + + Dereliction (N) + + + + + To willfully abandon an obligation that is critical to the station's continued operation. + + + + + Engineer didn't set up power? Doctor's doing botany and not treating the five corpses in med-bay? Miners not providing materials for station objectives? That all goes here. + + + + + 3-12 + + + + + Corporate Fraud (F) + + + + + To misrepresent one's intention in the interest of gaining property or money from Nanotrasen, or to gain or give property or money from Nanotrasen without proper authorization. + + + + + If you receive money to order something for a department don't pocket that money. + + + + + 3-13 + + + + + Identity Theft + + + + + To assume the identity of another individual. + + + + + This can include utilizing someone else PDA in order to impersonate them. + + + + + 3-14 + + + + + Kidnapping + + + + + To cause a intellectual being's unlawful confinement or restriction of free movement against their will, This act can involve the use of force, threats, or deception. + + + + + This can include the intent to use the victim as a ransom, as a shield or hostage, or inflict harm. or otherwise exploit them. + + + + + 3-15 + + + + + Mindbreaking + + + + + To unlawfully and maliciously rid a psionic sophont of their powers. + + + + + This law does not apply to lawful mindbreaking of individuals misusing their psionics or having inherently dangerous abilities. + In cases where unlawful mindbreaking results in the loss of a soul, rendering the individual a husked body, this act shall be escalated to 4XX Capital Punishment, as the sophont has been unjustly and irreversibly deprived of all life. + + +
+ + ## Capital Punishments + - The sentences given for Capital Offenses are permanent imprisonment or execution + - Charging someone under Capital Punishments needs to be authorized by Warden, Head of Security or Captain + - Capital crimes are the gravest offenses that represent an existential threat to the station, its personnel, or NanoTrasen's corporate sovereignty. These acts demand the most severe penalties, including permanent imprisonment or execution. + + + + Code + + + + + Crime + + + + + Description + + + + + Notes + + + + + 4-01 + + + + + Prime/Mass Murder (V) + + + + + To commit the act of murder, with clear intent to kill, and clear intent or to have materially taken steps to prevent the revival of the victim + + + + + This includes debraining a corpse with purpose other than cloning. + + + + + 4-02 + + + + + Grand Larceny (T) + + + + + To steal inherently dangerous items from their storage, one's person, or other such methods acquire through illicit means. + + + + + This includes items such as HoS's gun, RD's teleporter, SM sliver, Nuke disk and other High Risk items. + + + + + 4-03 + + + + + Grand Sabotage (S) + + + + + To destroy or modify station assets or equipment without which the station may collapse or otherwise become uninhabitable. + + + + + This may include tampering with station records, purposefully delaminating the SM, destroying the SMES power storage equipment, plasma flooding, or super-heating distro. + + + + + 4-04 + + + + + Espionage (C) + + + + + To knowingly betray critical information to enemies of the station. + + + + + Telling nukies where the disk or a pinpointer is would wind up here. Please note, knowingly assisting antagonists as a non-antag may violate server rules. + + + + + 4-05 + + + + + Enemy Combatant (A) + + + + + To be confirmed without a shadow of a doubt as an active member of an organization that is in violent opposition to the Corporation or the Biesel Republic. + + + + + Membership in an opposition organization without further actions should be charged under Code 2-05. This is a LAST RESORT, and a trial must be held before convicting personnel who were at any time listed on the crew manifest. + + + + + 4-06 + + + + + Possession, Corporate Secrets (P) + + + + + To possess secret documentation or high density tamper-resistant data storage devices (Blackboxes) from any organization without authorization by Nanotrasen. + + + + + Explorers and miners returning with secret documents or black boxes are not committing a crime, as retrieval as such can fall under their normal duties. The greyshirt that just ran off with the black box or documents? That's a criminal. + + + + + 4-07 + + + + + Subversion of the Chain of Command (R) + + + + + Disrupting the chain of command via either murder of a commanding officer or illegally declaring oneself to be a commanding officer. + + + + + Security officers are not considered to be commanding officers. Heads of staff, captains, Centcom Commanders and admirals are. This does not include replacement of heads of staff with solid reasoning backing it. (Derelection, Negligence, unfit for Job) + + + + + 4-08 + + + + + Biological Terror (V)(N) + + + + + To knowingly release, cause, or otherwise cause the station to become affected by a disease, plant, or other biological form which may spread unconstrained and or cause serious physical harm. + + + + + Don't immediately lynch the virologist, but an investigation might be a good idea. + + +
+
\ No newline at end of file diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml index ce804009a18..e9a9ef12823 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedGear.xml @@ -1,21 +1,24 @@  + The following outlines the categories of restricted gear aboard NanoTrasen property. Unauthorized possession or use of these items is considered a violation of corporate regulations and may be met with disciplinary action. Access and permissions are clearly defined based on job roles. + # Space Law: Restricted Gear - - \[ERT/Central Command\] ERT and central command clothing - - \[Command\] Command clothing - - \[Security\] Security clothing - - \[Security\] Less than lethal and non-lethal weapons, excluding disablers and beanbag shotguns - - \[Security/Command\] Disablers - - \[Security/Bartender\] Beanbag shotguns - - \[Security\] Flash technology, excluding handheld flashes - - \[Security/Science/Command\] Handheld flashes - - \[Security\] Helmets and shields - - \[Security/Command/Bartender\] Protective vests and chest rigs - - \[Security/Command\] Restraining gear - - \[Security/Command\] Security HUDs - - \[Engineering\] Engineering goggles - - \[None\] Improvised less lethal and non-lethal weaponry - - \[None\] Unauthorized PDA software - - \[None\] Syndicate clothing - - \[None\] Syndicate equipment, excluding communication equipment - - \[Security\] Syndicate communication equipment equipment + + - [color=#cb0000]\[ERT/Central Command\][/color] Equipment and clothing exclusive to Emergency Response Teams (ERT) or Central Command personnel + - [color=#cb0000]\[Command\][/color] Command-level clothing and equipment, including headsets with encrypted channels or access overlays + - [color=#cb0000]\[Security\][/color] Security clothing, protective gear, and equipment + - [color=#cb0000]\[Security\][/color] Less-than-lethal and non-lethal weaponry, excluding general-purpose disablers and beanbag shotguns + - [color=#cb0000]\[Security\][/color] Flash technology (e.g., flashbang grenades, flash projectors), excluding handheld flashes + - [color=#cb0000]\[Security\][/color] Helmets, riot shields, and ballistic shields + - [color=#cb0000]\[Security\][/color] Security HUDs and restraining gear (e.g., handcuffs) + - [color=#cb0000]\[Security/Command\][/color] Disablers and restraining gear used by authorized personnel + - [color=#cb0000]\[Security/Command\][/color] Security HUDs + - [color=#cb0000]\[Security/Command/Bartender\][/color] Protective vests and chest rigs designed to mitigate damage from projectiles or blunt force + - [color=#cb0000]\[Security/Bartender\][/color] Beanbag shotguns (Bartenders may only use them within station bar premises) + - [color=#cb0000]\[Security/Science/Command\][/color] Handheld flashes + - [color=#cb0000]\[Engineering\][/color] Engineering goggles, and Rapid Construction Devices + - [color=#cb0000]\[None\][/color] Unauthorized PDA software + - [color=#cb0000]\[None\][/color] Ammunition or explosives not issued by NanoTrasen + - [color=#cb0000]\[None\][/color] Body armor or tactical suits unauthorized for use by crew roles + - [color=#cb0000]\[None\][/color] Communication equipment designed to intercept, decrypt, or bypass corporate channels + - [color=#cb0000]\[None\][/color] Terrorist paraphernalia, including items with clear indicators of association with hostile organizations diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml index c1d8ff3b027..edbd88a5e6f 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SLRestrictedWeapons.xml @@ -1,11 +1,15 @@  -# Space Law: Restricted Weapons -- \[Security\] Lethal firearms, excluding syndicate firearms, proto kinetic accelerators, glaives, daggers, crushers and the antique laser gun -- \[Security/Salvage\] Proto kinetic accelerators, glaives, daggers, and crushers -- \[Security/Command\] Antique laser gun -- \[None\] Syndicate weapons -- \[None\] Swords -- \[None\] Improvised weaponry, including baseball bats -- \[None\] Lethal implants -- \[None\] Other lethal weapons + The following outlines the restrictions and allowances for weapon possession and usage on NanoTrasen property. Weapon categories and authorized users are clearly defined to maintain order and security aboard the station. + + # Space Law: Restricted Weapons + +- [color=#cb0000]\[Security\][/color] Lethal firearms (excluding unmarked weapons, specialty tools like proto-kinetic accelerators) +- [color=#cb0000]\[Security/Salvage\][/color] Specialty mining tools such as proto-kinetic accelerators, glaives, daggers, and crushers. (Salvage must use these tools off-station or in authorized operations only) +- [color=#cb0000]\[Security/Command\][/color] Command-approved antique weapons (e.g., antique laser gun) +- [color=#cb0000]\[Bartender\][/color] Civilian firearms, limited to less-than-lethal ammunition only +- [color=#cb0000]\[None\][/color] Unlicensed firearms +- [color=#cb0000]\[None\][/color] Exotic weapons (e.g., swords) +- [color=#cb0000]\[None\][/color] Improvised weapons (e.g., baseball bats, pipe tools) +- [color=#cb0000]\[None\][/color] Lethal implants +- [color=#cb0000]\[None\][/color] Other lethal weapons not listed above diff --git a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml index f2b913a1714..7366862fc1c 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/SpaceLaw/SpaceLaw.xml @@ -3,17 +3,18 @@ On Space Station 14, stations operate under abbreviated space law. All crew, passengers, and visitors aboard the station are expected to follow these laws. Foreign invaders, such as nuclear operatives, ninjas, and pirates, are not protected under space law. Traitors are not foreign invaders so are usually protected by space law. + Exceptions are made in cases of unnatural phenomena similar to changelings and heretics, where their humanity is put to question. Space Law is not the server rules, but some rules reference Space Law and require it to be followed by certain people or to some degree. ## Treatment Of Prisoners Prisoners still have certain rights that must be upheld by law enforcement: - - Prisoners must be granted adequate medical care. - - Prisoners must be allowed access to basic communications equipment (Radios) so long as they are not abused. - - Prisoners must be granted clothing, food, water, shelter and safety. If the brig is no longer safe, confinement must be established in another location. - - Prisoners must be given access to legal counsel during an interrogation if requested and available. - - Prisoners must be given their shift mandated PDA after confinement has finished, unless there is solid proof of PDA tampering. In case of tampering, the PDA is to be secured and replaced with a new unit. - - Prisoners must be granted freedom of movement, and should not be restrained with handcuffs or other devices after incarceration unless there is an undue risk to life and limb. Similarly, any prisoners held for permanent confinement should be held in the communal brig, and should not be confined to a solitary cell unless they pose a risk to life and limb. + - Prisoners must be granted adequate medical care. + - Prisoners must be allowed access to basic communications equipment (Radios) so long as they are not abused. + - Prisoners must be granted clothing, food, water, shelter and safety. If the brig is no longer safe, confinement must be established in another location. + - Prisoners must be given access to legal counsel during an interrogation if requested and available. + - Prisoners must be given their shift mandated PDA after confinement has finished, unless there is solid proof of PDA tampering. In case of tampering, the PDA is to be secured and replaced with a new unit. + - Prisoners must be granted freedom of movement, and should not be restrained with handcuffs or other devices after incarceration unless there is an undue risk to life and limb. Similarly, any prisoners held for permanent confinement should be held in the communal brig, and should not be confined to a solitary cell unless they pose a risk to life and limb. ## Search and Seizure A personnel search is a seizure of the objects in a person's backpack, hands, coat, belt, and pockets. If any contraband is found during a search, the officer may choose to further the search into a detainment or simply confiscate the restricted items. After the search is conducted, all legal items are to be returned to the person. A crewmate may legally decline any search conducted without probable cause or a warrant while the alert level is green. It should be noted that if the alert level is blue or above, all personnel searches are legal. @@ -39,29 +40,42 @@ [color=#a4885c]Stackable Crimes:[/color] Crimes are to be considered 'stackable' in the sense that if you charge someone with two or more different crimes, you should combine the times you would give them for each crime. Linked crimes, shown in matching colors on the Quick Crime Guide, can not be stacked and instead override each other, you should pick the highest crime that matches the case. - - Example: A suspect has committed a 2-01 (possession of restricted gear) and a 3-01 (possession of restricted weapons). The maximum sentence here would be 10 minutes due to them being linked crimes, and 3-01 is the greater crime. - - Example 2: A suspect commits a 3-04 (Secure trespassing) and a 3-06 (manslaughter). Those crimes stack since they are not linked crimes. You could sentence for a maximum of 20 minutes, but context matters heavily, and maximum sentences should only be used for the worst offenders. + - Example: A suspect has committed a 2-01 (possession of restricted gear) and a 3-01 (possession of restricted weapons). The maximum sentence here would be 10 minutes due to them being linked crimes, and 3-01 is the greater crime. + - Example 2: A suspect commits a 3-04 (Secure trespassing) and a 3-06 (manslaughter). Those crimes stack since they are not linked crimes. You could sentence for a maximum of 20 minutes, but context matters heavily, and maximum sentences should only be used for the worst offenders. [color=#a4885c]Repeater Offenders:[/color] Repeated crimes are when someone is released for a crime and then goes to commit the same crime within the same shift. Repeated crimes can be charged with tacked-on time; first repeat: 3:00, second repeat: 6:00, third repeat: permanent confinement. It should be noted each tacked-on time is directly linked to one type of crime, so for example, if someone does their first repeat of trespass and petty theft, you can charge them with an extra 6 minutes. [color=#a4885c]Accessory, Attempting, And Intention:[/color] If someone intentionally, knowingly and substantially assists someone in enacting a crime they can be charged with the relevant crimes, such as an engineer giving someone tools, who says they are going to break into an area. Same goes for a clear and solid attempt at a crime, or a person who shows clear intent to act out a crime, such as a syndicate nuclear operative arming a nuke but getting arrested before it goes off, they can still be charged with terrorism. Does not apply to crimes that have an attempted listing already, like attempted murder. + ## Categories of Crime + Space Law divides offenses into several categories based on severity and nature. These include: + - [color=yellow][bold]Minor Infractions[/bold][/color]: Non-critical disruptions or low-impact crimes. + - [color=orange][bold]Moderate Crimes[/bold][/color]: Actions with moderate consequences, affecting individuals or station operations. + - [color=red][bold]Major Crimes[/bold][/color]: Severe breaches of safety, security, or operational integrity. + - [color=purple][bold]Capital Crimes[/bold][/color]: Offenses warranting the most serious consequences, including potential execution or permanent confinement. + ## Normal Punishments - - [color=#a4885c]Warning:[/color] For minor crimes, fix the issue, then warn the person not to attempt the crime again. If they still proceed to do it at a later date, a brig time may be better. - - [color=#a4885c]Confinement:[/color] The typical punishment, being confined in a cell for a temporary amount of time according to the crimes. - - [color=#a4885c]Demotion:[/color] Entails removing all departmental gear they have on their person and revoking the involved department access off their ID. This requires the captain's or involved department head's approval. Demotions should only be issued if the person pose a threat to their own department or are in a position where they have/can abuse their job's gear to commit further crimes. + - [color=#a4885c]Warning:[/color] For minor crimes, fix the issue, then warn the person not to attempt the crime again. If they still proceed to do it at a later date, a brig time may be better. + - [color=#a4885c]Confinement:[/color] The typical punishment, being confined in a cell for a temporary amount of time according to the crimes. + - [color=#a4885c]Demotion:[/color] Entails removing all departmental gear they have on their person and revoking the involved department access off their ID. This requires the captain's or involved department head's approval. Demotions should only be issued if the person pose a threat to their own department or are in a position where they have/can abuse their job's gear to commit further crimes. ## Major Punishments [color=#a4885c]Permanent Confinement:[/color] Being held in the permanent brig for the entire duration of the shift. A person is eligible for permanent confinement if their timed sentence would exceed 15 minutes. Any persons subject to this punishment are required to be transported in cuffs to CentComm at the end of the shift. A permanent prisoner can not be deprived of anything covered by the section "Treatment Of Prisoners". [color=#a4885c]Execution:[/color] A humane way of dealing with extremely unruly crewmates. A prisoner who has been given the death sentence may pick how they wish to be killed, common methods are firing line, lethal injection, exile, and high voltage electrocution. Another alternate method of "execution" is the process of placing a staff's mind into a borg, this is allowed so long as it is lawful. Execution can only be issued with the captain's or acting captain's approval; if the HoS is acting captain or there is no acting captain, all heads of staff are to hold a vote on the matter. + ## Amendments and Exceptions + Space Law can be amended or overridden under specific circumstances: + - Emergency Situations: Command staff may implement temporary measures to restore order. + - Central Command Overrides: Directives from Central Command supersede Space Law where applicable. + - Executive Discretion: Captains and Heads of Staff have limited authority to interpret and enforce laws based on context. + ## Restricted Items Items in the lists are preceded by an indication of which department or job is legally allowed to use or possess the item on most stations. The station captain may modify these lists as they see fit so long as they exercise due care and provide reasonable notification to the station. Members of command who oversee a department that is permitted to use a restricted item may issue permits to specific people outside of their department to use those items. "None" indicates that there are no departments or roles authorized to use or possess the item. - - [textlink="List of Controlled Substances" link="SpaceLawControlledSubstances"] - - [textlink="List of Restricted Gear" link="SpaceLawRestrictedGear"] - - [textlink="List of Restricted Weapons" link="SpaceLawRestrictedWeapons"] + - [textlink="List of Controlled Substances" link="SpaceLawControlledSubstances"] + - [textlink="List of Restricted Gear" link="SpaceLawRestrictedGear"] + - [textlink="List of Restricted Weapons" link="SpaceLawRestrictedWeapons"] ## Crime Listing - - [textlink="Crime Listing" link="SpaceLawCrimeList"] + - [textlink="Crime Listing" link="SpaceLawCrimeList"]