summaryrefslogtreecommitdiff
path: root/techniques/fencing.json
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-01-19 18:08:34 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-01-19 18:08:34 -0800
commite43f607400acc497203f40224c71374a53b4efb8 (patch)
treebc4b919f82325c12c11d43551d66c1eb64d5739e /techniques/fencing.json
parentInitial commit (diff)
downloadcataclysm-bn-mod_martial-arts-update-e43f607400acc497203f40224c71374a53b4efb8.tar.xz
Add Brawling, Fior Di Battaglia, Sojutsu, Taekwondo, Tai Chi.
Add Barbaran Montane with book and itemgroup.
Diffstat (limited to 'techniques/fencing.json')
-rw-r--r--techniques/fencing.json72
1 files changed, 72 insertions, 0 deletions
diff --git a/techniques/fencing.json b/techniques/fencing.json
new file mode 100644
index 0000000..41061e8
--- /dev/null
+++ b/techniques/fencing.json
@@ -0,0 +1,72 @@
+[
+ {
+ "type": "technique",
+ "id": "tec_fencing_feint",
+ "messages": [ "You steady your weapon and fake a thrust at %s", "<npcname> steadies their weapon and fake a thrust at %s" ],
+ "name": "Feint",
+ "skill_requirements": [ { "name": "melee", "level": 4 } ],
+ "melee_allowed": true,
+ "defensive": true,
+ "miss_recovery": true
+ },
+ {
+ "type": "technique",
+ "id": "tec_fencing_lunge",
+ "name": "Fencing Lunge",
+ "messages": [ "You lunge at %s", "<npcname> lunges at %s" ],
+ "skill_requirements": [ { "name": "melee", "level": 2 } ],
+ "melee_allowed": true,
+ "crit_ok": true,
+ "mult_bonuses": [ { "stat": "movecost", "scale": 0.8 } ]
+ },
+ {
+ "type": "technique",
+ "id": "tec_fencing_compound1",
+ "name": "Compound Attack (Remise)",
+ "messages": [ "Your feint leads to a compound attack against %s", "<npcname>'s feint leads to a compound attack against %s" ],
+ "skill_requirements": [ { "name": "melee", "level": 3 } ],
+ "melee_allowed": true,
+ "req_buffs": [ "buff_fencing_onmiss" ],
+ "weighting": 4,
+ "crit_ok": true,
+ "mult_bonuses": [
+ { "stat": "damage", "type": "bash", "scale": 1.25 },
+ { "stat": "damage", "type": "cut", "scale": 1.25 },
+ { "stat": "damage", "type": "stab", "scale": 1.25 }
+ ]
+ },
+ {
+ "type": "technique",
+ "id": "tec_fencing_compound2",
+ "name": "Compound Attack (Counter Time)",
+ "messages": [ "Your feint leads to a compound attack against %s", "<npcname>'s feint leads to a compound attack against %s" ],
+ "skill_requirements": [ { "name": "melee", "level": 4 } ],
+ "melee_allowed": true,
+ "req_buffs": [ "buff_fencing_onpause" ],
+ "weighting": 4,
+ "crit_ok": true,
+ "mult_bonuses": [
+ { "stat": "damage", "type": "bash", "scale": 1.25 },
+ { "stat": "damage", "type": "cut", "scale": 1.25 },
+ { "stat": "damage", "type": "stab", "scale": 1.25 }
+ ]
+ },
+ {
+ "type": "technique",
+ "id": "tec_fencing_riposte",
+ "name": "Fencing Riposte",
+ "messages": [ "You deliver a perfect riposte to %s", "<npcname> delivers a perfect riposte to %s" ],
+ "skill_requirements": [ { "name": "melee", "level": 5 } ],
+ "melee_allowed": true,
+ "req_buffs": [ "buff_fencing_onblock" ],
+ "crit_ok": true,
+ "weighting": 2,
+ "stun_dur": 1,
+ "mult_bonuses": [
+ { "stat": "movecost", "scale": 0.66 },
+ { "stat": "damage", "type": "bash", "scale": 1.2 },
+ { "stat": "damage", "type": "cut", "scale": 1.2 },
+ { "stat": "damage", "type": "stab", "scale": 1.2 }
+ ]
+ }
+]