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]