This mod adds the Dacia civilization to Civilization VII, including Decebalus as a leader, along with unique abilities, units, and buildings.
- Civilization Ability: Carpathian Defenders
- Units receive +5 Combat Strength when fighting in Hills or Forest terrain
- Gold Mines provide +1 Production and +1 Culture
- Leader Ability: Dacian Cavalry Master
- Heavy Cavalry units are 20% faster to produce and require 1 less resource
- Falx Warrior: Unique Ancient era melee unit that replaces the Swordsman
- Hill Fortress: Unique building that provides additional defensive strength to cities
- Dacian Sanctuary: Unique improvement that provides Faith and Culture
-
Place the mod folder in your Civilization VII Mods directory:
- Windows: Documents\My Games\Civilization VII\Mods
- Mac: ~/Library/Application Support/Civilization VII/Mods
- Linux: ~/.local/share/Civilization VII/Mods
-
Launch Civilization VII and enable the mod in the Additional Content menu.
In this monorepo the mod uses the workspace SDK package @mateicanavra/civ7-sdk.
If you are using this mod as a standalone repo (e.g., via subtree mirror) and the GitHub package is not available to you yet, use one of the following options:
- Install the upstream SDK and alias it to the expected name (simple fallback)
pnpm add -D civ7-modding-tools
# add this to package.json to alias the upstream to our name
# "pnpm": { "overrides": { "@mateicanavra/civ7-sdk": "npm:civ7-modding-tools@^0.0.0" } }or
- Edit this mod's package.json dependencies to point directly at the upstream
{
"dependencies": {
"@mateicanavra/civ7-sdk": "npm:civ7-modding-tools@^0.0.0"
}
}Either approach lets the code import @mateicanavra/civ7-sdk while resolving to the upstream civ7-modding-tools package when used outside the monorepo.
Use these scripts to build and deploy your mod in one step:
pnpm run build # generate XML in mod/
pnpm run deploy # deploys mod via the monorepo CLI
pnpm run build:deploy # build and deploy- Mod created by: Mod Author
- Special thanks to the Civilization VII Modding Community
- 1.0.0: Initial release