blob: 1edb51ae26f371400879c216dd38e04d6c1e51c5 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001LimitAbility()
Zesstra953f9972017-02-18 15:37:36 +01002**************
MG Mud User88f12472016-06-24 23:31:02 +02003
MG Mud User88f12472016-06-24 23:31:02 +02004
Zesstra953f9972017-02-18 15:37:36 +01005FUNKTION
6========
MG Mud User88f12472016-06-24 23:31:02 +02007
Zesstra953f9972017-02-18 15:37:36 +01008 protected varargs mixed LimitAbility(mixed sinfo, int diff)
MG Mud User88f12472016-06-24 23:31:02 +02009
Zesstra953f9972017-02-18 15:37:36 +010010
11DEFINIERT IN
12============
13
14 /std/living/skills.c
15
16
17ARGUMENTE
18=========
19
20 mixed sinfo Skill-Informationen
21 int diff Schwierigkeit
22
23
24BESCHREIBUNG
25============
26
27 Setzt ein Maximum an Skillfertigkeit basierend auf der Schwierigkeit
28 und dem P_LEVEL des Spielers.
29
30
31
32 Folgend eine Kopie (!) der Tabelle aus /std/living/skills:
33 diff|lvl 1:| 3:| 7:| 10:| 13:| 16:| 19:| 22:| 25:| 28:| 31:| 34:|
34 ----+------+-----+-----+----+----+----+----+----+----+----+----+----+
35 -50| 83%| 84%| 86%| 87%| 89%| 90%| 92%| 93%| 95%| 96%| 98%| 99%|
36 -10| 69%| 72%| 74%| 77%| 80%| 82%| 85%| 88%| 91%| 93%| 96%| 99%|
37 0| 66%| 69%| 72%| 75%| 78%| 81%| 84%| 87%| 90%| 93%| 96%| 99%|
38 10| 62%| 65%| 69%| 72%| 75%| 79%| 82%| 85%| 89%| 92%| 95%| 98%|
39 20| 59%| 62%| 66%| 70%| 73%| 77%| 80%| 84%| 88%| 91%| 95%| 98%|
40 30| 55%| 59%| 63%| 67%| 71%| 75%| 79%| 83%| 87%| 90%| 94%| 98%|
41 40| 52%| 56%| 60%| 65%| 69%| 73%| 77%| 81%| 86%| 90%| 94%| 98%|
42 50| 49%| 53%| 58%| 62%| 67%| 71%| 76%| 80%| 85%| 89%| 94%| 98%|
43 100| 32%| 38%| 44%| 50%| 56%| 62%| 68%| 74%| 80%| 86%| 92%| 98%|
44 150| 15%| 22%| 30%| 37%| 45%| 52%| 60%| 67%| 75%| 82%| 90%| 97%|
45 200| -2%| 7%| 16%| 25%| 34%| 43%| 52%| 61%| 70%| 79%| 88%| 97%|
46 250| -19%| -8%| 2%| 12%| 23%| 33%| 44%| 54%| 65%| 75%| 86%| 96%|
47 300| -36%| -24%| -12%| 0%| 12%| 24%| 36%| 48%| 60%| 72%| 84%| 96%|
48 400| -70%| -55%| -40%|-25%|-10%| 5%| 20%| 35%| 50%| 65%| 80%| 95%|
49 500| -104%| -86%| -68%|-50%|-32%|-14%| 4%| 22%| 40%| 58%| 76%| 94%|
50 600| -138%|-117%| -96%|-75%|-54%|-33%|-12%| 9%| 30%| 51%| 72%| 93%|
51
52
53SIEHE AUCH
54==========
55
56 Skills Lernen: LearnSkill, ModifySkill
57 * Nutzung: UseSpell, UseSkill
58 * Abfragen: QuerySkill, QuerySkillAbility
59 * Modifikation: ModifySkillAttribute, QuerySkillAttribute,
60 QuerySkillAttributeModifier, RemoveSkillAttributeModifier
61 * Properties: P_SKILL_ATTRIBUTES, P_SKILL_ATTRIBUTE_OFFSETS
62 * sonstig: spruchermuedung
63 * Properties: P_NEWSKILLS
64 Spellbook: Learn, SpellSuccess
MG Mud User88f12472016-06-24 23:31:02 +020065
663. Okt 2011 Gloinson