Skip to content

Commit

Permalink
Pasta's digiprosthetics and gradient tweaks/additions (#5914)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->
<!-- You can view Contributing.MD for a detailed description of the pull
request process. -->

## About The Pull Request

Adds a tweaked variant of the synthliz fbp legs that works with most
clothing (Unbranded - Digitigrade) as well as adding/porting a few hair
gradients (Vertical Split (Back), Vertical Split (Back, Front Effect),
Shoulders (Flat), Wavy, Wavy Spiked, Striped, and Striped (Vertical).

## Why It's Good For The Game

Not enough digitigrade stuff aaaaaaaand a bit more gradient variety is
nice.

## Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
mark your PRs to prevent unnecessary GBP loss. You can read up on GBP
and it's effects on PRs in the tgstation guides for contributors. Please
note that maintainers freely reserve the right to remove and add tags
should they deem it appropriate. You can attempt to finagle the system
all you want, but it's best to shoot for clear communication right off
the bat. -->

:cl:
add: Unbranded - Digitigrade prosthetic legs
add:  7 hair gradients
/:cl:

<!-- Both :cl:'s are required for the changelog to work! You can put
your name to the right of the first :cl: if you want to overwrite your
GitHub username as author ingame. -->
<!-- You can use multiple of the same prefix (they're only used for the
icon ingame) and delete the unneeded ones. Despite some of the tags,
changelogs should generally represent how a player might be affected by
the changes rather than a summary of the PR's contents. -->
  • Loading branch information
pastelli-games authored Aug 26, 2023
1 parent 34a85f7 commit a20dff5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
10 changes: 9 additions & 1 deletion code/modules/mob/living/carbon/human/gradient.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ GLOBAL_LIST_INIT(hair_gradients, list(
"Fade Low (Up)" = "fadeup_low",
"Fade (Down)" = "fadedown",
"Fade Low (Down)" = "fadedown_low",
"Fade High (Down)" = "fadedown_high",
"Reflected (Center)"= "reflected",
"Reflected Inverse (Center)"= "reflected_inverse",
"Vertical Split (Back)"= "vsplit_back",
"Vertical Split" = "vsplit",
"Bottom (Flat)" = "bottomflat"
"Vertical Split (Back, Front Effect)"= "vsplit_dual",
"Bottom (Flat)" = "bottomflat",
"Shoulders (Flat)" = "shouldersflat",
"Wavy" = "wavy",
"Wavy Spiked" = "wavy_spiked",
"Striped" = "striped",
"Striped (Vertical)"= "striped_vertical"
))
6 changes: 6 additions & 0 deletions code/modules/organs/external/robolimbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,12 @@ var/const/cyberbeast_monitor_styles= "blank=cyber_blank;\
icon = 'icons/mob/cyberlimbs/unbranded/unbranded_teshari.dmi'
unavailable_to_build = TRUE

/datum/robolimb/unbranded_digitigrade
company = "Unbranded - Generic Digitigrade"
desc = "A digitigrade robotic leg of a fairly generic design."
icon = 'icons/mob/cyberlimbs/unbranded/unbranded_digitigrade.dmi'
parts = list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT)

/datum/robolimb/nanotrasen
company = "NanoTrasen"
desc = "A simple but efficient robotic limb, created by NanoTrasen."
Expand Down
Binary file not shown.
Binary file modified icons/mob/hair_gradients.dmi
Binary file not shown.

0 comments on commit a20dff5

Please sign in to comment.