The pixel-perfect code-first game editor made for devs who get it.
Download Now# -*- coding: utf-8 -*-
from gamebro import Sprite, SpriteGroup
# Project: s
# Created by GameBro Studio
EvilBoss: Sprite = Sprite(customdata={'hp': 3000, 'attack': 'laser'}, name="EvilBoss")
Make sprites like mods using a JSON file:
{
"name": "EvilBoss",
"template": "boss",
"data": {
"hp": 3000,
"attack": "laser"
},
"display_color": [255, 0, 0]
}
Templates override values in the file (like setting the name color).