Working on a martial art

[
{
    "type" : "martial_art",
    "id" : "style_acrobat",
    "name" : "acrobat",
    "description": "hope this works",
    "arm_block" : 99,
    "leg_block" : 99,
    "ondodge_buffs" : [
        {
            "id" : "acrobat_speedboost_three",
            "name" : "Hurr durr",
            "description" : "You do a flip",
            "flat_bonuses" : [
                ["speed", 100.0]

            ]
        }
    ],
    "techniques": [
    ]
}
]

Anyone have any idea why speed isn’t being improved upon dodge?

I think you need at least one of “uarmed_allowed” or “armed_allowed” set to true, so it should be:

    "ondodge_buffs" : [
        {
            "id" : "acrobat_speedboost_three",
            "name" : "Hurr durr",
            "description" : "You do a flip",
            "unarmed_allowed": true,
            "flat_bonuses" : [
                ["speed", 100.0]

            ]
        }
    ]

Thank you, it’s working now.