2023-09-27 18:03:37 +00:00
|
|
|
import os
|
|
|
|
|
2023-11-29 10:53:30 +00:00
|
|
|
from utils.resource_loader import import_assets
|
|
|
|
|
2023-09-27 18:03:37 +00:00
|
|
|
|
2023-09-03 12:58:28 +00:00
|
|
|
weapon_data = {
|
2023-11-29 10:53:30 +00:00
|
|
|
'sword': {'cooldown': 100, 'damage': 15, 'graphic': import_assets(
|
|
|
|
os.path.join('graphics',
|
|
|
|
'weapons',
|
|
|
|
'sword',
|
|
|
|
'full.png')
|
|
|
|
)
|
|
|
|
},
|
|
|
|
|
|
|
|
'lance': {'cooldown': 400, 'damage': 30, 'graphic': import_assets(
|
|
|
|
os.path.join('graphics',
|
|
|
|
'weapons',
|
|
|
|
'lance',
|
|
|
|
'full.png')
|
|
|
|
)
|
|
|
|
},
|
|
|
|
'axe': {'cooldown': 300, 'damage': 20, 'graphic': import_assets(
|
|
|
|
os.path.join('graphics',
|
|
|
|
'weapons',
|
|
|
|
'axe',
|
|
|
|
'full.png')
|
|
|
|
)
|
|
|
|
},
|
|
|
|
'rapier': {'cooldown': 50, 'damage': 8, 'graphic': import_assets(
|
|
|
|
os.path.join('graphics',
|
|
|
|
'weapons',
|
|
|
|
'rapier',
|
|
|
|
'full.png')
|
|
|
|
)
|
|
|
|
},
|
|
|
|
'sai': {'cooldown': 80, 'damage': 10, 'graphic': import_assets(
|
|
|
|
os.path.join('graphics',
|
|
|
|
'weapons',
|
|
|
|
'sai',
|
|
|
|
'full.png')
|
|
|
|
)
|
|
|
|
},
|
2023-09-27 18:03:37 +00:00
|
|
|
}
|