mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
34 lines
886 B
Python
34 lines
886 B
Python
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)
|
|
|
|
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")
|
|
string.append("\n")
|
|
for unit in sorted(self.units, key=lambda u: -u.initiative):
|
|
string.append(f"{unit}\n\n")
|
|
return "".join(string)
|