diff --git a/code/__DEFINES/paperwork.dm b/code/__DEFINES/paperwork.dm new file mode 100644 index 000000000000..8703f1be9bfc --- /dev/null +++ b/code/__DEFINES/paperwork.dm @@ -0,0 +1,7 @@ +#define PAPER_CATEGORY_USCM "USCM" +#define PAPER_CATEGORY_PROVOST "Provost" +#define PAPER_CATEGORY_WEYYU "Weyland Yutani" +#define PAPER_CATEGORY_UPP "UPP" +#define PAPER_CATEGORY_CMB "CMB" +#define PAPER_CATEGORY_MP "Military Police" +#define PAPER_CATEGORY_LIAISON "WY Liaison" diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index ac6de251ab45..eee97c0e2ec0 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -477,7 +477,7 @@ var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) var/obj/item/paper/P = new /obj/item/paper( src.loc ) P.name = text("Scan: [], []",record.fields["name"],worldtime2text()) - P.info += text("

Official Weyland-Yutani Document
Scan Record

[]

\n
",record.fields["name"]) + P.info += text("

Official Weyland-Yutani Document
Scan Record

[]

\n
",record.fields["name"]) for(var/datum/data/record/R as anything in GLOB.data_core.medical) if (R.fields["name"] == record.fields["name"]) if(R.fields["last_scan_time"] && R.fields["last_scan_result"]) diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm index 85d08641bfdf..f9734a04bcc6 100644 --- a/code/game/machinery/vending/vending_types.dm +++ b/code/game/machinery/vending/vending_types.dm @@ -442,7 +442,7 @@ /obj/item/tool/pen = 10, /obj/item/tool/pen/blue = 10, /obj/item/tool/pen/red = 10, - /obj/item/tool/pen/fountain = 3, + /obj/item/tool/pen/multicolor/fountain = 3, /obj/item/storage/fancy/cigarettes/trading_card = 20, /obj/item/storage/fancy/trading_card = 20, /obj/item/toy/trading_card = 50, @@ -473,7 +473,7 @@ /obj/item/tool/pen = 2, /obj/item/tool/pen/blue = 2, /obj/item/tool/pen/red = 2, - /obj/item/tool/pen/fountain = 30, + /obj/item/tool/pen/multicolor/fountain = 30, /obj/item/storage/fancy/cigarettes/trading_card = 30, /obj/item/storage/fancy/trading_card = 20, /obj/item/toy/trading_card = 5, diff --git a/code/game/objects/effects/spawners/random.dm b/code/game/objects/effects/spawners/random.dm index 388e9f289cd7..8df88e607efa 100644 --- a/code/game/objects/effects/spawners/random.dm +++ b/code/game/objects/effects/spawners/random.dm @@ -203,7 +203,7 @@ /obj/item/storage/belt/champion,\ /obj/item/tool/soap/deluxe,\ /obj/item/tool/pickaxe/silver,\ - /obj/item/tool/pen/invisible,\ + /obj/item/tool/pen/white,\ /obj/item/explosive/grenade/smokebomb,\ /obj/item/corncob,\ /obj/item/poster,\ diff --git a/code/game/objects/items/gift_wrappaper.dm b/code/game/objects/items/gift_wrappaper.dm index ea2c19639b7a..4009cf2a172f 100644 --- a/code/game/objects/items/gift_wrappaper.dm +++ b/code/game/objects/items/gift_wrappaper.dm @@ -72,7 +72,7 @@ /obj/item/storage/belt/champion, /obj/item/tool/soap/deluxe, /obj/item/tool/pickaxe/silver, - /obj/item/tool/pen/invisible, + /obj/item/tool/pen/white, /obj/item/explosive/grenade/smokebomb, /obj/item/corncob, /obj/item/poster, diff --git a/code/game/objects/items/tools/misc_tools.dm b/code/game/objects/items/tools/misc_tools.dm index b016f0e67b33..afa7ad0d2a41 100644 --- a/code/game/objects/items/tools/misc_tools.dm +++ b/code/game/objects/items/tools/misc_tools.dm @@ -58,10 +58,10 @@ if(isturf(A)) to_chat(user, SPAN_WARNING("The label won't stick to that.")) return - if(istype(A, /obj/item/storage/pill_bottle)) + if(istype(A, /obj/item/storage/pill_bottle)) var/obj/item/storage/pill_bottle/target_pill_bottle = A target_pill_bottle.choose_color(user) - + if(!label || !length(label)) remove_label(A, user) return @@ -186,6 +186,16 @@ if(on) overlays += "+[pen_color]_tip" +/obj/item/tool/pen/attack(mob/M as mob, mob/user as mob) + if(!ismob(M)) + return + to_chat(user, SPAN_WARNING("You stab [M] with the pen.")) + M.last_damage_data = create_cause_data(initial(name), user) + M.attack_log += text("\[[time_stamp()]\] Has been stabbed with [name] by [key_name(user)]") + user.attack_log += text("\[[time_stamp()]\] Used the [name] to stab [key_name(M)]") + msg_admin_attack("[key_name(user)] Used the [name] to stab [key_name(M)] in [get_area(user)] ([user.loc.x],[user.loc.y],[user.loc.z]).", user.loc.x, user.loc.y, user.loc.z) + return + /obj/item/tool/pen/afterattack(atom/target, mob/user, proximity_flag, click_parameters) . = ..() if(!isobj(target)) @@ -275,77 +285,78 @@ name = "WY green pen" clicky = TRUE -/obj/item/tool/pen/invisible - desc = "It's an invisible pen marker." +/obj/item/tool/pen/white + desc = "It's a rare white ink pen." pen_color = "white" -/obj/item/tool/pen/fountain +/obj/item/tool/pen/white/clicky + desc = "It's a WY brand extra clicky white ink pen." + name = "WY white pen" + clicky = TRUE + +/obj/item/tool/pen/multicolor + name = "multicolor pen" + desc = "A color switching pen!" + var/list/colour_list = list("red", "blue", "black") + var/current_colour_index = 1 + +/obj/item/tool/pen/multicolor/attack_self(mob/living/carbon/human/user) + if(on) + current_colour_index = (current_colour_index % length(colour_list)) + 1 + pen_color = colour_list[current_colour_index] + balloon_alert(user,"you twist the pen and change the ink color to [pen_color].") + if(clicky) + playsound(user.loc, 'sound/items/pen_click_on.ogg', 100, 1, 5) + update_pen_state() + else + ..() + +/obj/item/tool/pen/multicolor/fountain desc = "A lavish testament to the ingenuity of ARMAT's craftsmanship, this fountain pen is a paragon of design and functionality. Detailed with golden accents and intricate mechanics, the pen allows for a swift change between a myriad of ink colors with a simple twist. A product of precision engineering, each mechanism inside the pen is designed to provide a seamless, effortless transition from one color to the next, creating an instrument of luxurious versatility." desc_lore = "More than just a tool for writing, ARMAT's fountain pen is a symbol of distinction and authority within the ranks of the United States Colonial Marine Corps (USCM). It is a legacy item, exclusively handed out to the top-tier command personnel, each pen a tribute to the recipient's leadership and dedication.\n \nARMAT, renowned for their weapons technology, took a different approach in crafting this piece. The fountain pen, though seemingly a departure from their usual field, is deeply ingrained with the company's engineering philosophy, embodying precision, functionality, and robustness.\n \nThe golden accents are not mere embellishments; they're an identifier, setting apart these pens and their owners from the rest. The gold is meticulously alloyed with a durable metallic substance, granting it resilience to daily wear and tear. Such resilience is symbolic of the tenacity and perseverance required of USCM command personnel.\n \nEach pen is equipped with an intricate color changing mechanism, allowing the user to switch between various ink colors. This feature, inspired by the advanced targeting systems of ARMAT's weaponry, uses miniaturized actuators and precision-ground components to smoothly transition the ink flow. A simple twist of the pen's body activates the change, rotating the internal ink cartridges into place with mechanical grace, ready for the user's command.\n \nThe ink colors are not chosen arbitrarily. Each represents a different echelon within the USCM, allowing the pen's owner to write in the hue that corresponds with their rank or the rank of the recipient of their written orders. This acts as a silent testament to the authority of their words, as if each stroke of the pen echoes through the halls of USCM authority.\n \nDespite its ornate appearance, the pen is as robust as any ARMAT weapon, reflecting the company's commitment to reliability and durability. The metal components are corrosion-resistant, ensuring the pen's longevity, even under the challenging conditions often faced by USCM high command.\n \nThe fusion of luxury and utility, the blend of gold and metal, is an embodiment of the hard-won elegance of command, of the fusion between power and grace. It's more than a writing instrument - it's an emblem of leadership, an accolade to the dedication and strength of those who bear it. ARMAT's fountain pen stands as a monument to the precision, integrity, and courage embodied by the USCM's highest-ranking officers." name = "fountain pen" icon_state = "fountain_pen" item_state = "fountain_pen" matter = list("metal" = 20, "gold" = 10) - var/static/list/color_list = list("red", "blue", "green", "yellow", "purple", "pink", "brown", "black", "orange") // Can add more colors as required - var/current_color_index = 1 + colour_list = list("red", "blue", "green", "yellow", "purple", "pink", "brown", "black", "orange") // Can add more colors as required var/owner_name -/obj/item/tool/pen/fountain/pickup(mob/user, silent) +/obj/item/tool/pen/multicolor/fountain/pickup(mob/user, silent) . = ..() if(!owner_name) RegisterSignal(user, COMSIG_POST_SPAWN_UPDATE, PROC_REF(set_owner), override = TRUE) ///Sets the owner of the pen to who it spawns with, requires var/source for signals -/obj/item/tool/pen/fountain/proc/set_owner(datum/source) +/obj/item/tool/pen/multicolor/fountain/proc/set_owner(datum/source) SIGNAL_HANDLER UnregisterSignal(source, COMSIG_POST_SPAWN_UPDATE) var/mob/living/carbon/human/user = source owner_name = user.name -/obj/item/tool/pen/fountain/get_examine_text(mob/user) +/obj/item/tool/pen/multicolor/fountain/get_examine_text(mob/user) . = ..() if(owner_name) . += "There's a laser engraving of [owner_name] on it." -/obj/item/tool/pen/fountain/attack_self(mob/living/carbon/human/user) - if(on) - current_color_index = (current_color_index % length(color_list)) + 1 - pen_color = color_list[current_color_index] - balloon_alert(user,"you twist the pen and change the ink color to [pen_color].") - if(clicky) - playsound(user.loc, 'sound/items/pen_click_on.ogg', 100, 1, 5) - update_pen_state() - else - ..() - -/obj/item/tool/pen/attack(mob/M as mob, mob/user as mob) - if(!ismob(M)) - return - to_chat(user, SPAN_WARNING("You stab [M] with the pen.")) -// to_chat(M, SPAN_WARNING("You feel a tiny prick!")) //That's a whole lot of meta! - M.last_damage_data = create_cause_data(initial(name), user) - M.attack_log += text("\[[time_stamp()]\] Has been stabbed with [name] by [key_name(user)]") - user.attack_log += text("\[[time_stamp()]\] Used the [name] to stab [key_name(M)]") - msg_admin_attack("[key_name(user)] Used the [name] to stab [key_name(M)] in [get_area(user)] ([user.loc.x],[user.loc.y],[user.loc.z]).", user.loc.x, user.loc.y, user.loc.z) - return - +/obj/item/tool/pen/multicolor/provost + name = "provost pen" + desc = "A sleek black shell pen with the Provost Office sigil engraved into the side. It can change colors as needed for various functions within the Provost and Military Police." + icon_state = "provost_pen" + colour_list = list("blue", "green", "black", "orange", "red", "white") /* - * Sleepy Pens + * Antag pens */ /obj/item/tool/pen/sleepypen desc = "It's a black ink pen with a sharp point and a carefully engraved \"Waffle Co.\"" flags_atom = FPRINT|OPENCONTAINER flags_equip_slot = SLOT_WAIST - - /obj/item/tool/pen/sleepypen/Initialize() . = ..() create_reagents(30) reagents.add_reagent("chloralhydrate", 22) - /obj/item/tool/pen/sleepypen/attack(mob/M as mob, mob/user as mob) if(!(istype(M,/mob))) return @@ -354,16 +365,10 @@ if(M.reagents) reagents.trans_to(M, 50) return - -/* - * Parapens - */ /obj/item/tool/pen/paralysis flags_atom = FPRINT|OPENCONTAINER flags_equip_slot = SLOT_WAIST - - /obj/item/tool/pen/paralysis/attack(mob/living/M as mob, mob/user as mob) if(!(istype(M))) return @@ -378,6 +383,9 @@ reagents.add_reagent("zombiepowder", 10) reagents.add_reagent("cryptobiolin", 15) +/* + * Stamps + */ /obj/item/tool/stamp name = "rubber stamp" desc = "A rubber stamp for stamping important documents." diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index 8974eb36187f..fc5744dcbbf1 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -1141,7 +1141,7 @@ GLOBAL_DATUM_INIT(supply_controller, /datum/controller/supply, new()) temp += "Back to all categories


" temp += SPAN_DANGER("ERR0R UNK7OWN C4T2G#!$0-


") if(black_market_lockout) - temp += "





Unauthorized Access Removed.
This console is currently under CMB investigation.
Thank you for your cooperation.
" + temp += "





Unauthorized Access Removed.
This console is currently under CMB investigation.
Thank you for your cooperation.
" return temp += "KHZKNHZH#0-" if(!GLOB.supply_controller.mendoza_status) // he's daed diff --git a/code/modules/admin/fax_templates.dm b/code/modules/admin/fax_templates.dm index 2522acf92b3b..210915a3f7b8 100644 --- a/code/modules/admin/fax_templates.dm +++ b/code/modules/admin/fax_templates.dm @@ -7,7 +7,7 @@ dat += "body {" dat += "margin:0 auto;" dat += "padding:0;" - dat += "background-image: url('[asset.get_url_mappings()["faxbackground.jpg"]]');" + dat += "background-image: url('[asset.get_url_mappings()["background_white.jpg"]]');" dat += "font-family: monospace;" dat += "}" @@ -65,7 +65,7 @@ if(show_wy_logo) dat += "" dat += "
" diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index 3ee8ef5b616d..bcdd2f1a5206 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -117,13 +117,17 @@ /datum/asset/simple/paper keep_local_name = TRUE assets = list( - "wylogo.png" = 'html/images/wylogo.png', - "uscmlogo.png" = 'html/images/uscmlogo.png', - "upplogo.png" = 'html/images/upplogo.png', - "cmblogo.png" = 'html/images/cmblogo.png', - "faxwylogo.png" = 'html/images/faxwylogo.png', - "faxbackground.jpg" = 'html/images/faxbackground.jpg', - "colonialspacegruntsEZ.png" = 'html/images/colonialspacegruntsEZ.png', + "logo_wy.png" = 'paper_reference_files/logo_wy.png', + "logo_wy_inv.png" = 'paper_reference_files/logo_wy_inv.png', + "logo_uscm.png" = 'paper_reference_files/logo_uscm.png', + "logo_provost.png" = 'paper_reference_files/logo_provost.png', + "logo_upp.png" = 'paper_reference_files/logo_upp.png', + "logo_cmb.png" = 'paper_reference_files/logo_cmb.png', + "background_white.jpg" = 'paper_reference_files/background_white.jpg', + "background_dark.jpg" = 'paper_reference_files/background_dark.jpg', + "background_dark2.jpg" = 'paper_reference_files/background_dark2.jpg', + "background_dark_fractal.png" = 'paper_reference_files/background_dark_fractal.png', + "colonialspacegruntsEZ.png" = 'paper_reference_files/colonialspacegruntsEZ.png', ) /datum/asset/spritesheet/chat diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 79fd34b2660c..4db75f8d2e3e 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -405,7 +405,7 @@ GLOBAL_LIST_EMPTY(gear_datums_by_name) /datum/gear/paperwork/pen_fountain display_name = "Pen, fountain" - path = /obj/item/tool/pen/fountain + path = /obj/item/tool/pen/multicolor/fountain cost = 3 /datum/gear/paperwork/paper diff --git a/code/modules/clothing/head/head.dm b/code/modules/clothing/head/head.dm index f9c8adbf9a77..b7c761cd85a5 100644 --- a/code/modules/clothing/head/head.dm +++ b/code/modules/clothing/head/head.dm @@ -278,7 +278,7 @@ /obj/item/prop/helmetgarb/lucky_feather/blue = "lucky_feather_blue", /obj/item/prop/helmetgarb/lucky_feather/purple = "lucky_feather_purple", /obj/item/prop/helmetgarb/lucky_feather/yellow = "lucky_feather_yellow", - /obj/item/tool/pen/fountain = "fountainpen", + /obj/item/tool/pen/multicolor/fountain = "fountainpen", ) var/storage_slots = 1 var/storage_slots_reserved_for_garb = 1 diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 140d73fd05a0..bdd5e81303dd 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -344,7 +344,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( /obj/item/prop/helmetgarb/riot_shield = "helmet_riot_shield", /obj/item/attachable/flashlight = HELMET_GARB_RELAY_ICON_STATE, /obj/item/prop/helmetgarb/chaplain_patch = "chaplain_patch", - /obj/item/tool/pen/fountain = "fountainpen", + /obj/item/tool/pen/multicolor/fountain = "fountainpen", // MEDICAL /obj/item/stack/medical/bruise_pack ="brutepack (bandages)", diff --git a/code/modules/gear_presets/survivors/misc.dm b/code/modules/gear_presets/survivors/misc.dm index 1a24ca5d58b9..120ecd8ddbea 100644 --- a/code/modules/gear_presets/survivors/misc.dm +++ b/code/modules/gear_presets/survivors/misc.dm @@ -285,7 +285,7 @@ Everything below isn't used or out of place. new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/notepad(new_human), WEAR_IN_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/tool/pen/fountain(new_human), WEAR_IN_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/multicolor/fountain(new_human), WEAR_IN_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/med_small_stack(new_human), WEAR_IN_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/m1911(new_human), WEAR_WAIST) diff --git a/code/modules/paperwork/carbonpaper.dm b/code/modules/paperwork/carbonpaper.dm index 4ddefff61eb8..0ebd80d4a83d 100644 --- a/code/modules/paperwork/carbonpaper.dm +++ b/code/modules/paperwork/carbonpaper.dm @@ -2,9 +2,8 @@ name = "paper" icon_state = "paper_stack" item_state = "paper" - var/copied = 0 - var/iscopy = 0 - + var/copied = FALSE + var/iscopy = FALSE /obj/item/paper/carbon/update_icon() if(iscopy) @@ -23,8 +22,6 @@ return icon_state = "paper_stack" - - /obj/item/paper/carbon/verb/removecopy() set name = "Remove carbon-copy" set category = "Object" @@ -42,9 +39,57 @@ copy.fields = c.fields copy.updateinfolinks() to_chat(usr, SPAN_NOTICE("You tear off the carbon-copy!")) - c.copied = 1 - copy.iscopy = 1 + c.copied = TRUE + copy.iscopy = TRUE copy.update_icon() c.update_icon() else to_chat(usr, "There are no more carbon copies attached to this paper!") + +/obj/item/paper/prefab/carbon + name = "paper" + icon_state = "paper_stack" + item_state = "paper" + var/copied = FALSE + var/iscopy = FALSE + +/obj/item/paper/prefab/carbon/update_icon() + if(iscopy) + if(info) + icon_state = "cpaper_words" + return + icon_state = "cpaper" + else if (copied) + if(info) + icon_state = "paper_words" + return + icon_state = "paper" + else + if(info) + icon_state = "paper_stack_words" + return + icon_state = "paper_stack" + +/obj/item/paper/prefab/carbon/verb/removecopy() + set name = "Remove carbon-copy" + set category = "Object" + set src in usr + + if (!copied && !iscopy) + var/obj/item/paper/prefab/carbon/this_doc = src + var/copycontents = html_decode(this_doc.info) + var/obj/item/paper/carbon/copy = new /obj/item/paper/carbon (usr.loc) + copycontents = replacetext(copycontents, "" + copy.name = "Copy - " + this_doc.name + copy.fields = this_doc.fields + copy.updateinfolinks() + to_chat(usr, SPAN_NOTICE("You tear off the carbon-copy!")) + this_doc.copied = TRUE + copy.iscopy = TRUE + copy.update_icon() + this_doc.update_icon() + else + to_chat(usr, "There are no more carbon copies attached to this paper!") diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index e1610fb3401a..e5dbd52f76ce 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -40,6 +40,14 @@ var/signfont = "Times New Roman" var/crayonfont = "Comic Sans MS" + /// If this paper imports a prefab on instance. + var/is_prefab = FALSE + /// Category of the paper. + var/document_category + /// Name of the document. + var/document_title + var/datum/prefab_document/doc_datum_type + //lipstick wiping is in code/game/obj/items/weapons/cosmetics.dm! /obj/item/paper/Initialize(mapload, photo_list) @@ -54,6 +62,8 @@ update_icon() updateinfolinks() + if(is_prefab) + compile_paper() /obj/item/paper/update_icon() if(icon_state == "paper_talisman" || icon_state == "paper_wy_words" || icon_state == "paper_uscm" || icon_state == "fortune" || icon_state == "paper_flag") @@ -208,82 +218,88 @@ update_icon() -/obj/item/paper/proc/parsepencode(t, obj/item/tool/pen/P, mob/user as mob, iscrayon = 0) +/obj/item/paper/proc/parsepencode(paper_text, obj/item/tool/pen/P, mob/user as mob, iscrayon = 0) var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - t = replacetext(t, "\[center\]", "
") - t = replacetext(t, "\[/center\]", "
") - t = replacetext(t, "\[br\]", "
") - t = replacetext(t, "\[b\]", "") - t = replacetext(t, "\[/b\]", "") - t = replacetext(t, "\[i\]", "") - t = replacetext(t, "\[/i\]", "") - t = replacetext(t, "\[u\]", "") - t = replacetext(t, "\[/u\]", "") - t = replacetext(t, "\[large\]", "") - t = replacetext(t, "\[/large\]", "") - t = replacetext(t, "\[sign\]", "[user ? user.real_name : "Anonymous"]") - t = replacetext(t, "\[date\]", "[time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]") - t = replacetext(t, "\[shortdate\]", "[time2text(REALTIMEOFDAY, "DD/MM/[GLOB.game_year]")]") - t = replacetext(t, "\[time\]", "[worldtime2text("hh:mm")]") - t = replacetext(t, "\[date+time\]", "[worldtime2text("hh:mm")], [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]") - t = replacetext(t, "\[field\]", "") - - t = replacetext(t, "\[h1\]", "

") - t = replacetext(t, "\[/h1\]", "

") - t = replacetext(t, "\[h2\]", "

") - t = replacetext(t, "\[/h2\]", "

") - t = replacetext(t, "\[h3\]", "

") - t = replacetext(t, "\[/h3\]", "

") + paper_text = replacetext(paper_text, "\[center\]", "
") + paper_text = replacetext(paper_text, "\[/center\]", "
") + paper_text = replacetext(paper_text, "\[br\]", "
") + paper_text = replacetext(paper_text, "\[b\]", "") + paper_text = replacetext(paper_text, "\[/b\]", "") + paper_text = replacetext(paper_text, "\[i\]", "") + paper_text = replacetext(paper_text, "\[/i\]", "") + paper_text = replacetext(paper_text, "\[u\]", "") + paper_text = replacetext(paper_text, "\[/u\]", "") + paper_text = replacetext(paper_text, "\[large\]", "") + paper_text = replacetext(paper_text, "\[/large\]", "") + paper_text = replacetext(paper_text, "\[sign\]", "[user ? user.real_name : "Anonymous"]") + paper_text = replacetext(paper_text, "\[date\]", "[time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]") + paper_text = replacetext(paper_text, "\[shortdate\]", "[time2text(REALTIMEOFDAY, "DD/MM/[GLOB.game_year]")]") + paper_text = replacetext(paper_text, "\[time\]", "[worldtime2text("hh:mm")]") + paper_text = replacetext(paper_text, "\[date+time\]", "[worldtime2text("hh:mm")], [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]") + paper_text = replacetext(paper_text, "\[field\]", "") + + paper_text = replacetext(paper_text, "\[h1\]", "

") + paper_text = replacetext(paper_text, "\[/h1\]", "

") + paper_text = replacetext(paper_text, "\[h2\]", "

") + paper_text = replacetext(paper_text, "\[/h2\]", "

") + paper_text = replacetext(paper_text, "\[h3\]", "

") + paper_text = replacetext(paper_text, "\[/h3\]", "

") if(!iscrayon) - t = replacetext(t, "\[*\]", "
  • ") - t = replacetext(t, "\[hr\]", "
    ") - t = replacetext(t, "\[small\]", "") - t = replacetext(t, "\[/small\]", "") - t = replacetext(t, "\[list\]", "
      ") - t = replacetext(t, "\[/list\]", "
    ") - t = replacetext(t, "\[table\]", "") - t = replacetext(t, "\[/table\]", "
    ") - t = replacetext(t, "\[grid\]", "") - t = replacetext(t, "\[/grid\]", "
    ") - t = replacetext(t, "\[row\]", "") - t = replacetext(t, "\[cell\]", "") - t = replacetext(t, "\[logo\]", "") - t = replacetext(t, "\[wy\]", "") - t = replacetext(t, "\[uscm\]", "") - t = replacetext(t, "\[upp\]", "") - t = replacetext(t, "\[cmb\]", "") - - t = "[t]" + paper_text = replacetext(paper_text, "\[*\]", "
  • ") + paper_text = replacetext(paper_text, "\[hr\]", "
    ") + paper_text = replacetext(paper_text, "\[small\]", "") + paper_text = replacetext(paper_text, "\[/small\]", "") + paper_text = replacetext(paper_text, "\[list\]", "
      ") + paper_text = replacetext(paper_text, "\[/list\]", "
    ") + paper_text = replacetext(paper_text, "\[table\]", "") + paper_text = replacetext(paper_text, "\[/table\]", "
    ") + paper_text = replacetext(paper_text, "\[grid\]", "") + paper_text = replacetext(paper_text, "\[/grid\]", "
    ") + paper_text = replacetext(paper_text, "\[row\]", "") + paper_text = replacetext(paper_text, "\[cell\]", "") + paper_text = replacetext(paper_text, "\[wy\]", "") + paper_text = replacetext(paper_text, "\[wy_inv\]", "") + paper_text = replacetext(paper_text, "\[uscm\]", "") + paper_text = replacetext(paper_text, "\[upp\]", "") + paper_text = replacetext(paper_text, "\[cmb\]", "") + + paper_text = "[paper_text]" else // If it is a crayon, and he still tries to use these, make them empty! - t = replacetext(t, "\[*\]", "") - t = replacetext(t, "\[hr\]", "") - t = replacetext(t, "\[small\]", "") - t = replacetext(t, "\[/small\]", "") - t = replacetext(t, "\[list\]", "") - t = replacetext(t, "\[/list\]", "") - t = replacetext(t, "\[table\]", "") - t = replacetext(t, "\[/table\]", "") - t = replacetext(t, "\[row\]", "") - t = replacetext(t, "\[cell\]", "") - t = replacetext(t, "\[logo\]", "") - - t = "[t]" - -// t = replacetext(t, "#", "") // Junk converted to nothing! - -//Count the fields + paper_text = replacetext(paper_text, "\[*\]", "") + paper_text = replacetext(paper_text, "\[hr\]", "") + paper_text = replacetext(paper_text, "\[small\]", "") + paper_text = replacetext(paper_text, "\[/small\]", "") + paper_text = replacetext(paper_text, "\[list\]", "") + paper_text = replacetext(paper_text, "\[/list\]", "") + paper_text = replacetext(paper_text, "\[table\]", "") + paper_text = replacetext(paper_text, "\[/table\]", "") + paper_text = replacetext(paper_text, "\[row\]", "") + paper_text = replacetext(paper_text, "\[cell\]", "") + paper_text = replacetext(paper_text, "\[wy\]", "") + paper_text = replacetext(paper_text, "\[wy_inv\]", "") + paper_text = replacetext(paper_text, "\[uscm\]", "") + paper_text = replacetext(paper_text, "\[upp\]", "") + paper_text = replacetext(paper_text, "\[cmb\]", "") + + paper_text = "[paper_text]" + + + //Count the fields + calculate_fields(paper_text) + return paper_text + +/obj/item/paper/proc/calculate_fields(message) + var/check_text = message ? message : info var/laststart = 1 while(1) - var/i = findtext(t, "", laststart) + var/i = findtext(check_text, "", laststart) if(i==0) break laststart = i+1 fields = min(fields+1, MAX_FIELDS) //NOTE: The max here will include the auto-created field when hitting a paper with a pen. So it should be [your_desired_number]+1. - return t - /obj/item/paper/proc/openhelp(mob/user as mob) var/dat = {" @@ -334,6 +350,33 @@ else to_chat(user, SPAN_DANGER("You must hold \the [P] steady to burn \the [src].")) +/obj/item/paper/verb/seal_paper() + set name = "Seal paper" + set category = "Object" + set src in usr + + var/confirm = alert(usr, "Are you sure you wish to seal this document?\n\nNote: This will prevent the edit of any fields on the paper,\nexcluding the end of the page.", "Confirm", "Yes", "No") + if(confirm != "Yes") + return FALSE + info = replacetext(info, "", "
    ") + calculate_fields() + updateinfolinks() + return TRUE + +/obj/item/paper/proc/compile_paper() + if(!is_prefab) + return FALSE + if(!document_category || !doc_datum_type) + return FALSE + + var/datum/prefab_document/prefab = new doc_datum_type + info = prefab.contents + qdel(prefab) + + calculate_fields() + updateinfolinks() + update_icon() + return TRUE /obj/item/paper/Topic(href, href_list) ..() @@ -605,7 +648,7 @@ . = ..() var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - info = "

    Union Of Progressive People's Fourth Fleet
    Orders For 173rd Airborne Reconnaissance: 2nd Platoon
    No.52

    Order of Military Officer of the UPP
    Kolonel Ganbaatar
    Commander of MV-35
    Date: 2182
    On Special Mission
    The actions of the hostile Weyland-Yutani corporation on the fringes of the Neroid sector have grown increasingly intolerable. However, evidence suggesting they are researching into the creation and deployment of some form of biological weapons program represent an unacceptable risk to the security of UPP interests in this sector. The risk of these items falling into UA/USCM hands is unacceptable.

    Orders for the Boris squad of the 173rd Airborne Recon are as follows. Initiate airborne reconnaissance of WY colony Oxley's Buttle, Trijent Dam, location on planet Raijin (UA Code: LV-670). Ascertain veracity of onsight biological weapons program. If positive confirmation of the weapons program is identified, authorization for rapid assault and recovery is granted. Avoid all contact with UA/USCM military forces, abort missions if UA/USCM forces are encountered.
    Authorizing Officer: Gaanbatar
    Name and Rank: Kolonel

    FOR SANCTIONED USE ONLY" + info = "

    Union Of Progressive People's Fourth Fleet
    Orders For 173rd Airborne Reconnaissance: 2nd Platoon
    No.52

    Order of Military Officer of the UPP
    Kolonel Ganbaatar
    Commander of MV-35
    Date: 2182
    On Special Mission
    The actions of the hostile Weyland-Yutani corporation on the fringes of the Neroid sector have grown increasingly intolerable. However, evidence suggesting they are researching into the creation and deployment of some form of biological weapons program represent an unacceptable risk to the security of UPP interests in this sector. The risk of these items falling into UA/USCM hands is unacceptable.

    Orders for the Boris squad of the 173rd Airborne Recon are as follows. Initiate airborne reconnaissance of WY colony Oxley's Buttle, Trijent Dam, location on planet Raijin (UA Code: LV-670). Ascertain veracity of onsight biological weapons program. If positive confirmation of the weapons program is identified, authorization for rapid assault and recovery is granted. Avoid all contact with UA/USCM military forces, abort missions if UA/USCM forces are encountered.
    Authorizing Officer: Gaanbatar
    Name and Rank: Kolonel

    FOR SANCTIONED USE ONLY" /obj/item/paper/crumpled name = "paper scrap" @@ -627,7 +670,7 @@ . = ..() var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - info = "

    \n" + info = "

    \n" /obj/item/paper/uscm icon_state = "paper_uscm" @@ -636,7 +679,7 @@ . = ..() var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - info = "

    \n" + info = "

    \n" /obj/item/paper/research_notes icon_state = "paper_wy_words" @@ -675,7 +718,7 @@ random_chem = pick(GLOB.chemical_gen_classes_list["T1"]) C = GLOB.chemical_reagents_list["[random_chem]"] var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - var/txt = "

    Official Weyland-Yutani Document
    Experiment Notes

    " + var/txt = "

    Official Weyland-Yutani Document
    Experiment Notes

    " switch(note_type) if("synthesis") var/datum/chemical_reaction/G = GLOB.chemical_reactions_list[C.id] diff --git a/code/modules/paperwork/prefab_papers.dm b/code/modules/paperwork/prefab_papers.dm new file mode 100644 index 000000000000..de41a980770b --- /dev/null +++ b/code/modules/paperwork/prefab_papers.dm @@ -0,0 +1,131 @@ +/datum/prefab_document + var/contents + +GLOBAL_REFERENCE_LIST_INDEXED(prefab_papers, /obj/item/paper/prefab, document_title) +/obj/structure/filingcabinet/documentation + name = "documents cabinet" + /// The categories available from this cabinet. Manually populated. + var/list/available_categories = list() + /// The possible options that can be withdrawn. Automatically populated by get_possible_documents(). + var/list/available_documents = list() + /// Number of prefab documents that can be withdrawn. Cap intended to prevent people spamming infinite copies. + var/remaining_documents = 30 + +/obj/structure/filingcabinet/documentation/Initialize() + . = ..() + get_possible_documents() + +/obj/structure/filingcabinet/documentation/proc/get_possible_documents() + available_documents.Cut() + for(var/docname in GLOB.prefab_papers) + var/obj/item/paper/prefab/document = GLOB.prefab_papers[docname] + if(!istype(document)) + continue + log_debug("DOCUMENT: Checking [document]") + if(!document.is_prefab || !document.doc_datum_type || (document.name == "paper")) + log_debug("DOCUMENT: Prefab, Name or Ref fail.") + continue + if(!document.document_category || !(document.document_category in available_categories)) + log_debug("DOCUMENT: Category fail.") + continue + available_documents += docname + return + +/obj/structure/filingcabinet/documentation/attack_hand(mob/user as mob) + var/choice = tgui_alert(user, "Do you wish to open the cabinet, or retrieve a document template?", "Action", list("Open", "Document"), 20 SECONDS) + switch(choice) + if("Open") + if(contents.len <= 0) + to_chat(user, SPAN_NOTICE("\The [src] is empty.")) + return + + user.set_interaction(src) + var/dat = "
    " + for(var/obj/item/P in src) + dat += "" + dat += "
    [P.name]
    " + show_browser(user, dat, name, "filingcabinet", "size=350x300") + return + if("Document") + if(!remaining_documents) + to_chat(user, SPAN_WARNING("[src] has no remaining official forms!")) + return + give_document(user) + return + +/obj/structure/filingcabinet/documentation/proc/give_document(mob/user as mob) + if(!remaining_documents) + to_chat(user, SPAN_WARNING("[src] has no remaining official forms!")) + return FALSE + for(var/paper in available_documents) + log_debug("Document: [paper]") + var/chosen = tgui_input_list(usr, "What document do you need?", "Choose Document", available_documents) + var/selected = GLOB.prefab_papers[chosen].type + var/obj/item/paper/prefab/document = new selected + document.forceMove(user.loc) + user.put_in_hands(document) + to_chat(user, SPAN_NOTICE("You take [document] out of [src].")) + remaining_documents-- + return TRUE + +/obj/structure/filingcabinet/documentation/military_police + available_categories = list(PAPER_CATEGORY_MP) +/obj/structure/filingcabinet/documentation/liaison + available_categories = list(PAPER_CATEGORY_LIAISON) + remaining_documents = 45 //CL likely using more of these than most people. +//######################################## +//######################################## +//######################################## +/obj/item/paper/prefab + is_prefab = TRUE + document_title = "BLANK" + +/obj/item/paper/prefab/Initialize() + . = ..() + name = document_title + +/obj/item/paper/prefab/carbon/military_police + name = "Blank MP Document" + document_category = PAPER_CATEGORY_MP + +/obj/item/paper/prefab/carbon/military_police/appeal_form + document_title = "PR301a - Appeals Form" + doc_datum_type = /datum/prefab_document/provost/mp/appeal_form + +/obj/item/paper/prefab/carbon/military_police/dao_request + document_title = "PR301b - Delayed Action Order" + doc_datum_type = /datum/prefab_document/provost/mp/dao_request + +/obj/item/paper/prefab/carbon/military_police/confiscation_receipt + document_title = "PR356 - Confiscation Receipt" + doc_datum_type = /datum/prefab_document/provost/mp/confiscation_receipt + +/obj/item/paper/prefab/carbon/military_police/apology_notice + document_title = "NJ910 - Apology Notice" + doc_datum_type = /datum/prefab_document/provost/mp/apology_notice + + +/obj/item/paper/prefab/liaison + name = "Blank WY Document" + document_category = PAPER_CATEGORY_LIAISON + +/obj/item/paper/prefab/liaison/ops_report + document_title = "WY435 - Liaison Operations Report" + doc_datum_type = /datum/prefab_document/wey_yu/liaison/ops_report + +/obj/item/paper/prefab/liaison/preserve_intent + document_title = "WY439 - Affidavit of Intent to Preserve" + doc_datum_type = /datum/prefab_document/wey_yu/liaison/preserve_intent + +/obj/item/paper/prefab/liaison/liability + document_title = "WY440 - Affidavit of Liability" + doc_datum_type = /datum/prefab_document/wey_yu/liaison/liability + +/obj/item/paper/prefab/liaison/nda_short + document_title = "WY441 - Confidentiality Agreement" + doc_datum_type = /datum/prefab_document/wey_yu/liaison/nda_short + +/obj/item/paper/prefab/liaison/nda_long + document_title = "WY442 - Non Disclosure Agreement" + doc_datum_type = /datum/prefab_document/wey_yu/liaison/nda_long + diff --git a/code/modules/paperwork/prefab_papers/provost/military_police/apology_notice.dm b/code/modules/paperwork/prefab_papers/provost/military_police/apology_notice.dm new file mode 100644 index 000000000000..82eb49e96f27 --- /dev/null +++ b/code/modules/paperwork/prefab_papers/provost/military_police/apology_notice.dm @@ -0,0 +1,124 @@ +/datum/prefab_document/provost/mp/apology_notice/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "\"Provost" + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "

    Notice of Formal Apology

    " + dat += "

    NJ910

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "To: " + dat += "
    " + dat += "From: " + dat += "


    " + dat += "

    Statement

    " + dat += "" + dat += "

    " + dat += "Sincerely,
    " + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "" + dat += "
    " + dat += "" + + + + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/provost/military_police/appeal_form.dm b/code/modules/paperwork/prefab_papers/provost/military_police/appeal_form.dm new file mode 100644 index 000000000000..ccc010e0bf5e --- /dev/null +++ b/code/modules/paperwork/prefab_papers/provost/military_police/appeal_form.dm @@ -0,0 +1,177 @@ +/datum/prefab_document/provost/mp/appeal_form/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "\"Provost" + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "

    Appeals Form

    " + dat += "

    PR301a

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "

    To be completed by Handler


    " + dat += "Handler Name:
    " + dat += "Appeal Decision:


    " + dat += "Notes or Comments:


    " + dat += "Handler Signature:
    " + dat += "
    " + dat += "

    Provost Decision


    " + dat += "

    " + dat += "For a Provost resolution please send this document by fax to the Provost Office.
    " + dat += "Provost Contacted?:
    " + dat += "Provost Response:
    " + dat += "

    " + dat += "
    " + dat += "

    To be completed by Military Police


    " + dat += "Appeal Reference Number:
    " + dat += "Arresting Officer:
    " + dat += "Department Representative:
    " + dat += "Testimonial:


    " + dat += "Notes or Comments:


    " + dat += "Representative Signature:
    " + dat += "
    " + dat += "

    PR301b Delayed Action Order


    " + dat += "

    " + dat += "PR301b Requested?:
    " + dat += "PR301b Response:
    " + dat += "

    " + dat += "
    " + dat += "

    To be completed by Defendant


    " + dat += "Defendant Name:
    " + dat += "Requested Handler:
    " + dat += "Testimonial:



    " + dat += "Notes or Comments:


    " + dat += "Defendant Signature:
    " + dat += "
    " + dat += "
    " + dat += "
    " + dat += "

    Right to Appeal

    " + dat += "

    Anyone under the jurisdiction of Marine Law has the right to appeal their punishment to their choice of the Chief of Military Police (CMP) or the Commander, the requested handler may designate another valid party to handle it in their place. Should either be involved in the arrest of the defendant they must designate another valid party.

    " + dat += "

    Valid parties are any Military Police personnel, or Commissioned Officer, who are not directly involved in the charging, arrest of, or processing of the defendant. In the event no valid party exists the appeal may be handled by the processor of the defendant so long as they are not also directly involved in the arrest, wherein the appeal should be sent to the Provost Office.

    " + dat += "

    Appeal resolutions are final and cannot be altered without intervention of the Provost Office, the handler can establish a charge as valid, modify a charge to a lower charge, reduce the punishment for a charge to the minimum punishment, and remove a charge that the prisoner is found not guilty of. Charges may not be removed if the defendant is guilty.

    " + dat += "

    Right to Appeal is suspended during Delta Alert, threats mandating evacuation, approach of a hostile force, unlawful/hostile boarders, riots or jailbreaks. Appeal rights are also postponed should the defendant be in need of medical treatment, unconscious or unlawfully free of custody.
    Appeals are handled on a first call basis, should a previously requested appeal be under review the required response time is postponed.

    " + dat += "

    " + dat += "This document must be completed by the defendant and then a Military Police representative prior to the handler beginning the appeal review. Should this document not be provided to the defendant within 5 minutes of request, all charges are void.
    " + dat += "Following completion of this document the handler must begin the appeal review within a further five minutes. In the event this is not possible, and not a result of a situation where Right to Appeal is suspended, Military Police may seek a PR301b Delayed Action Order by indicating their request on this document." + dat += "

    " + dat += "

    " + dat += "A PR301b Delayed Action Order (DAO) allows Military Police to reprosecute a defendant for charges they are previously released from due to the inability to adhere to the required timeframes.
    " + dat += "Request of a DAO requires the defendant be released from detainment, the 'PR301b Requested' section on this document completed, and a PR301b form sent by fax to the Provost Office.
    " + dat += "Upon receipt of a response from the DOA fax this document must be updated to indicate the Provost Office's decision. Should a DAO be approved the defendant must be presented with the response from the Provost Office upon, or prior to, being detained." + dat += "

    " + dat += "
    " + dat += "
    " + dat += "" + + + + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/provost/military_police/confiscation_receipt.dm b/code/modules/paperwork/prefab_papers/provost/military_police/confiscation_receipt.dm new file mode 100644 index 000000000000..611bc67e549a --- /dev/null +++ b/code/modules/paperwork/prefab_papers/provost/military_police/confiscation_receipt.dm @@ -0,0 +1,119 @@ +/datum/prefab_document/provost/mp/confiscation_receipt/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "\"Provost" + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "

    Military Police Confiscation Receipt

    " + dat += "

    PR356

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "Person Identification:
    " + dat += "

    " + dat += "Reasoning:
    _" + dat += "

    " + dat += "Location Held:
    " + dat += "

    " + dat += "Items Confiscated:
    " + dat += "

    " + dat += "Issuing Officer signature:
    " + dat += "" + dat += "" + dat += "
    " + dat += "" + dat += "
    " + dat += "" + + + + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/provost/military_police/dao_request.dm b/code/modules/paperwork/prefab_papers/provost/military_police/dao_request.dm new file mode 100644 index 000000000000..a65a1c05903d --- /dev/null +++ b/code/modules/paperwork/prefab_papers/provost/military_police/dao_request.dm @@ -0,0 +1,143 @@ +/datum/prefab_document/provost/mp/dao_request/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "\"Provost" + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "

    Delayed Action Order

    " + dat += "

    PR301b

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "

    To be completed by Military Police


    " + dat += "Appeal Reference Number:
    " + dat += "Department Representative:
    " + dat += "Charges of the accused, with reasoning:


    " + dat += "Reason for PR301b Request:


    " + dat += "Notes or Comments:


    " + dat += "Representative Signature:
    " + dat += "
    " + dat += "
    " + dat += "
    " + dat += "

    PR301b Function

    " + dat += "

    " + dat += "A PR301b Delayed Action Order (DAO) allows Military Police to reprosecute a defendant for charges they are previously released from due to the inability to adhere to the required timeframes.
    " + dat += "Request of a DAO requires the defendant be released from detainment, the 'PR301b Requested' section on the related PR301a form completed, and this form sent by fax to the Provost Office.
    " + dat += "Upon receipt of a response containing the Provost Office's decision the related PR301a form must be updated to indicate the answer. Should a DAO be approved the defendant must be presented with the response from the Provost Office upon, or prior to, being detained." + dat += "

    " + dat += "
    " + dat += "
    " + dat += "" + + + + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/wey_yu/liaison/liability.dm b/code/modules/paperwork/prefab_papers/wey_yu/liaison/liability.dm new file mode 100644 index 000000000000..e521045d7984 --- /dev/null +++ b/code/modules/paperwork/prefab_papers/wey_yu/liaison/liability.dm @@ -0,0 +1,135 @@ +/datum/prefab_document/wey_yu/liaison/liability/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "

    Affidavit of Liability

    " + dat += "

    WY440

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "

    I, , forfeit all right to bring a suit against the Weyland Yutani (Space) Corporation for any reason on the site. This agreement releases the Weyland Yutani (Space) Corporation from all liability relating to injuries and financial responsibilities for injuries that may occur on the site.

    " + dat += "

    Signature:
    Liaison Signature:
    Date:

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "

    Our organization accepts no liability for the content of this missive, or for the consequences of any actions taken on the basis of the information provided, unless that information is subsequently confirmed in writing. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "

    This message and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. This message contains confidential information and is intended only for addressee, if you are not the aforementioned addressee you should not disseminate, distribute or copy this missive. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "" + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/wey_yu/liaison/nda_long.dm b/code/modules/paperwork/prefab_papers/wey_yu/liaison/nda_long.dm new file mode 100644 index 000000000000..8f07339b1f2f --- /dev/null +++ b/code/modules/paperwork/prefab_papers/wey_yu/liaison/nda_long.dm @@ -0,0 +1,171 @@ +/datum/prefab_document/wey_yu/liaison/nda_long/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "WY Logo" + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "

    Non Disclosure Agreement

    " + dat += "

    WY442

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "This Non-disclosure Agreement is made effective as of [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")] by and between The Company and the United States Colonial Marines (the \"recipient\") of property and information regarding all operational procedures of .

    " + dat += "
    " + dat += "

    I . Confidential Information.
    The term \"Confidential Information\" means by any information which is proprietary to the Owner, whether or not owned or developed by the Owner, which is generally known other than by the Owner, which the Recipient may obtain through any direct or indirect contact with the owner, regardless of whether specifically identified as confidential or proprietary, Confidential Information shall include any information provided by the Owner concerning the business, technology and information of the Owner and any third party with which the owner deals, including, without limitation, business records and plans, trade secrets, technical data, product are ideas, contracts, financial information, pricing structure, health discounts, computer programs, listings and unknown wildlife, are all copyright and intellectual property. The nature of the information and the manner of disclosure are such that a reasonable person would understand is confidential.

    " + dat += "" + dat += "

    A. \"Confidential Information\" does not include:
    - Matters of public knowledge that result from disclosure by the Owner.
    - Information rightfully received by the recipient from a third party without a duty of confidentiality.
    - Information disclosed by operation contract of The Company.
    - Information disclosed by the recipient with the prior written consent of the Owner, and any other information that both parties agree in writing is not confidential.

    " + dat += "
    " + dat += "

    II. PROTECTION OF CONFIDENTIAL INFORMATION.
    The recipient understands and acknowledges that the Confidential Information has been developed or obtained by the owner of The Company by Investment of Significant time, effort and expense, and that the Confidential Information is valuable, special and a unique asset of the Owner which provides the Owner with significant competitive advantage, and needs to be protected from improper disclosure. In consideration for the receipt by the Recipient of the confidential Information, the Recipient agrees as follows:

    " + dat += "" + dat += "

    A. No Disclosure.
    The recipient will hold the confidential information in confidence and will not disclose the Confidential information to any person or entity without the prior written consent of the Owner.

    " + dat += "" + dat += "

    B. No copying/Modifying.
    The Recipient will not copy or modify any Confidential Information to any person or entity without the prior written consent of the Owner.

    " + dat += "" + dat += "

    C. Unauthorized Use.
    The Recipient shall promptly advise the Owner if the Recipient becomes aware of any possible unauthorized disclosures or use of the Confidential Information.

    " + dat += "" + dat += "

    D. application to employees.
    The Recipient shall not disclose any confidential Information to any employees of the Recipient, except those employees who are required to have the Confidential Information in order to perform jobs and duties in connection with the limited purpose of this Agreement. Each permitted employee to whom confidential information is disclosed shall sign a non-disclosure agreement substantially the same as this agreement at the request of the Owner.

    " + dat += "
    " + dat += "

    III . Unauthorized Disclosure of Information- Injunction.
    If it appears that the Recipient has disclosed (or has threatened to disclose) Confidential Information in violation of this Agreement, the Owner shall be entitled to a injunction to restrain the Recipient from disclosing the Confidential Information in whole or in part. The owner shall not be prohibited by this provision from pursuing other remedies, including a claim for losses and damages.

    " + dat += "
    " + dat += "

    IV. Non-Circumvention.
    For a period of five hundred (500) years after the end of the terms of this Agreement, the Recipient will not attempt to do business with or otherwise solicit any business contacts found or otherwise referred by owners to Recipient for the purpose of circumventing, the result of which shall be prevent the Owner from realizing or recognizing a profit, fees, or otherwise, without the specific written approval of the owner. If such circumvention shall occur the Owner shall be entitled to any Commissions due pursuant to this agreement or relating to such Transaction.

    " + dat += "
    " + dat += "

    V. Return of Confidential Information.
    Upon the written request of the owner, the recipient shall return to the owner all written material containing the Confidential Information. The recipient shall also deliver to the owner written statements signed by the Recipient certifying that all materials have been returned within one (1) days of receipt of the request.

    " + dat += "
    " + dat += "

    VI . Relationship of Parties.
    Neither party has an obligation under this agreement to purchase products by the owner under this claus you are free to purchase weapons within the owners inventory at the standard rate.

    " + dat += "
    " + dat += "

    VII. No Warranty.
    The Recipient acknowledges and agrees that the Confidential Information is provided on an \"AS IS\" basis. THE OWNER MAKES NO WARRANTIES, EXPRESS OR IMPLIED WITH RESPECT TO THE CONFIDENTIAL INFORMATION AND HEREBY EXPRESSLY DISCLAIMS ANY AND ALL IMPLIED WARRANTIES OR INJURIES OF MERCHANT-ABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO WAY SHALL THE OWNER BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, OR CONSEQUENTIAL DAMAGES IN CONNECTION WITH OR ARISING OUT OF THE PERFORMANCE OR USE OF ANY PORTION OF THE CONFIDENTIAL INFORMATION. The Owner does not represent or warrant that any product or business plans disclosed to the Recipient will be marketed or carried out as disclosed, or at all. Any actions taken by the Recipient in response to the disclosure of the Confidential Information shall be solely at the risk of the Recipient.

    " + dat += "
    " + dat += "

    VIII. Limited License to use.
    The Recipient Shall not acquire any intellectual property rights under this Agreement except the limited right to use as set forth above. The recipient acknowledges that, as between the Owner and the Recipient, the Confidential Information and all related copyrights and other intellectual property rights, are (and at all times will be) the property of the Owner, even if suggestions, comments, and/or ideas made by the Recipient are incorporated into the Confidential Information or related materials during the period of this Agreement.

    " + dat += "
    " + dat += "

    IX . Indemnity.
    Each party agrees to defend, indemnify, and hold harmless the other party and its officers, directors, agents, affiliates, representatives, and employees from any and all third party claims, demands, liabilities, costs and expenses, including reasonable attorney fees provided by the Owner. costs and expenses resulting from the indemnifying party's material breach of any duty, representation, or warranty under this Agreement.

    " + dat += "
    " + dat += "

    X . TERM.
    The obligations of this agreement shall survive 03/30/2293 from the Effective date or until the Owner sends the Recipient written notice releasing the Recipient from this Agreement. After that, the Recipient must continue to protect the confidential information that was received during the term of this agreement from unauthorized use or disclosure for a additional time of the Owners Choosing.

    " + dat += "
    " + dat += "

    XI. Signatories.
    This Agreement shall be executed by the named representative, on behalf of The Company and USS Almayer's Commander, on behalf of United States Colonial Marines and delivered in the manner prescribed by law as of the date first written above.

    " + dat += "

    A. The Company.
    Date: [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]
    Representative:
    Title:
    Signature:

    " + dat += "

    B. USCM.
    Date: [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]
    Representative:
    Rank:
    Signature:

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "

    Our organization accepts no liability for the content of this missive, or for the consequences of any actions taken on the basis of the information provided, unless that information is subsequently confirmed in writing. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "

    This message and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. This message contains confidential information and is intended only for addressee, if you are not the aforementioned addressee you should not disseminate, distribute or copy this missive. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "" + + + + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/wey_yu/liaison/nda_short.dm b/code/modules/paperwork/prefab_papers/wey_yu/liaison/nda_short.dm new file mode 100644 index 000000000000..32f10f303361 --- /dev/null +++ b/code/modules/paperwork/prefab_papers/wey_yu/liaison/nda_short.dm @@ -0,0 +1,142 @@ +/datum/prefab_document/wey_yu/liaison/nda_short/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "WY Logo" + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "

    Confidentiality Agreement

    " + dat += "

    WY441

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "

    I, , agree to a Confidentiality Agreement with the Weyland-Yutani (Space) Corporation that no information regarding the events that took place on the facility named and subsequently the USS Almayer is to be delivered publicly. Only qualified Corporate personnel whose identities have been confirmed will receive such information.

    " + dat += "

    " + dat += "Signature:
    " + dat += "Liaison Signature:
    " + dat += "Date: [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]" + dat += "

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "

    Our organization accepts no liability for the content of this missive, or for the consequences of any actions taken on the basis of the information provided, unless that information is subsequently confirmed in writing. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "

    This message and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. This message contains confidential information and is intended only for addressee, if you are not the aforementioned addressee you should not disseminate, distribute or copy this missive. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "" + + + + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/wey_yu/liaison/ops_report.dm b/code/modules/paperwork/prefab_papers/wey_yu/liaison/ops_report.dm new file mode 100644 index 000000000000..f8419d468267 --- /dev/null +++ b/code/modules/paperwork/prefab_papers/wey_yu/liaison/ops_report.dm @@ -0,0 +1,138 @@ +/datum/prefab_document/wey_yu/liaison/ops_report/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "

    Liaison Operations Report

    " + dat += "

    WY435

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "

    Index:
    " + dat += "Date: [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]
    " + dat += "To:
    " + dat += "Subject:

    " + dat += "

    " + dat += "
    " + dat += "

    Liaison Name:
    " + dat += "Signature:

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "

    This message and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. This message contains confidential information and is intended only for addressee, if you are not the aforementioned addressee you should not disseminate, distribute or copy this missive. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "" + + contents = dat diff --git a/code/modules/paperwork/prefab_papers/wey_yu/liaison/preserve_intent.dm b/code/modules/paperwork/prefab_papers/wey_yu/liaison/preserve_intent.dm new file mode 100644 index 000000000000..81af52075b77 --- /dev/null +++ b/code/modules/paperwork/prefab_papers/wey_yu/liaison/preserve_intent.dm @@ -0,0 +1,138 @@ +/datum/prefab_document/wey_yu/liaison/preserve_intent/New() + var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) + var/dat = "" + + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "
    " + dat += "WY Logo" + dat += "
    " + dat += "" + dat += "" + dat += "
    " + dat += "

    Affidavit of Intent to Preserve

    " + dat += "

    WY439

    " + dat += "
    " + dat += "
    " + dat += "" + dat += "" + dat += "" + dat += "
    " + dat += "

    I, , do hereby swear and affirm that they I will do everything within my power to preserve and protect the integrity and value of all proprietary interests of the Weyland Yutani (Space) Corporation on the surface of or above the surface of .

    " + dat += "

    Signature:
    Liaison Signature:
    Date: [time2text(REALTIMEOFDAY, "Day DD Month [GLOB.game_year]")]

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "

    Our organization accepts no liability for the content of this missive, or for the consequences of any actions taken on the basis of the information provided, unless that information is subsequently confirmed in writing. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "

    This message and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. This message contains confidential information and is intended only for addressee, if you are not the aforementioned addressee you should not disseminate, distribute or copy this missive. If you are not the intended recipient, you are notified that disclosing, copying, distributing or taking any action in reliance on the contents of this information is strictly prohibited.

    " + dat += "
    " + dat += "" + dat += "
    " + dat += "" + + + + + contents = dat diff --git a/code/modules/reagents/chemistry_machinery/chem_simulator.dm b/code/modules/reagents/chemistry_machinery/chem_simulator.dm index 13e051f5dc20..c637695632ac 100644 --- a/code/modules/reagents/chemistry_machinery/chem_simulator.dm +++ b/code/modules/reagents/chemistry_machinery/chem_simulator.dm @@ -610,7 +610,7 @@ var/datum/reagent/D = GLOB.chemical_reagents_list[id] var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) report.name = "Simulation result for [D.id]" - report.info += "

    Official Company Document
    Simulated Synthesis Report

    Result for [D.id]

    " + report.info += "

    Official Company Document
    Simulated Synthesis Report

    Result for [D.id]

    " report.generate(D) report.info += "

    This report was automatically printed by the Synthesis Simulator.
    The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[GLOB.game_year], [worldtime2text()]

    \n" playsound(loc, 'sound/machines/twobeep.ogg', 15, 1) diff --git a/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm b/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm index 967177bda978..038e0098ec66 100644 --- a/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm +++ b/code/modules/reagents/chemistry_machinery/reagent_analyzer.dm @@ -109,7 +109,7 @@ else var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) report.name = "Analysis of ERROR" - report.info += "

    Official Weyland-Yutani Document
    Reagent Analysis Print

    Analysis ERROR

    " + report.info += "

    Official Weyland-Yutani Document
    Reagent Analysis Print

    Analysis ERROR

    " report.info += "Result:
    Analysis failed for sample #[sample_number].

    \n" report.info += "Reason for error:
    [reason]
    \n" report.info += "

    This report was automatically printed by the A-XRF Scanner.
    The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[GLOB.game_year], [worldtime2text()]

    \n" @@ -120,7 +120,7 @@ report.name = "Analysis of [name]" var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper) - report.info += "

    Official Weyland-Yutani Document
    Automated A-XRF Report

    Analysis of [name]

    " + report.info += "

    Official Weyland-Yutani Document
    Automated A-XRF Report

    Analysis of [name]

    " if(sample_number) report.info += "Results for sample: #[sample_number]
    \n" report.generate(src, admin_spawned) diff --git a/colonialmarines.dme b/colonialmarines.dme index 643df4770fc4..75c8e5969fb8 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -89,6 +89,7 @@ #include "code\__DEFINES\objects.dm" #include "code\__DEFINES\origins.dm" #include "code\__DEFINES\pain.dm" +#include "code\__DEFINES\paperwork.dm" #include "code\__DEFINES\pred.dm" #include "code\__DEFINES\procpath.dm" #include "code\__DEFINES\qdel.dm" @@ -2200,6 +2201,16 @@ #include "code\modules\paperwork\paperbin.dm" #include "code\modules\paperwork\photocopier.dm" #include "code\modules\paperwork\photography.dm" +#include "code\modules\paperwork\prefab_papers.dm" +#include "code\modules\paperwork\prefab_papers\provost\military_police\apology_notice.dm" +#include "code\modules\paperwork\prefab_papers\provost\military_police\appeal_form.dm" +#include "code\modules\paperwork\prefab_papers\provost\military_police\confiscation_receipt.dm" +#include "code\modules\paperwork\prefab_papers\provost\military_police\dao_request.dm" +#include "code\modules\paperwork\prefab_papers\wey_yu\liaison\liability.dm" +#include "code\modules\paperwork\prefab_papers\wey_yu\liaison\nda_long.dm" +#include "code\modules\paperwork\prefab_papers\wey_yu\liaison\nda_short.dm" +#include "code\modules\paperwork\prefab_papers\wey_yu\liaison\ops_report.dm" +#include "code\modules\paperwork\prefab_papers\wey_yu\liaison\preserve_intent.dm" #include "code\modules\power\apc.dm" #include "code\modules\power\batteryrack.dm" #include "code\modules\power\breaker_box.dm" diff --git a/html/images/faxwylogo.png b/html/images/faxwylogo.png deleted file mode 100644 index a67bd212e122..000000000000 Binary files a/html/images/faxwylogo.png and /dev/null differ diff --git a/html/images/uscmlogo.png b/html/images/uscmlogo.png deleted file mode 100644 index 6a065b5b60b1..000000000000 Binary files a/html/images/uscmlogo.png and /dev/null differ diff --git a/html/images/wylogo.png b/html/images/wylogo.png deleted file mode 100644 index 499e868896d0..000000000000 Binary files a/html/images/wylogo.png and /dev/null differ diff --git a/icons/obj/items/paper.dmi b/icons/obj/items/paper.dmi index b15d4be6076d..1acee46afda5 100644 Binary files a/icons/obj/items/paper.dmi and b/icons/obj/items/paper.dmi differ diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 1b74cfdcf760..6314f448e8e1 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -45424,6 +45424,13 @@ }, /turf/open/floor/almayer/test_floor5, /area/almayer/squads/req) +"oTo" = ( +/obj/structure/filingcabinet/documentation/military_police{ + pixel_y = 24; + density = 0 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) "oTA" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ @@ -64137,7 +64144,7 @@ /turf/open/floor/almayer/red/northwest, /area/almayer/lifeboat_pumps/south1) "wvo" = ( -/obj/structure/filingcabinet, +/obj/structure/filingcabinet/documentation/liaison, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "wvE" = ( @@ -79999,7 +80006,7 @@ cmM tzd tzd sgi -bju +oTo wSm kAL xkd diff --git a/maps/templates/Chinook.dmm b/maps/templates/Chinook.dmm index de04fd7d5e66..671a84bab350 100644 --- a/maps/templates/Chinook.dmm +++ b/maps/templates/Chinook.dmm @@ -402,7 +402,7 @@ pixel_x = -8; pixel_y = 8 }, -/obj/item/tool/pen/fountain{ +/obj/item/tool/pen/multicolor/fountain{ pixel_y = 4; pixel_x = -8 }, @@ -1547,7 +1547,7 @@ "fC" = ( /obj/structure/surface/table/reinforced/black, /obj/item/paper_bin/uscm, -/obj/item/tool/pen/fountain{ +/obj/item/tool/pen/multicolor/fountain{ pixel_y = -3 }, /turf/open/floor/wood, @@ -1615,7 +1615,7 @@ pixel_y = 8; pixel_x = 6 }, -/obj/item/tool/pen/fountain{ +/obj/item/tool/pen/multicolor/fountain{ pixel_x = -8; pixel_y = 5 }, @@ -10423,7 +10423,7 @@ /turf/open/floor/almayer/test_floor5, /area/adminlevel/chinook/engineering) "Qs" = ( -/obj/item/tool/pen/fountain{ +/obj/item/tool/pen/multicolor/fountain{ pixel_x = 3; pixel_y = -1 }, @@ -10433,7 +10433,7 @@ pixel_y = 2 }, /obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen/fountain{ +/obj/item/tool/pen/multicolor/fountain{ pixel_x = 3; pixel_y = 3 }, @@ -10494,7 +10494,7 @@ pixel_y = 1; pixel_x = 1 }, -/obj/item/tool/pen/fountain{ +/obj/item/tool/pen/multicolor/fountain{ pixel_x = 10; pixel_y = 6 }, @@ -12556,7 +12556,7 @@ pixel_y = 8; pixel_x = 5 }, -/obj/item/tool/pen/fountain{ +/obj/item/tool/pen/multicolor/fountain{ pixel_x = 5; pixel_y = 6 }, diff --git a/html/images/ColonialSpaceGruntsEZ.png b/paper_reference_files/ColonialSpaceGruntsEZ.png similarity index 100% rename from html/images/ColonialSpaceGruntsEZ.png rename to paper_reference_files/ColonialSpaceGruntsEZ.png diff --git a/paper_reference_files/background_dark.jpg b/paper_reference_files/background_dark.jpg new file mode 100644 index 000000000000..7e6318e55dd1 Binary files /dev/null and b/paper_reference_files/background_dark.jpg differ diff --git a/paper_reference_files/background_dark2.jpg b/paper_reference_files/background_dark2.jpg new file mode 100644 index 000000000000..3f8bcbadecee Binary files /dev/null and b/paper_reference_files/background_dark2.jpg differ diff --git a/paper_reference_files/background_dark_fractal.png b/paper_reference_files/background_dark_fractal.png new file mode 100644 index 000000000000..772f316f8c62 Binary files /dev/null and b/paper_reference_files/background_dark_fractal.png differ diff --git a/html/images/faxbackground.jpg b/paper_reference_files/background_white.jpg similarity index 100% rename from html/images/faxbackground.jpg rename to paper_reference_files/background_white.jpg diff --git a/html/images/cmblogo.png b/paper_reference_files/logo_cmb.png similarity index 100% rename from html/images/cmblogo.png rename to paper_reference_files/logo_cmb.png diff --git a/paper_reference_files/logo_provost.png b/paper_reference_files/logo_provost.png new file mode 100644 index 000000000000..39f3c124e2c5 Binary files /dev/null and b/paper_reference_files/logo_provost.png differ diff --git a/html/images/upplogo.png b/paper_reference_files/logo_upp.png similarity index 100% rename from html/images/upplogo.png rename to paper_reference_files/logo_upp.png diff --git a/paper_reference_files/logo_uscm.png b/paper_reference_files/logo_uscm.png new file mode 100644 index 000000000000..81f15fff2d5c Binary files /dev/null and b/paper_reference_files/logo_uscm.png differ diff --git a/paper_reference_files/logo_wy.png b/paper_reference_files/logo_wy.png new file mode 100644 index 000000000000..59f38efb090c Binary files /dev/null and b/paper_reference_files/logo_wy.png differ diff --git a/paper_reference_files/logo_wy_inv.png b/paper_reference_files/logo_wy_inv.png new file mode 100644 index 000000000000..1359b64763c4 Binary files /dev/null and b/paper_reference_files/logo_wy_inv.png differ diff --git a/paper_reference_files/pmc_dispatch.png b/paper_reference_files/pmc_dispatch.png new file mode 100644 index 000000000000..f5c3e1c7c77c Binary files /dev/null and b/paper_reference_files/pmc_dispatch.png differ