-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathitems.py
46 lines (29 loc) · 1.18 KB
/
items.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Create Item class
class Item():
def __init__(self, item_name, item_description):
self.item_name = item_name
self.item_description = item_description
# Create getter and setter methods for returning item name and description
def get_item_name(self):
return self.item_name
def get_description(self):
return self.item_description
def set_item_name(self, item_name):
self.item_name = item_name
def set_description(self, item_description):
self.item_description = item_description
def describe_item(self):
print(self.item_description)
# Create subclass for each unique item
class Glowing_Mushroom(Item):
def __init__(self, item_name, item_description):
super().__init__(item_name, item_description)
class Spellbook(Item):
def __init__(self, item_name, item_description):
super().__init__(item_name, item_description)
class Healing_Potion(Item):
def __init__(self, item_name, item_description):
super().__init__(item_name, item_description)
class Magical_Sword(Item):
def __init__(self, item_name, item_description):
super().__init__(item_name, item_description)