edman3d / ageofinfo-gcp

Age of Info GCP
1 stars 0 forks source link

Change armor/attack bonus data structure #17

Closed edman3d closed 1 year ago

edman3d commented 1 year ago

Instead of current:

+2 vs Eagle Warrior;+2 vs Standard Buildings

Change to something like

[{amount: 2, against: 'Eagle Warrior'}, {amount: 2, against: 'Standard Buildings'}]

That way I can display it in a much nicer way using components and stuff. Also makes it easier to update via a UI form

edman3d commented 1 year ago

done