Skip to content

Commit

Permalink
Update parts.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluedino1025 authored Aug 12, 2024
1 parent 2ff794a commit 64013f9
Showing 1 changed file with 77 additions and 0 deletions.
77 changes: 77 additions & 0 deletions code/modules/surgery/bodyparts/parts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,18 @@
acceptable_bodytype = BODYTYPE_MONKEY
dmg_overlay_type = SPECIES_MONKEY

/obj/item/bodypart/chest/werewolf
icon = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_static = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_state = "werewolf_chest"
limb_id = SPECIES_WEREWOLF

Check failure on line 88 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: SPECIES_WEREWOLF
should_draw_greyscale = FALSE
is_dimorphic = FALSE
wound_resistance = 15
bodytype = BODYTYPE_WEREWOLF | BODYTYPE_ORGANIC

Check failure on line 92 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: BODYTYPE_WEREWOLF
acceptable_bodytype = BODYTYPE_WEREWOLF

Check failure on line 93 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: BODYTYPE_WEREWOLF
dmg_overlay_type = SPECIES_WEREWOLF

Check failure on line 94 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: SPECIES_WEREWOLF

/obj/item/bodypart/chest/alien
icon = 'icons/mob/human/species/alien/bodyparts.dmi'
icon_static = 'icons/mob/human/species/alien/bodyparts.dmi'
Expand Down Expand Up @@ -254,6 +266,22 @@
unarmed_effectiveness = 0
appendage_noun = "paw"

/obj/item/bodypart/arm/left/werewolf
icon = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_static = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_state = "werewolf_l_arm"
limb_id = SPECIES_WEREWOLF

Check failure on line 273 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: SPECIES_WEREWOLF
should_draw_greyscale = FALSE
bodytype = BODYTYPE_WEREWOLF | BODYTYPE_ORGANIC

Check failure on line 275 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: BODYTYPE_WEREWOLF
wound_resistance = 15
dmg_overlay_type = SPECIES_WEREWOLF

Check failure on line 277 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: SPECIES_WEREWOLF
unarmed_damage_low = 20
unarmed_damage_high = 30
unarmed_effectiveness = 10
px_x = -6
px_y = 0
appendage_noun = "clawed hand"

/obj/item/bodypart/arm/left/alien
icon = 'icons/mob/human/species/alien/bodyparts.dmi'
icon_static = 'icons/mob/human/species/alien/bodyparts.dmi'
Expand Down Expand Up @@ -351,6 +379,23 @@
unarmed_effectiveness = 0
appendage_noun = "paw"

/obj/item/bodypart/arm/right/werewolf
icon = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_static = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_state = "werewolf_r_arm"
limb_id = SPECIES_WEREWOLF

Check failure on line 386 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: SPECIES_WEREWOLF
bodytype = BODYTYPE_WEREWOLF | BODYTYPE_ORGANIC

Check failure on line 387 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: BODYTYPE_WEREWOLF
should_draw_greyscale = FALSE
wound_resistance = 15
px_x = 6
px_y = 0
dmg_overlay_type = SPECIES_WEREWOLF

Check failure on line 392 in code/modules/surgery/bodyparts/parts.dm

View workflow job for this annotation

GitHub Actions / Run Linters

unknown variable: SPECIES_WEREWOLF
unarmed_damage_low = 20
unarmed_damage_high = 30
unarmed_effectiveness = 10
appendage_noun = "clawed hand"


/obj/item/bodypart/arm/right/alien
icon = 'icons/mob/human/species/alien/bodyparts.dmi'
icon_static = 'icons/mob/human/species/alien/bodyparts.dmi'
Expand Down Expand Up @@ -463,6 +508,22 @@
unarmed_damage_high = 3
unarmed_effectiveness = 0

/obj/item/bodypart/leg/left/werewolf
icon = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_static = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_state = "werewolf_l_leg"
limb_id = SPECIES_WEREWOLF
should_draw_greyscale = FALSE
bodytype = BODYTYPE_WEREWOLF | BODYTYPE_ORGANIC
wound_resistance = 15
px_x = -2
px_y = 12
dmg_overlay_type = SPECIES_WEREWOLF
unarmed_damage_low = 25
unarmed_damage_high = 35
unarmed_effectiveness = 10


/obj/item/bodypart/leg/left/alien
icon = 'icons/mob/human/species/alien/bodyparts.dmi'
icon_static = 'icons/mob/human/species/alien/bodyparts.dmi'
Expand Down Expand Up @@ -551,6 +612,22 @@
unarmed_damage_high = 3
unarmed_effectiveness = 0

/obj/item/bodypart/leg/right/werewolf
icon = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_static = 'icons/mob/human/species/werewolf/bodyparts.dmi'
icon_state = "werewolf_r_leg"
limb_id = SPECIES_WEREWOLF
should_draw_greyscale = FALSE
bodytype = BODYTYPE_WEREWOLF | BODYTYPE_ORGANIC
wound_resistance = 15
px_x = 2
px_y = 12
dmg_overlay_type = SPECIES_WEREWOLF
unarmed_damage_low = 25
unarmed_damage_high = 35
unarmed_effectiveness = 10


/obj/item/bodypart/leg/right/alien
icon = 'icons/mob/human/species/alien/bodyparts.dmi'
icon_static = 'icons/mob/human/species/alien/bodyparts.dmi'
Expand Down

0 comments on commit 64013f9

Please sign in to comment.