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

12 lines
206 B
Python
Raw Normal View History

2022-09-29 10:27:01 +08: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-29 11:28:58 +08:00
stats = Required(int)