Skip to content

Commit 2d63a7c

Browse files
authored
Big PDA and lore item fix. (#724)
1 parent d377281 commit 2d63a7c

6 files changed

Lines changed: 41 additions & 1 deletion

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"pda": [
3+
{
4+
"type": "icon_state",
5+
"icon_state": "pda_base",
6+
"blend_mode": "overlay",
7+
"color_ids": [ 1 ]
8+
},
9+
{
10+
"type": "icon_state",
11+
"icon_state": "pda_buttons",
12+
"blend_mode": "overlay",
13+
"color_ids": [ 2 ]
14+
},
15+
{
16+
"type": "icon_state",
17+
"icon_state": "pda_screen_borders",
18+
"blend_mode": "overlay"
19+
}
20+
]
21+
}

maplestation.dme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6676,6 +6676,7 @@
66766676
#include "maplestation_modules\story_content\shiro_equipment\code\shiroclothing.dm"
66776677
#include "maplestation_modules\story_content\story_posters\code\contraband.dm"
66786678
#include "maplestation_modules\story_content\stranger_equipment\code\strangerclothing.dm"
6679+
#include "maplestation_modules\story_content\volkan_equipment\code\councilgifts.dm"
66796680
#include "maplestation_modules\story_content\volkan_equipment\code\sunitems.dm"
66806681
#include "maplestation_modules\story_content\volkan_equipment\code\volkancomponents.dm"
66816682
#include "maplestation_modules\story_content\volkan_equipment\code\volkanitems.dm"
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* # The code for items that Volkan or his AIs make for others or gifts. Usually this is stuff made by CaLE
3+
*/
4+
5+
//the BIG PDA that CaLE made for Airi.
6+
/obj/item/modular_computer/pda/big
7+
name = "Robust PDA"
8+
desc = "A heavyduty PDA with big buttons, a super thick case, and big connectors."
9+
icon = 'maplestation_modules/story_content/volkan_equipment/icons/pda.dmi'
10+
base_icon_state = "tablet"
11+
greyscale_config = /datum/greyscale_config/tablet/big
12+
13+
/datum/greyscale_config/tablet/big
14+
name = "Robust PDA"
15+
icon_file = 'maplestation_modules/story_content/volkan_equipment/icons/pda.dmi'
16+
json_config = 'code/datums/greyscale/json_configs/_pda_big.json'
17+
18+

maplestation_modules/story_content/volkan_equipment/code/volkanitems.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116

117117
///Volkan's umbrella. Stops radiation.
118118
/obj/item/umbrella/volkan
119-
name = "Volkan's umbrella"
119+
name = "radiation shielded umbrella"
120120
desc = "A very thick, almost metallic umbrella. It has a dark black plasticky rim on the edge."
121121
icon = 'maplestation_modules/story_content/volkan_equipment/icons/umbrellas.dmi'
122122
icon_state = "umbrella_volkan"
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)