mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] Adds the vintage PDA (#7213)
This commit is contained in:
@@ -54,7 +54,7 @@ var/datum/category_collection/underwear/global_underwear = new()
|
|||||||
|
|
||||||
//Backpacks
|
//Backpacks
|
||||||
var/global/list/backbaglist = list("Nothing", "Backpack", "Satchel", "Satchel Alt", "Messenger Bag", "Sports Bag", "Strapless Satchel") //VOREStation edit
|
var/global/list/backbaglist = list("Nothing", "Backpack", "Satchel", "Satchel Alt", "Messenger Bag", "Sports Bag", "Strapless Satchel") //VOREStation edit
|
||||||
var/global/list/pdachoicelist = list("Default", "Slim", "Old", "Rugged", "Holographic", "Wrist-Bound", "Slider")
|
var/global/list/pdachoicelist = list("Default", "Slim", "Old", "Rugged", "Holographic", "Wrist-Bound","Slider", "Vintage")
|
||||||
var/global/list/exclude_jobs = list(/datum/job/ai,/datum/job/cyborg)
|
var/global/list/exclude_jobs = list(/datum/job/ai,/datum/job/cyborg)
|
||||||
|
|
||||||
// Visual nets
|
// Visual nets
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
pref.backbag = 2 //Same as above
|
pref.backbag = 2 //Same as above
|
||||||
character.backbag = pref.backbag
|
character.backbag = pref.backbag
|
||||||
|
|
||||||
if(pref.pdachoice > 7 || pref.pdachoice < 1)
|
if(pref.pdachoice > 8 || pref.pdachoice < 1)
|
||||||
pref.pdachoice = 1
|
pref.pdachoice = 1
|
||||||
character.pdachoice = pref.pdachoice
|
character.pdachoice = pref.pdachoice
|
||||||
|
|
||||||
|
|||||||
@@ -147,6 +147,10 @@ var/global/list/obj/item/device/pda/PDAs = list()
|
|||||||
SPECIES_VR_TESHARI = 'icons/mob/species/teshari/pda_wrist.dmi',
|
SPECIES_VR_TESHARI = 'icons/mob/species/teshari/pda_wrist.dmi',
|
||||||
)
|
)
|
||||||
if(7) icon = 'icons/obj/pda_slider.dmi' //VOREStation edit
|
if(7) icon = 'icons/obj/pda_slider.dmi' //VOREStation edit
|
||||||
|
if(8)
|
||||||
|
icon = 'icons/obj/pda_vintage.dmi'
|
||||||
|
desc = "A vintage communication device. This device has been refitted for compatibility with modern messaging systems, ROM cartridges and ID cards. Despite its heavy modifications it does not feature voice communication."
|
||||||
|
|
||||||
else
|
else
|
||||||
icon = 'icons/obj/pda_old.dmi'
|
icon = 'icons/obj/pda_old.dmi'
|
||||||
log_debug("Invalid switch for PDA, defaulting to old PDA icons. [pdachoice] chosen.")
|
log_debug("Invalid switch for PDA, defaulting to old PDA icons. [pdachoice] chosen.")
|
||||||
|
|||||||
BIN
icons/obj/pda_vintage.dmi
Normal file
BIN
icons/obj/pda_vintage.dmi
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
Reference in New Issue
Block a user