diff --git a/code/datums/action.dm b/code/datums/action.dm index 8a23b87e6e0..4ba27fb037d 100644 --- a/code/datums/action.dm +++ b/code/datums/action.dm @@ -425,9 +425,9 @@ // Clown Acrobat Shoes -/datum/action/item_action/rolling - name = "Tactical Roll" - desc = "Activates the clown shoes' ankle-stimulating module, allowing the user to do a short slide forward going through anyone." +/datum/action/item_action/slipping + name = "Tactical Slip" + desc = "Activates the clown shoes' ankle-stimulating module, allowing the user to do a short slip forward going under anyone." button_icon_state = "clown" // Jump boots diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index 6fb7771edb0..b25a10913dd 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -177,7 +177,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) name = "Clown Acrobatic Shoes" desc = "A pair of modified clown shoes fitted with a built-in propultion system that allows the user to perform a short slip below anyone. Turning on the waddle dampeners removes the slowdown on the shoes." reference = "CAS" - item = /obj/item/clothing/shoes/clown_shoes/tactical + item = /obj/item/clothing/shoes/clown_shoes/slippers cost = 3 surplus = 75 job = list("Clown") diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 92c87e60fb9..0a21a136995 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -111,13 +111,13 @@ desc = "Standard-issue shoes of the wizarding class clown. Damn they're huge! And powerful! Somehow." magical = TRUE -/obj/item/clothing/shoes/clown_shoes/tactical - actions_types = list(/datum/action/item_action/rolling) +/obj/item/clothing/shoes/clown_shoes/slippers + actions_types = list(/datum/action/item_action/slipping) var/slide_distance = 6 var/recharging_rate = 80 var/recharging_time = 0 -/obj/item/clothing/shoes/clown_shoes/tactical/ui_action_click(mob/user, action) +/obj/item/clothing/shoes/clown_shoes/slippers/ui_action_click(mob/user, action) if(!isliving(user)) return if(recharging_time > world.time) @@ -137,7 +137,7 @@ user.SetWeakened(0) user.pass_flags = prev_pass_flags -/obj/item/clothing/shoes/clown_shoes/tactical/CtrlClick(mob/living/user) +/obj/item/clothing/shoes/clown_shoes/slippers/CtrlClick(mob/living/user) if(!isliving(user)) return if(user.get_active_hand() != src)