feat: four attributes to summarize drone information (#44)
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user