From cfe3da0aedb9df29a310202a87c7c2ea50d7b478 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Sun, 5 May 2024 16:30:18 +0200 Subject: [PATCH] feat: four attributes to summarize drone information (#44) --- README.md | 4 ++++ convert.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index d5330a8..f10d165 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/convert.py b/convert.py index dffbfee..0f1f32a 100644 --- a/convert.py +++ b/convert.py @@ -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())