This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
lwb6/legacyworlds-server-main/data/tech-graph.xml
Emmanuel BENOîT 1f3c7a9202 Technology definitions loader
* Added "dummy" data file for technologies (for now it simply copies the
old, line-based technologies) and corresponding XML schema

* Added missing SQL stored procedure to clear all dependencies and
reverse dependencies from a technology

* Added import classes, loader and import tool for the technology graph

* Added tech graph import tool to post-build tests
2012-02-27 20:04:02 +01:00

42 lines
No EOL
1.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<lw-tech-graph xmlns="http://www.deepclone.com/lw/b6/m2/tech-graph"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.deepclone.com/lw/b6/m2/tech-graph tech-graph.xsd">
<!-- Military technologies (cruisers, battle cruisers, dreadnoughts) -->
<technology name="cruisersTech" category="milTech"
description="cruisersTechDescription" discovery="cruisersTechDescription"
points="25000" cost="10000" />
<technology name="bCruisersTech" category="milTech"
description="bCruisersTechDescription" discovery="bCruisersTechDescription"
points="900000" cost="400000">
<depends-on>cruisersTech</depends-on>
</technology>
<technology name="dreadnoughtsTech" category="milTech"
description="dreadnoughtsTechDescription" discovery="dreadnoughtsTechDescription"
points="2250000" cost="1012500">
<depends-on>bCruisersTech</depends-on>
</technology>
<!-- Civilian technologies (industrial factories, corpse re-animation, bio-turrets -->
<technology name="indFactTech" category="civTech"
description="indFactTechDescription" discovery="indFactTechDescription"
points="10000" cost="5000" />
<technology name="reanimationTech" category="civTech"
description="reanimationTechDescription" discovery="reanimationTechDescription"
points="562500" cost="281250">
<depends-on>indFactTech</depends-on>
</technology>
<technology name="superTurretTech" category="civTech"
description="superTurretTechDescription" discovery="superTurretTechDescription"
points="1350000" cost="607500">
<depends-on>reanimationTech</depends-on>
</technology>
</lw-tech-graph>