Systema could be a fun addition as a knife fighting martial art, which isn’t 100% true, but matches the cutting weapons book and is kinda close
You’ll have to help me with the code, make sure to note the comments lines for sure :), not a programmer
martialarts.json:
{
"id": "style_systema",
"name": "Systema",
"can_leg_block": true,
"desc": "A Russian martial art that focuses on controlling the six body levers through pressure points, striking and weapons. The discipline's core teachings are in movements that are powerful, precise, instant, economical, and spontaneous. Varying attacks will boost speed and damage.",
"onhit_buffs": [
{
"id": "systema_hit_buff",
"name": "Systema Spontaneity",
"desc": "+1 speed per stack",
"unarmed_allowed": true,
"min_unarmed": 5,
"buff_duration": 10,
"max_stacks": 10,
"speed": 1
}
{
"id": "systema_edge_buff",
"name": "Systema Supremacy",
"desc": "+2 cutting damage per stack",
"unarmed_allowed": false,
"wield": knife, //Is this real?
"min_cutting": 5,
"buff_duration": 5,
"max_stacks": 3,
"cut": 2
}
],
"onmove_buffs": [],
"techniques": ["tec_systema_weakpoint", "tec_systema_fulcrum"]
},
techniques.json:
[code]
{
“id”: “tec_systema_weakpoint”,
“name”: “weak point”,
“min_unarmed”: 2,
“unarmed_allowed”: true,
“crit_tec”: true,
"verb_you": "%1$s hit a weak point on %4$s",
"verb_npc": "%1$s hits a weak point on %4$s",
"stun_dur": 2
},
{
“id”: “tec_systema_fulcrum”,
“name”: “fulcrum”,
“min_cutting”: 5,
“unarmed_allowed”: false,
"verb_you": "%1$s use fulcrum force on %4$s",
"verb_npc": "%1$s uses fulcrum force on %4$s",
"cut_mult": 3
},[/code]