4. Classes
This chapter of the documentation will cover the things that the classes have in common.
4.1 Item Classes
print(sword.amnt)
# 1
print(shield.amnt)
# 2
player.additem(shield, 4)
# Debugger: item given: Super Shield x 4
print(shield.amnt)
# 4Last updated