Skip to content

Commit

Permalink
Merge pull request #172 from Bird-Lounge/the-drippening
Browse files Browse the repository at this point in the history
[MODULAR] The Drippening
  • Loading branch information
Nerev4r authored Oct 25, 2024
2 parents e7e5236 + c21c17d commit a23e2d1
Show file tree
Hide file tree
Showing 29 changed files with 1,055 additions and 0 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions modular_doppler/loadout_categories/categories/shoes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@
name = "Jackboots"
item_path = /obj/item/clothing/shoes/jackboots

/datum/loadout_item/shoes/jackboots/greyscale
name = "Custom Jackboots"
item_path = /obj/item/clothing/shoes/jackboots/recolorable

/datum/loadout_item/shoes/workboots
name = "Work Boots"
item_path = /obj/item/clothing/shoes/workboots
Expand Down Expand Up @@ -95,6 +99,26 @@
name = "Colonial Half-boots"
item_path = /obj/item/clothing/shoes/jackboots/colonial

/datum/loadout_item/shoes/colonial_boots/greyscale
name = "Custom Colonial Half-boots"
item_path = /obj/item/clothing/shoes/jackboots/colonial/greyscale

/datum/loadout_item/shoes/frontier_boots
name = "Heavy Boots"
item_path = /obj/item/clothing/shoes/jackboots/frontier_colonist

/datum/loadout_item/shoes/greyscale_laceups
name = "Custom Laceups"
item_path = /obj/item/clothing/shoes/colorable_laceups

/datum/loadout_item/shoes/greyscale_sandals
name = "Custom Sandals"
item_path = /obj/item/clothing/shoes/colorable_sandals

/datum/loadout_item/shoes/wraps
name = "Cloth Footwraps"
item_path = /obj/item/clothing/shoes/wraps

/datum/loadout_item/shoes/wraps/leggy
name = "Cloth Legwraps"
item_path = /obj/item/clothing/shoes/wraps/leggy
82 changes: 82 additions & 0 deletions modular_doppler/loadout_categories/categories/undersuit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@
name = "Shorts"
item_path = /obj/item/clothing/under/shorts

/datum/loadout_item/undersuit/pants/shorts/shorter
name = "Short Shorts"
item_path = /obj/item/clothing/under/shorts/shorter

/datum/loadout_item/undersuit/pants/shorts/shorter/shortest
name = "Shortest Shorts"
item_path = /obj/item/clothing/under/shorts/shorter/shortest

/datum/loadout_item/undersuit/pants/slacks
name = "Slacks"
item_path = /obj/item/clothing/under/pants/slacks
Expand All @@ -85,6 +93,14 @@
name = "Jean Shorts"
item_path = /obj/item/clothing/under/shorts/jeanshorts

/datum/loadout_item/undersuit/pants/jeans/shorts/shorter
name = "Short Jean Shorts"
item_path = /obj/item/clothing/under/shorts/shorter/jeans

/datum/loadout_item/undersuit/pants/jeans/shorts/shorter/shortest
name = "Shortest Jean Shorts"
item_path = /obj/item/clothing/under/shorts/shorter/jeans/shortest

/datum/loadout_item/undersuit/pants/track
name = "Track Pants"
item_path = /obj/item/clothing/under/pants/track
Expand All @@ -97,6 +113,10 @@
name = "JUNCO megacargo pants"
item_path = /obj/item/clothing/under/pants/big_pants

/datum/loadout_item/undersuit/pants/skirt
name = "Simple Skirt"
item_path = /obj/item/clothing/under/shorts/shorter/skirt

/*
* BUTTONDOWNS
*/
Expand Down Expand Up @@ -174,6 +194,68 @@
name = "Strapless Dress"
item_path = /obj/item/clothing/under/dress/doppler/strapless

/// JAPANESE/LUNAR BREAKER

/datum/loadout_item/undersuit/dress/qipao
name = "Qipao"
item_path = /obj/item/clothing/under/dress/doppler/qipao

/datum/loadout_item/undersuit/dress/qipao/customtrim
name = "Qipao (Custom Trim)"
item_path = /obj/item/clothing/under/dress/doppler/qipao/customtrim

/datum/loadout_item/undersuit/dress/cheongsam
name = "Cheongsam"
item_path = /obj/item/clothing/under/dress/doppler/cheongsam

/datum/loadout_item/undersuit/dress/cheongsam/customtrim
name = "Cheongsam (Custom Trim)"
item_path = /obj/item/clothing/under/dress/doppler/cheongsam/customtrim

/datum/loadout_item/undersuit/dress/yukata
name = "Basic Yukata"
item_path = /obj/item/clothing/under/dress/doppler/yukata

/datum/loadout_item/undersuit/dress/yukata/tg
name = "Yukata"
item_path = /obj/item/clothing/under/costume/yukata

/datum/loadout_item/undersuit/dress/yukata/tg/greyscale
name = "Custom Yukata"
item_path = /obj/item/clothing/under/costume/yukata/greyscale

/datum/loadout_item/undersuit/dress/yukata/tg/green
name = "Aqua Yukata"
item_path = /obj/item/clothing/under/costume/yukata/green

/datum/loadout_item/undersuit/dress/yukata/tg/green/greyscale
name = "Custom Floral Yukata"
item_path = /obj/item/clothing/under/costume/yukata/green/greyscale

/datum/loadout_item/undersuit/dress/yukata/tg/white
name = "White Yukata"
item_path = /obj/item/clothing/under/costume/yukata/white

/datum/loadout_item/undersuit/dress/yukata/tg/white/greyscale
name = "Custom Snowy Yukata"
item_path = /obj/item/clothing/under/costume/yukata/white/greyscale

/datum/loadout_item/undersuit/dress/kimono
name = "Kimono"
item_path = /obj/item/clothing/under/costume/kimono

/datum/loadout_item/undersuit/dress/kimono/greyscale
name = "Custom Kimono"
item_path = /obj/item/clothing/under/costume/kimono/greyscale

/datum/loadout_item/undersuit/dress/kimono/red
name = "Red Kimono"
item_path = /obj/item/clothing/under/costume/kimono/red

/datum/loadout_item/undersuit/dress/kimono/purple
name = "Purple Kimono"
item_path = /obj/item/clothing/under/costume/kimono/purple

/*
* MISCELLANEOUS
*/
Expand Down
55 changes: 55 additions & 0 deletions modular_doppler/modular_cosmetics/GAGS/greyscale_configs_shoes.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/* \ / \/ \/ \/ / ,
\ \ \/ \/ \/ \ \/ \/ /
.\ \/ \/ \/ \/ \/ / / /
*hedgehog noise* ) ' / / \/ \/ \/ \/ \/ \ \/ \
This dm contains \ .' ) \/ \/ \/ \/ \/ \/ \ / \
all face grayscales \ / o ) \/ \/ \/ \/ \/ \/ \// /
o'_ ',__ .' ,.,.,.,.,.,.,.,'- '
// \\ // \\
'' '' '' ''
*/

// WRAPS

/datum/greyscale_config/legwraps
name = "Legwraps"
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/shoes/casual.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/shoes/wraps.json'

/datum/greyscale_config/legwraps/worn
name = "Legwraps (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/shoes/casual.dmi'

/datum/greyscale_config/legwraps/worn/digi
name = "Legwraps (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/shoes/casual_digi.dmi'

// CASUAL OPTIONS

/datum/greyscale_config/casualshoes
name = "Casual Shoes"
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/shoes/casual.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/shoes/casual.json'

/datum/greyscale_config/casualshoes/worn
name = "Casual Shoes (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/shoes/casual.dmi'

/datum/greyscale_config/casualshoes/worn/digi
name = "Casual Shoes (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/shoes/casual_digi.dmi'

// FANCY BOOTS

/datum/greyscale_config/boots
name = "Boots"
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/shoes/casual.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/shoes/boots.json'

/datum/greyscale_config/boots/worn
name = "Boots (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/shoes/casual.dmi'

/datum/greyscale_config/boots/worn/digi
name = "Boots (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/shoes/casual_digi.dmi'
152 changes: 152 additions & 0 deletions modular_doppler/modular_cosmetics/GAGS/greyscale_configs_under.dm
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,155 @@
/datum/greyscale_config/pentagram_dress/worn
name = "Pentagram Strapped Dress (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/GAGS/icons/mob/under.dmi'

/// LUNAR JAPANESE SECTION

/datum/greyscale_config/lunar_japanese
name = "Lunar Japanese Costume"
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/dresses.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/lunar_japanese.json'

/datum/greyscale_config/lunar_japanese/worn
name = "Lunar Japanese Costume (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses.dmi'

/datum/greyscale_config/lunar_japanese/worn/digi
name = "Lunar Japanese Costume (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses_digi.dmi'

/datum/greyscale_config/lunar_japanese/bicol
name = "Bicolor Lunar Japanese Costume"
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/lunar_japanese_bicol.json'

/datum/greyscale_config/lunar_japanese/bicol/worn
name = "Bicolor Lunar Japanese Costume (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses.dmi'

/datum/greyscale_config/lunar_japanese/bicol/worn/digi
name = "Bicolor Lunar Japanese Costume (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses_digi.dmi'

/datum/greyscale_config/lunar_japanese/tricol
name = "Tricolor Lunar Japanese Costume"
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/lunar_japanese_tricol.json'

/datum/greyscale_config/lunar_japanese/tricol/worn
name = "Tricolor Lunar Japanese Costume (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses.dmi'

/datum/greyscale_config/lunar_japanese/tricol/worn/digi
name = "Tricolor Lunar Japanese Costume (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses_digi.dmi'

/// GAGS-IFIED TG LUNAR JAPANESE SECTION

/datum/greyscale_config/lunar_japanese/tg
name = "TG Lunar Japanese Costume"
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/lunar_japanese_tg.json'

/datum/greyscale_config/lunar_japanese/tg/worn
name = "TG Lunar Japanese Costume (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses.dmi'

/datum/greyscale_config/lunar_japanese/tg/worn/digi
name = "TG Lunar Japanese Costume (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses_digi.dmi'

/datum/greyscale_config/lunar_japanese/tg/decorated
name = "Decorated TG Lunar Japanese Costume"
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/lunar_japanese_tg_decorated.json'

/datum/greyscale_config/lunar_japanese/tg/decorated/worn
name = "Decorated TG Lunar Japanese Costume (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses.dmi'

/datum/greyscale_config/lunar_japanese/tg/decorated/worn/digi
name = "Decorated TG Lunar Japanese Costume (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/dresses_digi.dmi'



/////////
//PANTS//
/////////

/datum/greyscale_config/slacks
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/pants.dmi'

/datum/greyscale_config/slacks/worn
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants.dmi'

/datum/greyscale_config/slacks/worn/digi
name = "Slacks (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants_digi.dmi'

/datum/greyscale_config/shorts
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/pants.dmi'

/datum/greyscale_config/shorts/worn
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants.dmi'

/datum/greyscale_config/shorts/worn/digi
name = "Shorts (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants_digi.dmi'

/datum/greyscale_config/jeans
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/pants.dmi'

/datum/greyscale_config/jeans/worn
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants.dmi'

/datum/greyscale_config/jeans/worn/digi
name = "Jeans (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants_digi.dmi'

/datum/greyscale_config/jeanshorts
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/pants.dmi'

/datum/greyscale_config/jeanshorts/worn
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants.dmi'

/datum/greyscale_config/jeanshorts/worn/digi
name = "Jeans Shorts (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants_digi.dmi'

/// CUSTOM PANTS GAGSIFICATIONS

/datum/greyscale_config/camo_pants
name = "Camo Pants"
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/pants.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/camo_pants.json'

/datum/greyscale_config/camo_pants/worn
name = "Camo Pants (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants.dmi'

/datum/greyscale_config/camo_pants/worn/digi
name = "Camo Pants (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants_digi.dmi'

/datum/greyscale_config/track_pants
name = "Track Pants"
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/pants.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/track_pants.json'

/datum/greyscale_config/track_pants/worn
name = "Track Pants (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants.dmi'

/datum/greyscale_config/track_pants/worn/digi
name = "Track Pants (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants_digi.dmi'

/datum/greyscale_config/skimpypants
name = "Skimpy Pants"
icon_file = 'modular_doppler/modular_cosmetics/icons/obj/under/pants.dmi'
json_config = 'modular_doppler/modular_cosmetics/GAGS/json_configs/under/skimpypants.json'

/datum/greyscale_config/skimpypants/worn
name = "Skimpy Pants (Worn)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants.dmi'

/datum/greyscale_config/skimpypants/worn/digi
name = "Skimpy Pants (Worn, Digi)"
icon_file = 'modular_doppler/modular_cosmetics/icons/mob/under/pants_digi.dmi'
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"boots": [
{
"type": "icon_state",
"icon_state": "boots",
"blend_mode": "overlay",
"color_ids": [ 1 ]
}
],
"boots_colonial": [
{
"type": "icon_state",
"icon_state": "boots_colonial",
"blend_mode": "overlay",
"color_ids": [ 1 ]
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"sandals": [
{
"type": "icon_state",
"icon_state": "sandals",
"blend_mode": "overlay",
"color_ids": [ 1 ]
}
],
"laceups": [
{
"type": "icon_state",
"icon_state": "laceups",
"blend_mode": "overlay",
"color_ids": [ 1 ]
}
]
}
Loading

0 comments on commit a23e2d1

Please sign in to comment.