X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FObjects%2FPersonType.cpp;h=c1a3aec9a8cd52d7351b3a03dc4552ed4d5eef58;hb=a4fa4c9e3d7087b3789ff16238089547e78b818f;hp=3dd392842d63bc2edbf5b604dc12bcbe2285f46b;hpb=5667984d5698eca3e5df2ed44a04ed4087fe24dd;p=lugaru.git diff --git a/Source/Objects/PersonType.cpp b/Source/Objects/PersonType.cpp index 3dd3928..c1a3aec 100644 --- a/Source/Objects/PersonType.cpp +++ b/Source/Objects/PersonType.cpp @@ -79,6 +79,8 @@ void PersonType::Load() 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; @@ -133,4 +135,6 @@ void PersonType::Load() types[rabbittype].defaultDamageTolerance = 200; types[rabbittype].defaultScale = .2; types[rabbittype].hasClaws = false; + types[rabbittype].clothes = true; + types[rabbittype].maxRunSpeed = 55; }