Parsed stats on units, buildings and technologies from Age of Empires 4 in a developer friendly format.
[ GitHub ]
This project hosts data on all units, buildings, technologies, upgrades and other AoE4 game objects in an opinionated json format ready for developers to use in any project. The data is parsed from game files and reflects what players can read on in-game tooltips.
Example ./units/english/man-at-arms-2.json
{
"id": "man-at-arms-2",
"baseId": "man-at-arms",
"type": "unit",
"name": "Early Man-at-Arms",
"pbgid": 166404,
"attribName": "unit_manatarms_2_eng",
"age": 2,
"civs": ["en"],
"description": "Tough infantry with good damage.\n+ High armor\n- Slow movement\n- Countered by Knights, Lancers, and Crossbowmen",
"classes": ["heavy", "melee", "infantry"],
"displayClasses": ["Heavy Melee Infantry"],
"unique": false,
"costs": {
"food": 100,
"wood": 0,
"stone": 0,
"gold": 20,
"total": 120,
"popcap": 1,
"time": 15
},
"producedBy": ["barracks", "the-white-tower", "keep", "berkshire-palace"],
"icon": "https://data.aoe4world.com/images/units/man-at-arms-2.png",
"hitpoints": 120,
"weapons": [
{
"name": "Sword",
"type": "melee",
"damage": 10,
"speed": 1.375,
"range": {
"min": 0,
"max": 0.295
},
"modifiers": [],
"durations": {
"aim": 0,
"windup": 0.5,
"attack": 0.125,
"winddown": 0.75,
"reload": 0,
"setup": 0,
"teardown": 0,
"cooldown": 0
},
"attribName": "weapon_manatarms_2",
"pbgid": 129615
},
{
"name": "Torch",
"type": "fire",
"damage": 10,
"speed": 2.125,
"range": {
"min": 0,
"max": 1.25
},
"modifiers": [],
"durations": {
"aim": 0,
"windup": 0.75,
"attack": 0.125,
"winddown": 0,
"reload": 0,
"setup": 0,
"teardown": 0,
"cooldown": 1.25
},
"attribName": "weapon_torch",
"pbgid": 123518
}
],
"armor": [
{
"type": "melee",
"value": 3
},
{
"type": "ranged",
"value": 3
}
],
"sight": {
"line": 36,
"height": 10
},
"movement": {
"speed": 1.125
}
}
All units, buildings and technologies are individually available for each civilization that has access to them. Additionally, there's an 'unified' format, that groups together variations of the same item in one file.
Example File | Description |
---|---|
/units/english/horseman-2.json |
The English horseman available in Feudal Age |
/units/unified/horseman.json |
All horsemen from all civilizations and all ages |
/units/all.json |
All units from all civilizations and all ages in one list |
/units/all-unified.json |
All units from all civilizations and all ages, grouped by unit |
/buildings/** |
Buildings and landmarks |
/technologies/** |
Technologies, like blacksmith upgrades, uniqiue improvments, etc |
/upgrade/** |
Unit upgrades, i.e. veteran horseman to elite horseman |
The logic to parse game files and output them in our desired format resides in src/attrib
.
Requirements: Node, .Net Core
Feel free to open PRs or issues for data that is incorrect or missing, if possible please provide a rationale or source. One-off corrections to data are encoded in src/attrib/workarounds.ts and technology effects in src/attrib/technologies.ts
You will need raw parsed game files to build and update the data. Those files are not included in the repository due to licensing and copyright issues (you will need your own copy of AoE4). First we unpack the so called Archives (SGA) and then parse them using scripts we wrote to JSON files.
- Download and install the latest version of AOEMods.Essence.
- Localate the game files, typically located in
C:\Program Files\Steam\steamapps\common\Age of Empires IV\
. When you play the gam through XBox, the process is a bit more involved as the game is installed in the hidden and securewindowsapps
folder. - Copy the following files/folders into
/source
cardinal\archives\Attrib.sga
for all stats and attributescardinal\archives\UIArt.sga
for the icons (optional if you want to update icons)cardinal\archives\LocaleEnglish.sga
for the names and descriptions
- Unpack and convert the Attrib archive
dotnet AOEMods.Essence.CLI.dll sga-unpack ./source/Attrib.sga ./source/attrib-raw
dotnet AOEMods.Essence.CLI.dll rgd-decode ./source/attrib-raw ./source/ -b -f json
- Unpack the locale file using AOEMods.Essence, i.e.
dotnet AOEMods.Essence.CLI.dll sga-unpack ./source/LocaleEnglish.sga ../source/locale`
- Optionally unpack the UIArt file using AOEMods.Essence, and convert the icons into PNG files, i.e.
If this step isn't giving you the desired results consider using Coh3-Image-Extractor instead. It works with similar commands
dotnet AOEMods.Essence.CLI.dll sga-unpack ./source/UIArt.sga ./source/art` dotnet AOEMods.Essence.CLI.dll rrtex-decode ./source/art/ui/icons/races ./source/icons -b
python scripts/main.py --src "./source/art" --format png
- You should end up with a folder structure like this:
source ├── attrib │ ├── instances │ ├── templates │ └── etc... ├── icons │ └── races │ ├── abbasid │ ├── chinese │ └── etc... └── locale └── en └── cardinal.en.ucs
- Run
yarn install && yarn parse --essence
to update the data. - Verify the changes. Specifically, the technology effects are currently compiled from translation parameters, of which the order may change. This can easily be spotted by changes in any technology description field. If they changed, update the parameter order or implementation in
effect.ts
. - Run
yarn build
to update the optimzed json files and library.
Note: The
--essence
flag instructs our code to use formatting from the Essence format, rather than the (now deprecated) Attrib xml files that are packed with the game in the root cardinal folder.
Parsing can be relatively slow due to the total amount of files involved. If you're just working on data for a specific civ you can add an additional flag to the the parse command to only parse a specific civ. I.e. yarn parse --essence --civ japanese
Created and maintained by Robert van Hoesel from AoE4 World
All of this data is open source, you may use it in your projects, websites and apps. However, Microsoft owns the Copyright on the game, and for this reason you can't use this data in commercial contexts, excepts as described in Microsoft's Game Content Usage Rules. Whenever you are using the data in this repository or other media from Age of Empires 4, please make sure to abide by the rules.
Age Of Empires 4 © Microsoft Corporation. Aoe4world/data was created under Microsoft's "Game Content Usage Rules" using assets from Age Of Empires 4, and it is not endorsed by or affiliated with Microsoft.