pneuma-pygame/config/game/monster_config.py

42 lines
1.1 KiB
Python
Raw Normal View History

monster_data = {
'squid': {'id': 1,
2023-12-22 10:32:35 +00:00
'health': 1,
'exp': 10,
'attack': 0,
'attack_type': 'slash',
'speed': 3,
'knockback': 20,
2024-03-04 13:18:57 +00:00
'attack_radius': 1,
'notice_radius': 1},
2023-10-04 02:37:28 +00:00
'raccoon': {'id': 2,
2023-12-22 10:32:35 +00:00
'health': 1,
'exp': 25,
'attack': 0,
'attack_type': 'claw',
'speed': 2,
'knockback': 10,
2024-03-04 13:18:57 +00:00
'attack_radius': 1,
'notice_radius': 1},
2023-10-04 02:37:28 +00:00
'spirit': {'id': 3,
2023-12-22 10:32:35 +00:00
'health': 1,
'exp': 11,
'attack': 0,
'attack_type': 'thunder',
'speed': 4,
'knockback': 20,
2024-03-04 13:18:57 +00:00
'attack_radius': 1,
'notice_radius': 1},
2023-10-04 02:37:28 +00:00
'bamboo': {'id': 4,
2023-12-22 10:32:35 +00:00
'health': 1,
'exp': 9,
'attack': 0,
'attack_type': 'leaf_attack',
'speed': 3,
'knockback': 20,
2024-03-04 13:18:57 +00:00
'attack_radius': 1,
'notice_radius': 1}
}