mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 05:27:01 +01:00
* holy guacamole * TGUI capitilization Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> * TGUI rebuild * implements requested changes * fixes * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com> * fulfilling more requests * uplink fixes * init order stuff * charlies requested changes * Apply suggestions from code review Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Co-authored-by: Nathan Winters <100448493+CinnamonSnowball@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Co-authored-by: SteelSlayer <42044220+SteelSlayer@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
/obj/item/implant/krav_maga
|
|
name = "krav maga implant"
|
|
desc = "Teaches you the arts of Krav Maga in 5 short instructional videos beamed directly into your eyeballs."
|
|
icon = 'icons/obj/wizard.dmi'
|
|
icon_state ="scroll2"
|
|
activated = IMPLANT_ACTIVATED_ACTIVE
|
|
origin_tech = "materials=2;biotech=4;combat=5;syndicate=4"
|
|
implant_data = /datum/implant_fluff/krav_maga
|
|
implant_state = "implant-default"
|
|
|
|
var/datum/martial_art/krav_maga/style = new
|
|
|
|
/obj/item/implant/krav_maga/activate()
|
|
var/mob/living/carbon/human/H = imp_in
|
|
if(!ishuman(H) || !H.mind)
|
|
return
|
|
if(istype(H.mind.martial_art, /datum/martial_art/krav_maga))
|
|
style.remove(H)
|
|
else
|
|
style.teach(H, TRUE)
|
|
|
|
/obj/item/implanter/krav_maga
|
|
name = "implanter (krav maga)"
|
|
|
|
/obj/item/implanter/krav_maga/Initialize(mapload)
|
|
. = ..()
|
|
imp = new /obj/item/implant/krav_maga(src)
|
|
|
|
/obj/item/implantcase/krav_maga
|
|
name = "implant case - 'Krav Maga'"
|
|
desc = "A glass case containing an implant that can teach the user the art of Krav Maga."
|
|
|
|
/obj/item/implantcase/krav_maga/Initialize(mapload)
|
|
. = ..()
|
|
imp = new /obj/item/implant/krav_maga(src)
|