HA abode integration event_codes confusion

I’ve been trying to get HA to run automations when my abode alarm is triggered. I thought I would be able to use the Manual alarm control panel (https://www.home-assistant.io/integrations/manual) to do this, but I don’t see my alarm_control_panel.abode_alarm ever go into a “triggered” state when the alarm is triggered (other automations using “armed_away”, “armed_home”, and “disarmed” work fine).

The only way that I am able to get this to work is by using this as my trigger:

    platform: event
    event_type: abode_alarm

…which is fine, but the automation is firing for all events listed (https://www.home-assistant.io/integrations/abode/).

I was hoping to use the event_code, similar to what MisterWil shows here: https://github.com/home-assistant/core/issues/9349#issuecomment-330573849, but I am confused about which event_code to use.

For example, the event_code numbers available (https://github.com/MisterWil/abodepy/files/1262019/timeline_events.txt) in the Alarms section (1100-1199) show 2 codes for “Alarm Triggered”

{"event_code":"1130", "event_type":"Alarm Triggered"}
...
{"event_code":"1133", "event_type":"Alarm Triggered"}

Any clue which one I should use? Or, can I list multiple event_codes under the event_data section?