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

[MODULAR] Assorted Ramatae Fixening #139

Merged
merged 2 commits into from
Oct 12, 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
4 changes: 4 additions & 0 deletions modular_doppler/loadout_categories/categories/gloves.dm
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,7 @@
/datum/loadout_item/gloves/latex
name = "Latex Gloves"
item_path = /obj/item/clothing/gloves/latex

/datum/loadout_item/gloves/translationgloves
name = "Translation Gloves"
item_path = /obj/item/clothing/gloves/radio
4 changes: 0 additions & 4 deletions modular_doppler/loadout_categories/categories/inhands.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,3 @@
/datum/loadout_item/inhand/slimpack
name = "Custom Flatpack"
item_path = /obj/item/storage/backpack/satchel/flat/empty/custom

/datum/loadout_item/inhand/translationgloves
name = "Translation Gloves"
item_path = /obj/item/clothing/gloves/radio
21 changes: 21 additions & 0 deletions modular_doppler/modular_cosmetics/code/suits/basesuits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,33 @@



/// SPACESUITS
/obj/item/clothing/head/helmet/space
supported_bodyshapes = list(BODYSHAPE_HUMANOID, BODYSHAPE_SNOUTED)
bodyshape_icon_files = list(BODYSHAPE_HUMANOID_T = 'icons/mob/clothing/head/spacehelm.dmi',
BODYSHAPE_SNOUTED_T = 'modular_doppler/modular_cosmetics/icons/mob/head/spacehelm_muzzled.dmi')

/obj/item/clothing/suit/space
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION
supported_bodyshapes = list(BODYSHAPE_HUMANOID, BODYSHAPE_DIGITIGRADE)
bodyshape_icon_files = list(BODYSHAPE_HUMANOID_T = 'icons/mob/clothing/suits/spacesuit.dmi',
BODYSHAPE_DIGITIGRADE_T = 'modular_doppler/modular_cosmetics/icons/mob/suit/spacesuit_digi.dmi')

/// RADSUITS
/obj/item/clothing/head/utility/radiation
supported_bodyshapes = list(BODYSHAPE_HUMANOID, BODYSHAPE_SNOUTED)
bodyshape_icon_files = list(BODYSHAPE_HUMANOID_T = 'icons/mob/clothing/head/utility.dmi',
BODYSHAPE_SNOUTED_T = 'modular_doppler/modular_cosmetics/icons/mob/head/basehead_muzzled.dmi')

/obj/item/clothing/suit/utility/radiation
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION
supported_bodyshapes = list(BODYSHAPE_HUMANOID, BODYSHAPE_DIGITIGRADE)
bodyshape_icon_files = list(BODYSHAPE_HUMANOID_T = 'icons/mob/clothing/suits/utility.dmi',
BODYSHAPE_DIGITIGRADE_T = 'modular_doppler/modular_cosmetics/icons/mob/suit/suit_digi.dmi')



/// FLAKY SUITS
/obj/item/clothing/suit/chaplainsuit
supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION
supported_bodyshapes = list(BODYSHAPE_HUMANOID, BODYSHAPE_DIGITIGRADE)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@
/obj/item/organ/external/tail/humanoid
preference = "feature_humanoid_tail"
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/humanoid

/datum/bodypart_overlay/mutant/tail/humanoid
Expand All @@ -207,6 +208,7 @@
/obj/item/organ/external/tail/alien
preference = "feature_alien_tail"
dna_block = null
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/alien

/datum/bodypart_overlay/mutant/tail/alien
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

/mob/living/carbon/human/species/ramatan
race = /datum/species/ramatan

/datum/species/ramatan
// The Ramatae of Aadia III - The Origin
name = "\improper Ramatan"
Expand Down
Loading