Skip to content

Commit a5c5441

Browse files
authored
Foxgirl invasion (#720)
1 parent b054555 commit a5c5441

19 files changed

Lines changed: 103 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"sweet_bow": [
3+
{
4+
"type": "icon_state",
5+
"icon_state": "sweet_bow",
6+
"blend_mode": "overlay",
7+
"color_ids": [ 1 ]
8+
}
9+
]
10+
}

maplestation.dme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6661,6 +6661,7 @@
66616661
#include "maplestation_modules\story_content\armored_corps\code\mecha_weapons\ppc_override.dm"
66626662
#include "maplestation_modules\story_content\armored_corps\code\melee\void_blade.dm"
66636663
#include "maplestation_modules\story_content\bell_equipment\code\bellclothing.dm"
6664+
#include "maplestation_modules\story_content\eveleen_equipment\code\clothing.dm"
66646665
#include "maplestation_modules\story_content\grey_equipment\code\greyclothing.dm"
66656666
#include "maplestation_modules\story_content\isaac_equipment\code\isaacclothing.dm"
66666667
#include "maplestation_modules\story_content\jessie_equipment\code\jessie_clothing.dm"

maplestation_modules/code/datums/greyscale/_greyscale_config.dm

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,12 @@
5959
name = "Held Umbrella, Right, Closed"
6060
icon_file = 'maplestation_modules/icons/mob/inhands/weapons/umbrellas_inhand_rh.dmi'
6161
json_config = 'code/datums/greyscale/json_configs/_umbrella_inhand.json'
62+
63+
/datum/greyscale_config/sweet_bow
64+
name = "Sweet Bow"
65+
icon_file = 'maplestation_modules/story_content/eveleen_equipment/icons/obj/head.dmi'
66+
json_config = 'code/datums/greyscale/json_configs/sweet_bow.json'
67+
68+
/datum/greyscale_config/sweet_bow/worn
69+
name = "Sweet Bow (Worn)"
70+
icon_file = 'maplestation_modules/story_content/eveleen_equipment/icons/mob/head.dmi'
3.11 KB
Binary file not shown.
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/obj/item/clothing/head/bow/sweet
2+
name = "sweet bow"
3+
desc = "A sweet bow that you can place on the back of your head."
4+
icon_state = "sweet_bow"
5+
icon_preview = 'maplestation_modules/story_content/eveleen_equipment/icons/obj/head.dmi'
6+
icon_state_preview = "sweet_bow"
7+
greyscale_config = /datum/greyscale_config/sweet_bow
8+
greyscale_config_worn = /datum/greyscale_config/sweet_bow/worn
9+
greyscale_colors = "#7b9ab5"
10+
flags_1 = IS_PLAYER_COLORABLE_1
11+
12+
/obj/item/clothing/under/rank/medical/paramedic/green
13+
name = "green paramedic jumpsuit"
14+
desc = "Similarly made like other paramedic's clothings, though it's green, likely brought from another sector."
15+
icon = 'maplestation_modules/story_content/eveleen_equipment/icons/obj/medical.dmi'
16+
worn_icon = 'maplestation_modules/story_content/eveleen_equipment/icons/mob/medical.dmi'
17+
18+
19+
/obj/item/clothing/suit/toggle/labcoat/medical/green
20+
name = "green medical labcoat"
21+
desc = "A suit that protects against minor chemical spills. This one is greener than you'd typically expect."
22+
icon = 'maplestation_modules/story_content/eveleen_equipment/icons/obj/labcoat.dmi'
23+
worn_icon = 'maplestation_modules/story_content/eveleen_equipment/icons/mob/labcoat.dmi'
24+
icon_state = "labcoat_med"
25+
26+
/obj/item/clothing/neck/mantle
27+
name = "hazard mantle"
28+
desc = "A mantle made of fire and acid proof materials to protect the wearer."
29+
icon = 'maplestation_modules/story_content/eveleen_equipment/icons/obj/mantle.dmi'
30+
worn_icon = 'maplestation_modules/story_content/eveleen_equipment/icons/mob/mantle.dmi'
31+
icon_state = "light"
32+
inhand_icon_state = null
33+
w_class = WEIGHT_CLASS_SMALL
34+
body_parts_covered = CHEST|ARMS
35+
resistance_flags = FIRE_PROOF | ACID_PROOF
36+
37+
/obj/item/clothing/gloves/latex/nitrile/green
38+
name = "green nitrile gloves"
39+
desc = "Pricy sterile gloves that are thicker than latex. And it's also green."
40+
icon = 'maplestation_modules/story_content/eveleen_equipment/icons/obj/gloves.dmi'
41+
worn_icon = 'maplestation_modules/story_content/eveleen_equipment/icons/mob/gloves.dmi'
42+
greyscale_colors = "#298b32"
43+
44+
/obj/item/clothing/shoes/medical/green
45+
name = "green medical shoes"
46+
desc = "Comfortable-looking shoes, though also quite distinct."
47+
icon = 'maplestation_modules/story_content/eveleen_equipment/icons/obj/shoes.dmi'
48+
icon_state = "medical"
49+
worn_icon = 'maplestation_modules/story_content/eveleen_equipment/icons/mob/shoes.dmi'
50+
51+
/datum/loadout_item/head/sweet_bow
52+
name = "Sweet Bow"
53+
item_path = /obj/item/clothing/head/bow/sweet
54+
additional_displayed_text = list("Character Item")
55+
56+
/datum/loadout_item/under/jumpsuit/green_paramedic
57+
name = "Green Paramedic Jumpsuit"
58+
item_path = /obj/item/clothing/under/rank/medical/paramedic/green
59+
additional_displayed_text = list("Character Item")
60+
61+
/datum/loadout_item/suit/green_labcoat
62+
name = "Green Medical Labcoat"
63+
item_path = /obj/item/clothing/suit/toggle/labcoat/medical/green
64+
additional_displayed_text = list("Character Item")
65+
66+
/datum/loadout_item/neck/mantle
67+
name = "Hazard Mantle"
68+
item_path = /obj/item/clothing/neck/mantle
69+
70+
/datum/loadout_item/gloves/green_nitrile
71+
name = "Green Nitrile Gloves"
72+
item_path = /obj/item/clothing/gloves/latex/nitrile/green
73+
additional_displayed_text = list("Character Item")
74+
75+
/datum/loadout_item/shoes/green_medical
76+
name = "green medical shoes"
77+
item_path = /obj/item/clothing/shoes/medical/green
78+
additional_displayed_text = list("Character Item")
79+
80+
/datum/sprite_accessory/hair/nia
81+
name = "Nia"
82+
icon = 'maplestation_modules/icons/mob/human_face.dmi'
83+
icon_state = "hair_nia"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)