2023-09-27 18:03:37 +00:00
|
|
|
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-27 18:03:37 +00:00
|
|
|
|
2023-09-03 12:58:28 +00:00
|
|
|
magic_data = {
|
2023-11-23 11:44:23 +00:00
|
|
|
'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"}}
|