-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
148 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
maplestation_modules/code/modules/clothing/shoes/laceup.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/obj/item/clothing/shoes/laceup | ||
name = "black laceup shoes" | ||
|
||
/obj/item/clothing/shoes/laceup/burgundy | ||
name = "burgundy laceup shoes" | ||
icon = 'maplestation_modules/icons/obj/clothing/shoes/laceups.dmi' | ||
icon_state = "burgundy" | ||
worn_icon = 'maplestation_modules/icons/mob/clothing/shoes/laceups.dmi' | ||
|
||
/obj/item/clothing/shoes/laceup/brown | ||
name = "brown laceup shoes" | ||
icon = 'maplestation_modules/icons/obj/clothing/shoes/laceups.dmi' | ||
icon_state = "brown" | ||
worn_icon = 'maplestation_modules/icons/mob/clothing/shoes/laceups.dmi' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
31 changes: 31 additions & 0 deletions
31
maplestation_modules/story_content/localnode_equipment/localnode_core.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* #Localnode's core. | ||
* This is a special core item for the strange alien AI localnode. | ||
* A character can talk as localnode when held, as this is a dual char. | ||
* Coded by Constellado, made for Blacklist 897 | ||
*/ | ||
|
||
/obj/item/localnode | ||
name = "LocalNode#4248" | ||
desc = "It looks like a basketball sized blue orb, however it looks like it had bits broken off with a hammer a few times before covering it with superglue and rolling it in a box of computer parts" | ||
icon = 'maplestation_modules/story_content/localnode_equipment/sprites/localnode.dmi' | ||
icon_state = "localnode" | ||
lefthand_file = 'maplestation_modules/story_content/localnode_equipment/sprites/localnode_inhand_lh.dmi' | ||
righthand_file = 'maplestation_modules/story_content/localnode_equipment/sprites/localnode_inhand_rh.dmi' | ||
inhand_icon_state = "localnode" | ||
var/item_chat_color = "#0e5807" | ||
var/voice_name = "LocalNode#4248" | ||
|
||
/obj/item/localnode/attack_self(mob/user) | ||
playsound(src.loc, 'sound/machines/buzz-sigh.ogg', 35, TRUE) | ||
|
||
/obj/item/localnode/talk_into(atom/movable/A, message, channel, list/spans, datum/language/language, list/message_mods) | ||
var/mob/M = A | ||
if (istype(M)) | ||
M.log_talk(message, LOG_SAY, tag="LocalNode") | ||
|
||
chat_color = item_chat_color// this feels cursed to call this very time but i cant get it to work | ||
say(message, language, sanitize = FALSE) | ||
return NOPASS | ||
|
||
/obj/item/localnode/GetVoice() | ||
return voice_name |
Binary file added
BIN
+1.23 KB
maplestation_modules/story_content/localnode_equipment/sprites/localnode.dmi
Binary file not shown.
Binary file added
BIN
+1.46 KB
maplestation_modules/story_content/localnode_equipment/sprites/localnode_inhand_lh.dmi
Binary file not shown.
Binary file added
BIN
+1.46 KB
maplestation_modules/story_content/localnode_equipment/sprites/localnode_inhand_rh.dmi
Binary file not shown.
46 changes: 46 additions & 0 deletions
46
maplestation_modules/story_content/nurse_equipment/code/vinceclothing.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// -- nurse outfit -- | ||
|
||
/obj/item/clothing/under/dress/vince | ||
name = "violet nurse uniform" | ||
desc = "A short violet nurse dress, lined with subtle red and pink hues." | ||
icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_item.dmi' | ||
worn_icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_worn.dmi' | ||
icon_state = "vincedress" | ||
resistance_flags = INDESTRUCTIBLE | ||
|
||
/obj/item/clothing/shoes/vince | ||
name = "slick syringe heels" | ||
desc = "Black pumps with decorative syringes making the heels. They're decorative, right?" | ||
icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_item.dmi' | ||
worn_icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_worn.dmi' | ||
icon_state = "vinceshoes" | ||
resistance_flags = INDESTRUCTIBLE | ||
|
||
/obj/item/clothing/shoes/vince/Initialize(mapload) | ||
. = ..() | ||
AddComponent( \ | ||
/datum/component/shoe_footstep, \ | ||
sounds = list( \ | ||
'maplestation_modules/sound/items/highheel1.ogg', \ | ||
'maplestation_modules/sound/items/highheel2.ogg', \ | ||
), \ | ||
volume = 55, \ | ||
chance_per_play = 50, \ | ||
can_tape = TRUE, \ | ||
) | ||
|
||
/obj/item/clothing/head/costume/vince | ||
name = "violet nurse cap" | ||
desc = "A violet nurse cap with a deep red 'X' on it. Shouldn't violate the Geneva Convention." | ||
icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_item.dmi' | ||
worn_icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_worn.dmi' | ||
icon_state = "vincecap" | ||
resistance_flags = INDESTRUCTIBLE | ||
|
||
/obj/item/clothing/gloves/vince | ||
name = "buckled black gloves" | ||
desc = "Slick black gloves with a neon green palm and pink lining. Poisonous!" | ||
icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_item.dmi' | ||
worn_icon = 'maplestation_modules/story_content/nurse_equipment/icons/vince_worn.dmi' | ||
icon_state = "vincegloves" | ||
resistance_flags = INDESTRUCTIBLE |
Binary file added
BIN
+759 Bytes
maplestation_modules/story_content/nurse_equipment/icons/vince_item.dmi
Binary file not shown.
Binary file added
BIN
+903 Bytes
maplestation_modules/story_content/nurse_equipment/icons/vince_worn.dmi
Binary file not shown.