mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-06 23:41:57 +00:00
High heels features (#7288)
-high heels now have a minor slowdown -high heels deal a bit more of damage when stomping -high heels can be used to eye stab like screwdrivers
This commit is contained in:
@@ -175,6 +175,18 @@
|
||||
name = "high heels"
|
||||
desc = "A pair of high-heeled shoes. Fancy!"
|
||||
icon_state = "heels"
|
||||
slowdown = 0
|
||||
force = 2
|
||||
sharp = TRUE
|
||||
|
||||
/obj/item/clothing/shoes/heels/attack(mob/living/carbon/M, mob/living/carbon/user, var/target_zone)
|
||||
if(!istype(M) || user.a_intent == "help")
|
||||
return ..()
|
||||
if(target_zone != "eyes" && target_zone != "head")
|
||||
return ..()
|
||||
if((user.is_clumsy()) && prob(50))
|
||||
M = user
|
||||
return eyestab(M,user)
|
||||
|
||||
/obj/item/clothing/shoes/winter
|
||||
name = "winter boots"
|
||||
|
||||
Reference in New Issue
Block a user