X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FObjects%2FPersonType.cpp;h=0cf880c12d9bf7d36bef4111726dd582af6ef4f5;hb=265236f7b4d05d576a4a6fd81823abff5f3f757b;hp=2cddb3201e5fe583e41e977d0c0adc48e04da193;hpb=b35798eb8ef5e05a4574bbf1115c31a504496616;p=lugaru.git diff --git a/Source/Objects/PersonType.cpp b/Source/Objects/PersonType.cpp index 2cddb32..0cf880c 100644 --- a/Source/Objects/PersonType.cpp +++ b/Source/Objects/PersonType.cpp @@ -76,6 +76,12 @@ void PersonType::Load() types[wolftype].skins[2] = "Textures/FurWolfSnow.jpg"; 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; + types[wolftype].knifeCatchingType = 1; /* Rabbit */ types[rabbittype].proportions[0] = 1.2; @@ -127,4 +133,10 @@ void PersonType::Load() types[rabbittype].skins[9] = "Textures/FurBrownWhite.jpg"; types[rabbittype].power = 1; + types[rabbittype].defaultDamageTolerance = 200; + types[rabbittype].defaultScale = .2; + types[rabbittype].hasClaws = false; + types[rabbittype].clothes = true; + types[rabbittype].maxRunSpeed = 55; + types[rabbittype].knifeCatchingType = 0; }