2025-07-23 19:54:39 +02:00
|
|
|
KNIFE= 1
|
2025-07-26 23:10:51 +02:00
|
|
|
ARCH= 2
|
2025-07-23 19:54:39 +02:00
|
|
|
|
|
|
|
|
SHORT_RANGE= 1
|
|
|
|
|
FAR_RANGE= 2
|
|
|
|
|
|
|
|
|
|
WEAPONS= {
|
|
|
|
|
KNIFE: {
|
|
|
|
|
'weight': 1,
|
|
|
|
|
'name': 'knife',
|
|
|
|
|
'damage': 3,
|
|
|
|
|
'miss_chance': 0, # from 0 to 100, this is the probably to miss the hit
|
|
|
|
|
'ammons': -1, # -1, no limit
|
|
|
|
|
'range': SHORT_RANGE,
|
|
|
|
|
},
|
2025-07-26 23:10:51 +02:00
|
|
|
ARCH: {
|
2025-07-23 19:54:39 +02:00
|
|
|
'weight': 2,
|
|
|
|
|
'name': 'gun',
|
|
|
|
|
'damage': 3,
|
|
|
|
|
'miss_chance': 20, # from 0 to 100, this is the probably to miss the hit
|
|
|
|
|
'ammons': 10, # -1, no limit
|
|
|
|
|
'range': FAR_RANGE,
|
|
|
|
|
},
|
|
|
|
|
}
|