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

Adds human-like android limbs #236

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
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ GLOBAL_LIST_INIT(frame_types, list(
"none",
"bare",
"synth_lizard",
"human_like",
"bs_one",
"bs_two",
"classic",
Expand All @@ -23,6 +24,7 @@ GLOBAL_LIST_INIT(frame_type_names, list(
"none" = "Species Default",
"bare" = "Bare",
"synth_lizard" = "Synthetic Lizard",
"human_like" = "Human-Like",
"bs_one" = "Bishop Cyberkinetics",
"bs_two" = "Bishop Cyberkinetics 2.0",
"classic" = "Android",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,59 @@
icon_state = "synth_lizard_r_leg"
limb_id = "synth_lizard"

///
// Human-Like
///
/obj/item/bodypart/head/robot/android/human_like
is_dimorphic = TRUE
should_draw_greyscale = TRUE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "human_like_head_f"
limb_id = "human_like"

/obj/item/bodypart/chest/robot/android/human_like
is_dimorphic = TRUE
should_draw_greyscale = TRUE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "human_like_chest_f"
limb_id = "human_like"

/obj/item/bodypart/arm/right/robot/android/human_like
should_draw_greyscale = TRUE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "human_like_r_arm"
limb_id = "human_like"

/obj/item/bodypart/arm/left/robot/android/human_like
should_draw_greyscale = TRUE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "human_like_l_arm"
limb_id = "human_like"

/obj/item/bodypart/leg/right/robot/android/human_like
should_draw_greyscale = TRUE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "human_like_r_leg"
limb_id = "human_like"

/obj/item/bodypart/leg/left/robot/android/human_like
should_draw_greyscale = TRUE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "human_like_r_leg"
limb_id = "human_like"

#undef HEAD_MONITOR_FACE
#undef ANDROID_BODYPARTS_DMI

Expand Down
Binary file not shown.
Loading