mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-13 09:05:11 +01:00
2847b2b37e
* [ready] adds unit test for missing inhand icons. fixes a bunch of missing inhand icons * cf Co-authored-by: ShizCalev <ShizCalev@users.noreply.github.com> Co-authored-by: Tastyfish <crazychris32@gmail.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
21 lines
633 B
Plaintext
21 lines
633 B
Plaintext
/obj/item/clothing/gloves/butchering
|
|
name = "butchering gloves"
|
|
desc = "These gloves allow the user to rip apart bodies with precision and ease."
|
|
icon_state = "black"
|
|
greyscale_colors = "#2f2e31"
|
|
cold_protection = HANDS
|
|
min_cold_protection_temperature = GLOVES_MIN_TEMP_PROTECT
|
|
heat_protection = HANDS
|
|
max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT
|
|
|
|
/obj/item/clothing/gloves/butchering/Initialize(mapload)
|
|
. = ..()
|
|
AddComponent(/datum/component/butchering/wearable, \
|
|
speed = 0.5 SECONDS, \
|
|
effectiveness = 125, \
|
|
bonus_modifier = 0, \
|
|
butcher_sound = null, \
|
|
disabled = TRUE, \
|
|
can_be_blunt = TRUE, \
|
|
)
|