]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Objects/PersonType.cpp
Moved max run speed to PersonType
[lugaru.git] / Source / Objects / PersonType.cpp
index 3dc4df83bbcb0ceebdbaea6832793347fbfb3816..c1a3aec9a8cd52d7351b3a03dc4552ed4d5eef58 100644 (file)
@@ -78,6 +78,9 @@ void PersonType::Load()
     types[wolftype].power = 2.5;
     types[wolftype].defaultDamageTolerance = 300;
     types[wolftype].defaultScale = .23;
+    types[wolftype].hasClaws = true;
+    types[wolftype].clothes = false;
+    types[wolftype].maxRunSpeed = 75;
 
     /* Rabbit */
     types[rabbittype].proportions[0] = 1.2;
@@ -131,4 +134,7 @@ void PersonType::Load()
     types[rabbittype].power = 1;
     types[rabbittype].defaultDamageTolerance = 200;
     types[rabbittype].defaultScale = .2;
+    types[rabbittype].hasClaws = false;
+    types[rabbittype].clothes = true;
+    types[rabbittype].maxRunSpeed = 55;
 }