summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-04-27 16:57:33 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-04-27 16:57:33 +0200
commit9760d91155e1739007766ef82da114c200ec4b7a (patch)
treea36b31ff2818d168b9b25121f331371920e74073
parent98f09f6ff806652cda8db9d99fa40368ff3a89b3 (diff)
downloadclientdata-9760d91155e1739007766ef82da114c200ec4b7a.tar.gz
clientdata-9760d91155e1739007766ef82da114c200ec4b7a.tar.bz2
clientdata-9760d91155e1739007766ef82da114c200ec4b7a.tar.xz
clientdata-9760d91155e1739007766ef82da114c200ec4b7a.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>