pneuma-pygame/config/game/monster_config.py

42 lines
1.1 KiB
Python
Raw Permalink Normal View History

2024-05-16 23:15:22 +00:00
monster_data = {
'squid': {'id': 1,
'health': 1,
'exp': 10,
'attack': 2,
'attack_type': 'slash',
'speed': 3,
'knockback': 20,
'attack_radius': 100,
'notice_radius': 200},
'raccoon': {'id': 2,
'health': 1,
'exp': 25,
'attack':5,
'attack_type': 'claw',
'speed': 2,
'knockback': 10,
'attack_radius': 100,
'notice_radius': 180},
'spirit': {'id': 3,
'health': 1,
'exp': 11,
'attack': 2,
'attack_type': 'thunder',
'speed': 4,
'knockback': 20,
'attack_radius': 100,
'notice_radius': 220},
'bamboo': {'id': 4,
'health': 1,
'exp': 9,
'attack': 1,
'attack_type': 'leaf_attack',
'speed': 3,
'knockback': 20,
'attack_radius': 100,
'notice_radius': 300}
}