├── .gitignore ├── LICENSE ├── README.md ├── common ├── frame.bas ├── sheet.bas └── utils.bas ├── external formats ├── export frame.bas ├── export frames.bas ├── import 3x4 sheet.bas ├── import 4x4 sheet.bas ├── import frame.bas ├── import sequence.bas └── import tilesheet.bas ├── frames └── copy to all.bas ├── imgs ├── items.png └── range.png ├── utilities ├── pick color.bas └── replace color.bas └── working area ├── flip horizontally.bas ├── flip vertically.bas ├── rotate anticlockwise.bas ├── rotate clockwise.bas ├── shift down.bas ├── shift left.bas ├── shift right.bas └── shift up.bas /.gitignore: -------------------------------------------------------------------------------- 1 | /ignored 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/README.md -------------------------------------------------------------------------------- /common/frame.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/common/frame.bas -------------------------------------------------------------------------------- /common/sheet.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/common/sheet.bas -------------------------------------------------------------------------------- /common/utils.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/common/utils.bas -------------------------------------------------------------------------------- /external formats/export frame.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/external formats/export frame.bas -------------------------------------------------------------------------------- /external formats/export frames.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/external formats/export frames.bas -------------------------------------------------------------------------------- /external formats/import 3x4 sheet.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/external formats/import 3x4 sheet.bas -------------------------------------------------------------------------------- /external formats/import 4x4 sheet.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/external formats/import 4x4 sheet.bas -------------------------------------------------------------------------------- /external formats/import frame.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/external formats/import frame.bas -------------------------------------------------------------------------------- /external formats/import sequence.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/external formats/import sequence.bas -------------------------------------------------------------------------------- /external formats/import tilesheet.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/external formats/import tilesheet.bas -------------------------------------------------------------------------------- /frames/copy to all.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/frames/copy to all.bas -------------------------------------------------------------------------------- /imgs/items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/imgs/items.png -------------------------------------------------------------------------------- /imgs/range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/imgs/range.png -------------------------------------------------------------------------------- /utilities/pick color.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/utilities/pick color.bas -------------------------------------------------------------------------------- /utilities/replace color.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/utilities/replace color.bas -------------------------------------------------------------------------------- /working area/flip horizontally.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/flip horizontally.bas -------------------------------------------------------------------------------- /working area/flip vertically.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/flip vertically.bas -------------------------------------------------------------------------------- /working area/rotate anticlockwise.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/rotate anticlockwise.bas -------------------------------------------------------------------------------- /working area/rotate clockwise.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/rotate clockwise.bas -------------------------------------------------------------------------------- /working area/shift down.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/shift down.bas -------------------------------------------------------------------------------- /working area/shift left.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/shift left.bas -------------------------------------------------------------------------------- /working area/shift right.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/shift right.bas -------------------------------------------------------------------------------- /working area/shift up.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paladin-t/b8.plugins/HEAD/working area/shift up.bas --------------------------------------------------------------------------------