1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[
{
"type": "martial_art",
"id": "style_brawling",
"name": { "str": "Brawling" },
"description": "You're used to hand-to-creature fighting. You know how to fight when unarmed or with any weapon to a certain extent. It's not stylish or sporting, but it gets the job done.",
"initiate": [ "You grit your teeth and prepare for a good fight.", "%s gets ready to brawl." ],
"autolearn": [ [ "melee", "1" ] ],
"arm_block": 1,
"leg_block": 5,
"static_buffs": [
{
"id": "buff_brawling_block",
"name": "Enhanced Blocking",
"description": "Combat experience has led to you being able to block multiple attacks at a time.\n\n+1 Block attempts.",
"unarmed_allowed": true,
"melee_allowed": true,
"skill_requirements": [ { "name": "melee", "level": 5 } ],
"bonus_blocks": 1
}
],
"allow_melee": true,
"techniques": [
"tec_brawl_disarm_unarmed",
"tec_brawl_feint_unarmed",
"tec_brawl_break_unarmed",
"tec_brawl_power",
"tec_brawl_trip",
"tec_brawl_disarm_melee",
"tec_brawl_feint_melee",
"tec_brawl_break_melee"
]
}
]
|