mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 03:27:05 +01:00
Adds Corporate Judo, an optional alternative to the stun baton (deconflicted edition) (#21229)
* Adds Judo, Judo belt, and increased harm damage * Judo users can no longer use batons (any type) * Adds Discombobulate combo * adds Eye-poke combo * copy-paste related error fixes * adds throw (knockdown) combo * adds Armbar and Fatailty Combos * assorted changes (spelling, args, unneeded checks) * minor changes to belt item * updated desc, fixes belt item pathing * adds 3 belts to secvend * Adds sprites courtsey AVeryReulctantSpider * Assorted code cleanup (thx Henri) * minor grammatical issues * Adds Judo, Judo belt, and increased harm damage * Judo users can no longer use batons (any type) * Adds Discombobulate combo * adds Eye-poke combo * copy-paste related error fixes * adds throw (knockdown) combo * adds Armbar and Fatailty Combos * assorted changes (spelling, args, unneeded checks) * minor changes to belt item * updated desc, fixes belt item pathing * adds 3 belts to secvend * Adds sprites courtsey AVeryReulctantSpider * Assorted code cleanup (thx Henri) * minor grammatical issues * junk commit to re-open PR * pronoun consistancy * Lewc review #1 * de-jankification, buffs eye poke * Reduces harm intent damage from 10 to 7 * descriptions * lewc name change * weight class is now bulky * wheel throw fix, discombob buff (slight) * Throw buff (Grab > disarm) * partial lewcc review * assorted reviews (HIIYAA edition) * Eyepoke, discombobulate can be done on the ground * hal second pass review --------- Co-authored-by: DGamerL <108773801+DGamerL@users.noreply.github.com>
This commit is contained in:
@@ -66,6 +66,9 @@
|
||||
* * user - The attacking user
|
||||
*/
|
||||
/obj/item/melee/classic_baton/proc/baton_knockdown(mob/living/target, mob/living/user)
|
||||
if(user.mind?.martial_art?.no_baton)
|
||||
to_chat(user, user.mind.martial_art.no_baton_reason)
|
||||
return
|
||||
if(issilicon(target))
|
||||
user.visible_message("<span class='danger'>[user] pulses [target]'s sensors with [src]!</span>",\
|
||||
"<span class='danger'>You pulse [target]'s sensors with [src]!</span>")
|
||||
|
||||
@@ -165,7 +165,9 @@
|
||||
user.visible_message("<span class='danger'>[user] accidentally hits [user.p_themselves()] with [src]!</span>",
|
||||
"<span class='userdanger'>You accidentally hit yourself with [src]!</span>")
|
||||
return
|
||||
|
||||
if(user.mind?.martial_art?.no_baton)
|
||||
to_chat(user, user.mind.martial_art.no_baton_reason)
|
||||
return
|
||||
if(issilicon(M)) // Can't stunbaton borgs and AIs
|
||||
return ..()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user