dead-cells-wiki/data/convert/31-0/db.py

12 lines
206 B
Python
Raw Permalink Normal View History

2022-09-28 21:27:01 -05:00
from pony.orm import *
db = Database()
class Melee(db.Entity):
name = Required(str)
description = Optional(str)
mechanism = Optional(str)
icon = Required(bytes)
2022-09-28 22:28:58 -05:00
stats = Required(int)