pneuma-pygame/configs/game/spell_config.py

10 lines
356 B
Python
Raw Normal View History

import os
script_dir = os.path.dirname(os.path.abspath(__file__))
asset_path = os.path.join(
2023-11-14 21:44:43 +00:00
script_dir, '../..', 'assets')
2023-09-03 12:58:28 +00:00
magic_data = {
'flame': {'strength': 5, 'cost': .020, 'graphic': f"{asset_path}/graphics/particles/flame/fire.png"},
'heal': {'strength': 20, 'cost': .010, 'graphic': f"{asset_path}/graphics/particles/heal/heal.png"}}