Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ports gloves of the north star from Hippie #37864

Merged
merged 5 commits into from May 26, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions code/modules/clothing/gloves/miscellaneous.dm
Expand Up @@ -55,3 +55,14 @@
max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT
resistance_flags = NONE
armor = list("melee" = 15, "bullet" = 35, "laser" = 35, "energy" = 20, "bomb" = 35, "bio" = 35, "rad" = 35, "fire" = 0, "acid" = 0)

/obj/item/clothing/gloves/fingerless/rapid
name = "Gloves of the north star"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Gloves of the North Star" or change the uplink item name to match this.

desc = "Just looking at these fills you with an urge to beat the shit out of people."

/obj/item/clothing/gloves/fingerless/rapid/Touch(mob/living/target,proximity = TRUE)
var/mob/living/M = loc

if(M.a_intent == INTENT_HARM)
M.changeNext_move(CLICK_CD_RAPID)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

M.say("AT")

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tempted... or I could give it an attack_hand to let them set a 5 char warcry.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

force the say

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually hm
we should count the number of clicks and generate it that way

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

time to find out how many people use macros when they end up screeching "ATATATATAT" 900,000 times in a second

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, M.say("AT", ignore_spam = TRUE)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

^ I'm serious about this btw, we have chat squashing

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gonna add the custom four letter warcry at some point soonish...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

totally not just lifting this right from holoparasite code but whatever.

.= FALSE
5 changes: 5 additions & 0 deletions code/modules/uplink/uplink_items.dm
Expand Up @@ -1462,6 +1462,11 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item))
name = "Broken Chameleon Kit"
desc = "A set of items that contain chameleon technology allowing you to disguise as pretty much anything on the station, and more! Please note that this kit did NOT pass quality control."
item = /obj/item/storage/box/syndie_kit/chameleon/broken
/datum/uplink_item/badass/rapid
name = "Gloves of the North Star"
desc = "These gloves let the user punch people very fast. Does not improve weapon attack speed or the meaty fists of a hulk."
item = /obj/item/clothing/gloves/fingerless/rapid
cost = 8

/datum/uplink_item/badass/bundle
name = "Syndicate Bundle"
Expand Down