feat: four attributes to summarize drone information (#44)

This commit is contained in:
Patric Stout
2024-05-05 16:30:18 +02:00
committed by GitHub
parent 644ac5422c
commit cfe3da0aed
2 changed files with 8 additions and 0 deletions

View File

@@ -90,3 +90,7 @@ The EVE SDE has some quirks, that are easiest fixed in the conversion.
- `-28`: `damageWithoutReloadDps` - the total DPS without reloading.
- `-29`: `damageWithReloadDps` - the total DPS with reloading.
- `-30`: `damageAlphaHp` - the damage done when all guns shoot at once.
- `-31`: `droneActive` - how many drones are active.
- `-32`: `droneBandwidthUsedTotal` - total bandwidth used by the active drones.
- `-33`: `droneDamageAlphaHp` - the damage done when all active drones shoot at once.
- `-34`: `droneDamageDps` - the total DPS for the active drones.

View File

@@ -178,6 +178,10 @@ def convert_dogma_attributes(path):
add_esf_attribute(-28, "damageWithoutReloadDps")
add_esf_attribute(-29, "damageWithReloadDps")
add_esf_attribute(-30, "damageAlphaHp")
add_esf_attribute(-31, "droneActive")
add_esf_attribute(-32, "droneBandwidthUsedTotal")
add_esf_attribute(-33, "droneDamageAlphaHp")
add_esf_attribute(-34, "droneDamageDps")
with open("dist/sde/dogmaAttributes.pb2", "wb") as fp:
fp.write(pb2.SerializeToString())