mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-19 20:07:05 +01:00
403f4336db
Since Krav maga has an implant to toggle it on and on, I thought lets add everything else! (Aside from boxing, that for example is just tied to boxing gloves). Also ATV's are too easy to get, make it need effort to buy and become speed racer.
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
/obj/item/implant/wrestling
|
|
name = "Wrestling implant"
|
|
desc = "Teaches you the arts of Wrestling in 5 short instructional videos beamed directly into your eyeballs."
|
|
icon = 'icons/obj/clothing/masks.dmi'
|
|
icon_state ="luchador"
|
|
activated = 1
|
|
var/datum/martial_art/wrestling/style = new
|
|
|
|
/obj/item/implant/wrestling/get_data()
|
|
var/dat = {"<b>Implant Specifications:</b><BR>
|
|
<b>Name:</b> Wrestling Implant<BR>
|
|
<b>Life:</b> 4 hours after death of host<BR>
|
|
<b>Implant Details:</b> <BR>
|
|
<b>Function:</b> Teaches even the clumsiest host the arts of Wrestling."}
|
|
return dat
|
|
|
|
/obj/item/implant/wrestling/activate()
|
|
. = ..()
|
|
var/mob/living/carbon/human/H = imp_in
|
|
if(!ishuman(H))
|
|
return
|
|
if(!H.mind)
|
|
return
|
|
if(H.mind.has_martialart(MARTIALART_WRESTLING))
|
|
style.remove(H)
|
|
to_chat(H, "<span class='notice'>You forget the teachings of Wrestling.</span>")
|
|
else
|
|
style.teach(H,1)
|
|
to_chat(H, "<span class='notice'>You learn the arts of Wrestling!</span>")
|
|
|
|
/obj/item/implanter/wrestling
|
|
name = "implanter (Wrestling)"
|
|
imp_type = /obj/item/implant/wrestling
|
|
|
|
/obj/item/implantcase/wrestling
|
|
name = "implant case - 'Wrestling'"
|
|
desc = "A glass case containing an implant that can teach the user the arts of Wrestling."
|
|
imp_type = /obj/item/implant/wrestling
|