Skip to content

Commit

Permalink
allmind 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Paxilmaniac committed Dec 30, 2024
1 parent 2714ace commit 3922fa3
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@
/datum/sprite_accessory/tails/cybernetic/cable
name = "Cable"
icon_state = "cable"

/datum/sprite_accessory/tails/cybernetic/shard_beta
name = "Shard Beta Raptoral"
icon_state = "shard_beta"
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ GLOBAL_LIST_INIT(frame_types, list(
"xmg_two",
"zhp",
"zhenkov",
"zhenkovdark"
"zhenkovdark",
"shard_alpha",
))

// What will be showed in the drop-down
Expand All @@ -41,7 +42,8 @@ GLOBAL_LIST_INIT(frame_type_names, list(
"xmg_two" = "Xion Manufacturing Group 2.0",
"zhp" = "Zeng-Hu Pharmaceuticals",
"zhenkov" = "Zhenkov & Co. Foundries",
"zhenkovdark" = "Zhenkov & Co. Foundries - At Night"
"zhenkovdark" = "Zhenkov & Co. Foundries - At Night",
"shard_alpha" = "Shard Alpha Raptoral",
))

/datum/species/regenerate_organs(mob/living/carbon/target, datum/species/old_species, replace_current = TRUE, list/excluded_zones, visual_only = FALSE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -928,6 +928,31 @@
icon_state = "zhenkovdark_r_leg"
limb_id = "zhenkovdark"

///
// shard alpha raptor legs
///
/obj/item/bodypart/leg/right/robot/android/shard_alpha
should_draw_greyscale = FALSE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "shard_alpha_r_leg"
limb_id = "shard_alpha"
footstep_type = FOOTSTEP_MOB_CLAW
footprint_sprite = FOOTPRINT_SPRITE_CLAWS
bodyshape = BODYSHAPE_HUMANOID | BODYSHAPE_DIGITIGRADE

/obj/item/bodypart/leg/left/robot/android/shard_alpha
should_draw_greyscale = FALSE
icon_static = ANDROID_BODYPARTS_DMI
icon = ANDROID_BODYPARTS_DMI
icon_greyscale = ANDROID_BODYPARTS_DMI
icon_state = "shard_alpha_r_leg"
limb_id = "shard_alpha"
footstep_type = FOOTSTEP_MOB_CLAW
footprint_sprite = FOOTPRINT_SPRITE_CLAWS
bodyshape = BODYSHAPE_HUMANOID | BODYSHAPE_DIGITIGRADE

#undef HEAD_MONITOR_FACE
#undef ANDROID_BODYPARTS_DMI

Expand Down
Binary file not shown.

0 comments on commit 3922fa3

Please sign in to comment.