txt/terra/rares/abstract_rare.py

7 lines
189 B
Python
Raw Normal View History

2023-02-09 22:56:17 +00:00
from abc import ABC
from typing import Optional
class AbstractRare(ABC):
name: type[str] = "Непонятный"
adjective: type[str] = "Непонятно, абстрактно"