-
-
Notifications
You must be signed in to change notification settings - Fork 22
Description
Feature Request: Add Operator Ban Information to Match Data
Description
First off, thank you so much for creating and maintaining r6-dissect! This tool has been incredibly helpful for analyzing Rainbow Six Siege matches, and the level of detail it already provides is fantastic.
I'd like to request the addition of operator ban data to the match output. Currently, the dissected match data doesn't include information about which operators were banned during the pick/ban phase (when applicable).
Requested Feature
It would be great if the tool could capture and include operator ban information in the output JSON, potentially structured like this:
At the match/round level:
- List of banned operators
- Which team banned each operator
- The order/phase in which bans occurred
Suggested structure (example):
"bans": [
{
"operator": {
"name": "Thatcher",
"id": 92270642422
},
"bannedBy": "Team1",
"banPhase": 1
},
{
"operator": {
"name": "Mira",
"id": 92270644319
},
"bannedBy": "Team2",
"banPhase": 1
}
]Use Case
This information would be valuable for:
- Analyzing operator presence (pick rate when not banned) as Ubisoft defines it
- Understanding team strategies and target bans
- Creating more comprehensive match statistics
- Studying meta trends in competitive play
Additional Context
This would be particularly useful for ranked and competitive match analysis where the ban phase is a standard part of the game. I understand this may require reverse-engineering additional game data, so no pressure if it's not feasible!
Thanks again for all your work on this project. It's an amazing tool for the R6 community!