Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds an Echo Fighter for Randall #577

Merged
merged 3 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
icon = 'maplestation_modules/icons/mob/human_face.dmi'
icon_state = "hair_oldstriped"

/datum/sprite_accessory/hair/oldmanyaoithesequel
name = "Crawling Chaos"
icon = 'maplestation_modules/icons/mob/human_face.dmi'
icon_state = "hair_nyarl"

/datum/sprite_accessory/hair/fruity
name = "Fruity"
icon = 'maplestation_modules/icons/mob/human_face.dmi'
Expand Down
Binary file modified maplestation_modules/icons/mob/human_face.dmi
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
resistance_flags = INDESTRUCTIBLE
clothing_traits = list(TRAIT_PACIFISM, TRAIT_VIRUSIMMUNE, TRAIT_NOHUNGER, TRAIT_NOBLOOD, TRAIT_NOBREATH, TRAIT_NODEATH) //so my ass isnt spending 5 minutes roundstart loading these on but if someone steals his clothes itll be really funny

/obj/item/clothing/under/jumpsuit/randallsuit/nyarl
name = "even more expensive suit"
desc = "An extremely well fitted suit. The shirt is tailored with a cold shoulder style and the whole outfit is covered in weird out of place belts."
icon_state = "nyarlsuit"

/obj/item/clothing/suit/randallcoat
name = "dress coat"
desc = "A dress coat worn loosely around the shoulders. It's adorned with gold and jewels."
Expand All @@ -20,6 +25,10 @@
can_be_bloody = FALSE
resistance_flags = INDESTRUCTIBLE

/obj/item/clothing/suit/randallcoat/nyarl
name = "loose coat"
desc = "A dress coat worn around the shoulders, billowing around them. Very soft."
icon_state = "nyarlcoat"

/obj/item/clothing/shoes/randallboots
name = "strange leather boots"
Expand All @@ -31,6 +40,9 @@
can_be_tied = FALSE
resistance_flags = INDESTRUCTIBLE

/obj/item/clothing/shoes/randallboots/nyarl
icon_state = "nyarlboots"

/obj/item/clothing/gloves/randallgloves
name = "clawed gloves"
desc = "Solid black gloves with a single claw ring on each."
Expand All @@ -40,6 +52,11 @@
can_be_bloody = FALSE
resistance_flags = INDESTRUCTIBLE

/obj/item/clothing/gloves/randallgloves/nyarl
name = "clawed gloves"
desc = "Solid black gloves with a claw ring on each finger. Must be really annoying."
icon_state = "nyarlgloves"

/obj/item/clothing/gloves/randallgloves/Initialize(mapload)
. = ..()
AddElement(/datum/element/glove_slapper)
Expand All @@ -52,3 +69,11 @@
shoes = /obj/item/clothing/shoes/randallboots
gloves = /obj/item/clothing/gloves/randallgloves
l_hand = /obj/item/cane

/datum/outfit/nyarl
name = "The Crawling Chaos"

uniform = /obj/item/clothing/under/jumpsuit/randallsuit/nyarl
suit = /obj/item/clothing/suit/randallcoat/nyarl
shoes = /obj/item/clothing/shoes/randallboots/nyarl
gloves = /obj/item/clothing/gloves/randallgloves/nyarl
Loading