1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/rpgpack/tables/dndbattle.py

32 lines
748 B
Python
Raw Normal View History

2020-02-18 23:56:55 +01:00
from sqlalchemy import *
from sqlalchemy.orm import *
from sqlalchemy.ext.declarative import declared_attr
class DndBattle:
__tablename__ = "dndbattle"
@declared_attr
def id(self):
return Column(Integer, primary_key=True)
@declared_attr
def name(self):
return Column(String, nullable=False)
@declared_attr
def description(self):
return Column(String, nullable=False)
2020-02-22 02:16:54 +01:00
def __repr__(self):
return f"<{self.__class__.__qualname__} {self.name}>"
def __str__(self):
return f"{self.name}"
def create_message(self):
string = []
string.append(f"⚔️ [b]{self.name}[/b]\n")
string.append(f"{self.description}\n")
return "".join(string)