Skip to content

Commit

Permalink
Ramatan Stealth Buffs Pt 1 - tailwag, gloves, suit
Browse files Browse the repository at this point in the history
  • Loading branch information
CliffracerX committed Oct 12, 2024
1 parent e6a1d21 commit 240f271
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 4 deletions.
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.
3 changes: 3 additions & 0 deletions modular_doppler/modular_customization/organs/external/tail.dm
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@
preference = "feature_synth_tail"
dna_block = null
organ_flags = ORGAN_ROBOTIC
wag_flags = WAG_ABLE
bodypart_overlay = /datum/bodypart_overlay/mutant/tail/synthetic

/datum/bodypart_overlay/mutant/tail/synthetic
Expand All @@ -193,6 +194,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 +209,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

0 comments on commit 240f271

Please sign in to comment.