From c1de95f2e4f150d7dfeca36b39e0c6ddd71c3c8a Mon Sep 17 00:00:00 2001 From: Alberyk Date: Thu, 4 Jul 2019 11:07:18 -0300 Subject: [PATCH] Updates the infactions in the security processing console (#6624) This pr updates the infractions in the console in game, bringing them up to date with the wiki. --- code/modules/law/laws/high_severity.dm | 7 +++++ code/modules/law/laws/low_severity.dm | 35 ++++++++++++++------- code/modules/law/laws/med_severity.dm | 16 ++++++++++ html/changelogs/alberyk-youbetraythelaw.yml | 6 ++++ 4 files changed, 52 insertions(+), 12 deletions(-) create mode 100644 html/changelogs/alberyk-youbetraythelaw.yml diff --git a/code/modules/law/laws/high_severity.dm b/code/modules/law/laws/high_severity.dm index 70b31a5a5d9..8599e46c98d 100644 --- a/code/modules/law/laws/high_severity.dm +++ b/code/modules/law/laws/high_severity.dm @@ -77,3 +77,10 @@ min_brig_time = 30 max_brig_time = 90 +/datum/law/high_severity/automacide + name = "i310 - Automacide" + desc = "To willfully, unlawfully and permanently terminate a free positronic intelligence." + id = "i310" + + min_brig_time = 20 + max_brig_time = 90 diff --git a/code/modules/law/laws/low_severity.dm b/code/modules/law/laws/low_severity.dm index a73bbc7fa26..91944a6ac7c 100644 --- a/code/modules/law/laws/low_severity.dm +++ b/code/modules/law/laws/low_severity.dm @@ -56,17 +56,6 @@ min_fine = 50 max_fine = 300 -/datum/law/low_severity/suspicious_conduct - name = "i106 - Suspicious Conduct" - desc = " To possess a suspiciously wide skill set not indicated in employee record, wielding dangerous weapons near other staff, extensive inquiring about critical areas, or stalking other employees." - id = "i106" - - min_brig_time = 2 - max_brig_time = 15 - - min_fine = 50 - max_fine = 250 - /datum/law/low_severity/radio_misuse name = "i107 - Misuse of Public Radio Channels" desc = "To continually broadcast unimportant, untrue, or insignificant messages on the public radio frequency." @@ -186,4 +175,26 @@ max_brig_time = 10 min_fine = 50 - max_fine = 400 \ No newline at end of file + max_fine = 400 + +/datum/law/low_severity/violation_privacy + name = "i118 - Violation of Privacy Laws" + desc = "To intentionally leak private aspects of employee records or financial account information to unauthorized personnel." + id = "i118" + + min_brig_time = 3 + max_brig_time = 10 + + min_fine = 50 + max_fine = 550 + +/datum/law/low_severity/illegal_search + name = "i119 - Illegal Search" + desc = "To preform a search of an employee or workplace without a search warrant, clearance, or probable cause." + id = "i119" + + min_brig_time = 3 + max_brig_time = 10 + + min_fine = 50 + max_fine = 550 \ No newline at end of file diff --git a/code/modules/law/laws/med_severity.dm b/code/modules/law/laws/med_severity.dm index 7a887aac9ba..d1c27cae0cb 100644 --- a/code/modules/law/laws/med_severity.dm +++ b/code/modules/law/laws/med_severity.dm @@ -172,3 +172,19 @@ min_brig_time = 15 max_brig_time = 20 + +/datum/law/med_severity/unregistered_ipc + name = "i222 - Unregistered Positronic Machine" + desc = "To function as an untagged positronic machine within the Republic of Biesel, or to function as a positronic machine with a tag that has been tampered with or rendered inoperable." + id = "i222" + + min_brig_time = 10 + max_brig_time = 30 + +/datum/law/med_severity/kidnapping_ipc + name = "i223 - Kidnapping of Free Intelligence" + desc = "To take away or transport a free positronic intelligence against its will." + id = "i223" + + min_brig_time = 15 + max_brig_time = 25 \ No newline at end of file diff --git a/html/changelogs/alberyk-youbetraythelaw.yml b/html/changelogs/alberyk-youbetraythelaw.yml new file mode 100644 index 00000000000..b93f03488d9 --- /dev/null +++ b/html/changelogs/alberyk-youbetraythelaw.yml @@ -0,0 +1,6 @@ +author: Alberyk + +delete-after: True + +changes: + - rscadd: "Updated the list of infractions in the security processing console to match corporate regulations."