✨ Outfits
This commit is contained in:
parent
775c833f28
commit
3e6871fb34
127 changed files with 17420 additions and 2 deletions
|
@ -30,6 +30,15 @@ class Ranged(db.Entity):
|
|||
stats = Required(int)
|
||||
|
||||
|
||||
class Outfit(db.Entity):
|
||||
name = Required(str)
|
||||
name_en = Required(str)
|
||||
description = Optional(str)
|
||||
icon = Required(bytes)
|
||||
preview = Optional(bytes)
|
||||
cell_cost = Required(int)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
db.bind(provider="sqlite", filename="../../clean/31-2/data.sqlite3")
|
||||
db.generate_mapping(create_tables=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue