pneuma-pygame/config/game/player_config.py

52 lines
707 B
Python
Raw Normal View History

2023-11-13 12:34:22 +00:00
tank_stats = {
'role_id': 1,
'health': 150,
2023-12-10 19:15:40 +00:00
'energy': 70,
'attack': 10,
2023-12-10 19:15:40 +00:00
'magic': 5,
'speed': 5
2023-11-13 12:34:22 +00:00
}
mage_stats = {
'role_id': 2,
'health': 70,
'energy': 80,
'attack': 7,
2023-11-13 12:34:22 +00:00
'magic': 6,
'speed': 5
}
warrior_stats = {
'role_id': 3,
2023-10-04 02:37:28 +00:00
'health': 100,
'energy': 60,
'attack': 12,
2023-10-04 02:37:28 +00:00
'magic': 4,
'speed': 5
}
base_stats = {
'role_id': 0,
'health': 150,
'energy': 70,
'attack': 10,
'magic': 5,
'speed': 5
}
2023-10-04 02:37:28 +00:00
max_stats = {
'health': 300,
'energy': 150,
'attack': 20,
'magic': 10,
'speed': 10
}
upgrade_costs = {
'health': 100,
'energy': 100,
'attack': 100,
'magic': 100,
'speed': 100
}