summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-04-27 16:57:33 +0200
committerJessica Tölke <jtoelke@mail.upb.de>2013-06-09 20:31:35 +0200
commitbd8fb652baea7a088ad5d1719fb6e0bea5268fd1 (patch)
treef924d89f8f86d0d5589b55a72e9ce60c593ed649
parentb06f600d5f3df79d8704f8169e6a1b712ef866f2 (diff)
downloadclientdata-bd8fb652baea7a088ad5d1719fb6e0bea5268fd1.tar.gz
clientdata-bd8fb652baea7a088ad5d1719fb6e0bea5268fd1.tar.bz2
clientdata-bd8fb652baea7a088ad5d1719fb6e0bea5268fd1.tar.xz
clientdata-bd8fb652baea7a088ad5d1719fb6e0bea5268fd1.zip
Added attributes.xml
Used for telling the client about the minimum and maximum amount of points each attribute can have as well as the amount of points that need to be distributed. The listed attributes are only used to validate the correctness of the character starting points. We could make the client use them, but that would be at the cost of internationalization. See http://bugs.manasource.org/view.php?id=501
-rw-r--r--attributes.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/attributes.xml b/attributes.xml
new file mode 100644
index 00000000..a67593ac
--- /dev/null
+++ b/attributes.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<attributes>
+ <!-- Character starting points definition -->
+ <points start="30" minimum="1" maximum="9" />
+
+ <!-- These entries are only used to validate the above numbers -->
+ <attribute id="1" name="Strength" modifiable="true" scope="character"/>
+ <attribute id="2" name="Agility" modifiable="true" scope="character"/>
+ <attribute id="3" name="Vitality" modifiable="true" scope="character"/>
+ <attribute id="4" name="Intelligence" modifiable="true" scope="character"/>
+ <attribute id="5" name="Dexterity" modifiable="true" scope="character"/>
+ <attribute id="6" name="Luck" modifiable="true" scope="character"/>
+</attributes>