txt/terra/rares/abstract_rare.py

7 lines
189 B
Python

from abc import ABC
from typing import Optional
class AbstractRare(ABC):
name: type[str] = "Непонятный"
adjective: type[str] = "Непонятно, абстрактно"