summaryrefslogtreecommitdiff
path: root/techniques
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-01-19 20:54:30 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-01-19 20:54:30 -0800
commita2e187cd1a26504e8223712e93f8ebeda291df19 (patch)
treea9ed950aab31aedd83a3d8421f3ac2f79c4f9ca9 /techniques
parentFix medieval pole weapons. (diff)
downloadcataclysm-bn-mod_martial-arts-update-a2e187cd1a26504e8223712e93f8ebeda291df19.tar.xz
Add boxing
Diffstat (limited to 'techniques')
-rw-r--r--techniques/boxing.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/techniques/boxing.json b/techniques/boxing.json
new file mode 100644
index 0000000..70e6a8d
--- /dev/null
+++ b/techniques/boxing.json
@@ -0,0 +1,51 @@
+[
+ {
+ "type": "technique",
+ "id": "tec_boxing_cross",
+ "name": "Cross",
+ "messages": [ "You throw a heavy cross at %s", "<npcname> throws a cross at %s" ],
+ "unarmed_allowed": true,
+ "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.2 } ]
+ },
+ {
+ "type": "technique",
+ "id": "tec_boxing_counter",
+ "name": "Cross Counter",
+ "messages": [ "You cross-counter %s", "<npcname> throws a perfect counter at %s" ],
+ "skill_requirements": [ { "name": "unarmed", "level": 5 } ],
+ "unarmed_allowed": true,
+ "req_buffs": [ "buff_boxing_ondodge" ],
+ "weighting": 2,
+ "crit_tec": true,
+ "knockback_dist": 1,
+ "knockback_spread": 1,
+ "stun_dur": 1,
+ "down_dur": 1,
+ "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.5 } ]
+ },
+ {
+ "type": "technique",
+ "id": "tec_boxing_rapid",
+ "name": "Jab",
+ "messages": [ "You quickly jab %s", "<npcname> quickly jabs at %s" ],
+ "skill_requirements": [ { "name": "unarmed", "level": 2 } ],
+ "unarmed_allowed": true,
+ "mult_bonuses": [
+ { "stat": "movecost", "scale": 0.5 },
+ { "stat": "damage", "type": "bash", "scale": 0.66 },
+ { "stat": "damage", "type": "cut", "scale": 0.66 },
+ { "stat": "damage", "type": "stab", "scale": 0.66 }
+ ]
+ },
+ {
+ "type": "technique",
+ "id": "tec_boxing_upper",
+ "name": "Uppercut",
+ "messages": [ "You uppercut %s", "<npcname> uppercuts %s" ],
+ "skill_requirements": [ { "name": "unarmed", "level": 4 } ],
+ "unarmed_allowed": true,
+ "crit_tec": true,
+ "stun_dur": 1,
+ "mult_bonuses": [ { "stat": "damage", "type": "bash", "scale": 1.4 } ]
+ }
+]