This repository has been archived on 2022-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
texty/lib/item.py
Matyáš Caras 4696cfc621
Komentáře
2022-05-04 14:26:32 +02:00

9 lines
424 B
Python

class Item: # Reprezentuje vybavitelný předmět
def __init__(self,name:str,attack:int = 0,defense:int = 0) -> None:
self.name = name # Název, jak je zobrazován hráči
if attack == 0 and defense > 0: # Nastaví typ předmětu
self.type = "armor"
else:
self.type = "weapon"
self.attack = attack # Stat útoku
self.defense = defense # Stat obrany