And now, I work on…Pankration!
Cue counter combos resulting in a successful dodge allowing one to grab a target, and from there either disarm them, choke them, or throw them away.
EDIT: The Codening.
},{
"type" : "martial_art",
"id" : "style_pankration",
"name" : "Pankration",
"description" : "An ancient Greek martial art, combining boxing and wrestling techniques to create a brutal sport, though modern revival of the art is less of no-holds-barred in nature.",
"arm_block" : 2,
"leg_block" : 4,
"ondodge_buffs" : [
{
"id" : "pankration_counter",
"name" : "Counter Chance",
"description" : "The enemy has presented an opening in their defense.",
"min_unarmed" : 4,
"unarmed_allowed" : true,
"max_stacks": 1,
"buff_duration" : 2,
"bash_mult" : 1.1
}
],
"onhit_buffs": [
{
"id" : "pankration_grappling",
"name" : "Grappling",
"description" : "I have you now!",
"unarmed_allowed" : true,
"min_unarmed" : 5,
"req_buffs" : [
"pankration_counter"
],
"buff_duration" : 2,
"max_stacks" : 1,
"bash_mult" : 1.2
}
],
"techniques" : [
"tec_pankration_kick",
"tec_pankration_counter",
"tec_pankration_disarm",
"tec_pankration_throw",
"tec_pankration_chokehold"
]
}
},{
"type" : "technique",
"id" : "tec_pankration_kick",
"name" : "kick",
"min_unarmed": 2,
"unarmed_allowed" : true,
"crit_tec" : true,
"messages" : [
"You kick %s",
"<npcname> kicks %s"
],
"knockback_dist" : 1
},{
"type" : "technique",
"id" : "tec_pankration_counter",
"name" : "counter-grab",
"min_unarmed" : 5,
"unarmed_allowed" : true,
"req_buffs" : [
"pankration_counter"
],
"messages" : [
"You counter and grab %s",
"<npcname> counters and grabs %s"
],
"speed_mult" : 0.5,
"stun_dur" : 2,
"down_dur" : 1
},{
"type" : "technique",
"id" : "tec_pankration_disarm",
"name" : "arm lock",
"min_unarmed" : 5,
"unarmed_allowed" : true,
"crit_tec" : true,
"disarms" : true,
"down_dur" : 1,
"req_buffs" : [
"pankration_grappling"
],
"messages" : [
"You put %s in an arm lock",
"<npcname> puts %s in an arm lock"
]
},{
"type" : "technique",
"id" : "tec_pankration_throw",
"name" : "throw",
"min_unarmed" : 6,
"unarmed_allowed" : true,
"crit_tec" : true,
"down_dur" : 1,
"knockback_dist" : 2,
"knockback_spread" : 2,
"req_buffs" : [
"pankration_grappling"
],
"messages" : [
"You throw %s",
"<npcname> throws %s"
]
},{
"type" : "technique",
"id" : "tec_pankration_chokehold",
"name" : "chokehold",
"min_unarmed" : 7,
"unarmed_allowed" : true,
"crit_tec" : true,
"stun_dur" : 3,
"bash_mult" : 1.35,
"req_buffs" : [
"pankration_grappling"
],
"messages" : [
"You put %s in an chokehold",
"<npcname> puts %s in an chokehold"
]
}