From 466b2988c05170b08de9b84de2a27def47390f00 Mon Sep 17 00:00:00 2001 From: Joshie <41561534+furrycactus@users.noreply.github.com> Date: Tue, 11 Aug 2020 19:45:32 +1000 Subject: [PATCH] Renames Data Crystals (#9633) --- .../hardware/portable_hard_drive.dm | 12 +++--- .../changelogs/furrycactus - floppy disks.yml | 41 +++++++++++++++++++ 2 files changed, 47 insertions(+), 6 deletions(-) create mode 100644 html/changelogs/furrycactus - floppy disks.yml diff --git a/code/modules/modular_computers/hardware/portable_hard_drive.dm b/code/modules/modular_computers/hardware/portable_hard_drive.dm index f5ca81f17b4..1d5df0d16c4 100644 --- a/code/modules/modular_computers/hardware/portable_hard_drive.dm +++ b/code/modules/modular_computers/hardware/portable_hard_drive.dm @@ -1,7 +1,7 @@ // These are basically USB data sticks and may be used to transfer files between devices /obj/item/computer_hardware/hard_drive/portable - name = "basic data crystal" - desc = "Small crystal with imprinted photonic circuits that can be used to store data. Its capacity is 16 GQ." + name = "basic data disk" + desc = "Small diskette with imprinted photonic circuits that can be used to store data. Its capacity is 16 GQ." power_usage = 10 icon_state = "flashdrive_basic" hardware_size = 1 @@ -9,8 +9,8 @@ origin_tech = list(TECH_DATA = 1) /obj/item/computer_hardware/hard_drive/portable/advanced - name = "advanced data crystal" - desc = "Small crystal with imprinted high-density photonic circuits that can be used to store data. Its capacity is 64 GQ." + name = "advanced data disk" + desc = "Small diskette with imprinted high-density photonic circuits that can be used to store data. Its capacity is 64 GQ." power_usage = 20 icon_state = "flashdrive_advanced" hardware_size = 1 @@ -18,8 +18,8 @@ origin_tech = list(TECH_DATA = 2) /obj/item/computer_hardware/hard_drive/portable/super - name = "super data crystal" - desc = "Small crystal with imprinted ultra-density photonic circuits that can be used to store data. Its capacity is 256 GQ." + name = "super data disk" + desc = "Small diskette with imprinted ultra-density photonic circuits that can be used to store data. Its capacity is 256 GQ." power_usage = 40 icon_state = "flashdrive_super" hardware_size = 1 diff --git a/html/changelogs/furrycactus - floppy disks.yml b/html/changelogs/furrycactus - floppy disks.yml new file mode 100644 index 00000000000..b4afae87033 --- /dev/null +++ b/html/changelogs/furrycactus - floppy disks.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: Furrycactus + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Renamed backup data crystals to data disks, to accurately reflect their sprites."