25 lines
730 B
Python
25 lines
730 B
Python
|
#image path
|
||
|
#plants
|
||
|
class ConStrings:
|
||
|
flower = r'resources/plants/flower.png'
|
||
|
bush = r'resources/plants/bush.png'
|
||
|
ivy = r'resources/plants/ivy.png'
|
||
|
wheat_dead = r'resources/plants/wheat_dead.png'
|
||
|
wheat= r'resources/plants/wheat.png'
|
||
|
|
||
|
strawberry = r'resources/fruits/6.png'
|
||
|
grapes = r'resources/fruits/8.png'
|
||
|
apple = r'resources/fruits/9.png'
|
||
|
banana = r'resources/fruits/10.png'
|
||
|
|
||
|
eggplant = r'resources/vegies/1.png'
|
||
|
carrot = r'resources/vegies/12.png'
|
||
|
pumpkin = r'resources/vegies/11.png'
|
||
|
tomato = r'resources/vegies/7.png'
|
||
|
pepper = r'resources/vegies/14.png'
|
||
|
papaya = r'resources/vegies/2.png'
|
||
|
|
||
|
|
||
|
stone = r'resources/stones/stone.png'
|
||
|
aim = r'resources/aim.png'
|