PDA Fixes and Changes and Cargo Console Fix (#75768)

Was updating the documentation about PDAs on the wiki and saw some minor
issues, threw in the bug fix for issue
https://github.com/tgstation/tgstation/issues/75231 as well because why
not.
Also added the ability to put medipens into PDAs, they're small and
pen-like enough, right?
This commit is contained in:
Oreo
2023-06-05 00:18:26 +00:00
committed by GitHub
parent f55c31a8af
commit 5ad04bfd2e
8 changed files with 74 additions and 31 deletions
@@ -172,6 +172,10 @@
name = "Mime PDA"
json_config = 'code/datums/greyscale/json_configs/pda_mime.json'
/datum/greyscale_config/tablet/stripe_double
name = "Double Stripe PDA"
json_config = 'code/datums/greyscale/json_configs/pda_stripe_double.json'
/datum/greyscale_config/tablet/stripe_split
name = "Split Stripe PDA"
json_config = 'code/datums/greyscale/json_configs/pda_stripe_split.json'
@@ -14,7 +14,7 @@
},
{
"type": "icon_state",
"icon_state": "pda_stripe_split",
"icon_state": "pda_stripe_double",
"blend_mode": "overlay",
"color_ids": [ 3 ]
},
@@ -0,0 +1,27 @@
{
"pda": [
{
"type": "icon_state",
"icon_state": "pda_base",
"blend_mode": "overlay",
"color_ids": [ 1 ]
},
{
"type": "icon_state",
"icon_state": "pda_buttons",
"blend_mode": "overlay",
"color_ids": [ 2 ]
},
{
"type": "icon_state",
"icon_state": "pda_stripe_double",
"blend_mode": "overlay",
"color_ids": [ 3 ]
},
{
"type": "icon_state",
"icon_state": "pda_screen_borders",
"blend_mode": "overlay"
}
]
}