├── .gitattributes ├── .gitignore ├── README.md ├── Structure ├── CFC │ ├── File.py │ ├── Follow_up.py │ ├── Header.py │ ├── Move.py │ ├── Moveset.py │ ├── Set.py │ └── Set_Table.py ├── CHP │ ├── File.py │ ├── Header.py │ ├── Set.py │ ├── Set_Table.py │ └── Target.py ├── Common │ └── cmd_prop.py └── Enums │ └── common.py ├── Types └── battle │ ├── Default │ ├── Enums │ │ └── conditions.py │ ├── conditions.py │ └── moves.py │ ├── Enums │ └── properties.py │ ├── ladg │ ├── Enums │ │ └── conditions.py │ └── conditions.py │ ├── ladiw │ ├── Enums │ │ └── conditions.py │ └── conditions.py │ ├── ladpih │ ├── Enums │ │ └── conditions.py │ └── conditions.py │ └── lj │ ├── Enums │ └── conditions.py │ └── conditions.py ├── Utilities ├── bin_reader.py └── util.py └── main.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/README.md -------------------------------------------------------------------------------- /Structure/CFC/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CFC/File.py -------------------------------------------------------------------------------- /Structure/CFC/Follow_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CFC/Follow_up.py -------------------------------------------------------------------------------- /Structure/CFC/Header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CFC/Header.py -------------------------------------------------------------------------------- /Structure/CFC/Move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CFC/Move.py -------------------------------------------------------------------------------- /Structure/CFC/Moveset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CFC/Moveset.py -------------------------------------------------------------------------------- /Structure/CFC/Set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CFC/Set.py -------------------------------------------------------------------------------- /Structure/CFC/Set_Table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CFC/Set_Table.py -------------------------------------------------------------------------------- /Structure/CHP/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CHP/File.py -------------------------------------------------------------------------------- /Structure/CHP/Header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CHP/Header.py -------------------------------------------------------------------------------- /Structure/CHP/Set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CHP/Set.py -------------------------------------------------------------------------------- /Structure/CHP/Set_Table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CHP/Set_Table.py -------------------------------------------------------------------------------- /Structure/CHP/Target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/CHP/Target.py -------------------------------------------------------------------------------- /Structure/Common/cmd_prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/Common/cmd_prop.py -------------------------------------------------------------------------------- /Structure/Enums/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Structure/Enums/common.py -------------------------------------------------------------------------------- /Types/battle/Default/Enums/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/Default/Enums/conditions.py -------------------------------------------------------------------------------- /Types/battle/Default/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/Default/conditions.py -------------------------------------------------------------------------------- /Types/battle/Default/moves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/Default/moves.py -------------------------------------------------------------------------------- /Types/battle/Enums/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/Enums/properties.py -------------------------------------------------------------------------------- /Types/battle/ladg/Enums/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/ladg/Enums/conditions.py -------------------------------------------------------------------------------- /Types/battle/ladg/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/ladg/conditions.py -------------------------------------------------------------------------------- /Types/battle/ladiw/Enums/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/ladiw/Enums/conditions.py -------------------------------------------------------------------------------- /Types/battle/ladiw/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/ladiw/conditions.py -------------------------------------------------------------------------------- /Types/battle/ladpih/Enums/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/ladpih/Enums/conditions.py -------------------------------------------------------------------------------- /Types/battle/ladpih/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/ladpih/conditions.py -------------------------------------------------------------------------------- /Types/battle/lj/Enums/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/lj/Enums/conditions.py -------------------------------------------------------------------------------- /Types/battle/lj/conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Types/battle/lj/conditions.py -------------------------------------------------------------------------------- /Utilities/bin_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Utilities/bin_reader.py -------------------------------------------------------------------------------- /Utilities/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/Utilities/util.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeartlessSeph/FighterCommander/HEAD/main.py --------------------------------------------------------------------------------