Zesstra | 1862697 | 2017-01-31 10:38:27 +0100 | [diff] [blame] | 1 | SpellSuccess() |
| 2 | ============== |
| 3 | |
| 4 | FUNKTION |
| 5 | -------- |
| 6 | :: |
| 7 | |
| 8 | int SpellSuccess(object caster, mapping sinfo) |
| 9 | |
| 10 | DEFINIERT IN |
| 11 | ------------ |
| 12 | :: |
| 13 | |
| 14 | /std/spellbook.c |
| 15 | |
| 16 | ARGUMENTE |
| 17 | --------- |
| 18 | :: |
| 19 | |
| 20 | object caster Spell sprechender Spieler |
| 21 | mapping sinfo Spell-Info-Mapping mit allen Informationen |
| 22 | |
| 23 | BESCHREIBUNG |
| 24 | ------------ |
| 25 | :: |
| 26 | |
| 27 | Berechnet den Erfolg der Anwendung eines Spells aus seiner |
| 28 | SI_SKILLABILITY und dem Skill SK_CASTING im Spieler. Laesst |
| 29 | den Spieler bei besonders gutem Gelingen SK_CASTING lernen. |
| 30 | |
| 31 | BEMERKUNGEN |
| 32 | ----------- |
| 33 | :: |
| 34 | |
| 35 | SK_CASTING muss fuer die SK_CASTING-Boni beherrscht werden. |
| 36 | Das ist zB im Klerus ab bestimmtem Level der Fall. |
| 37 | |
| 38 | SIEHE AUCH |
| 39 | ---------- |
| 40 | :: |
| 41 | |
| 42 | Spellbook Lernen: Learn, Erfolg, Misserfolg |
| 43 | * Verwalten: AddSpell, QuerySpell |
| 44 | * Angriff: TryAttackSpell, TryDefaultAttackSpell, |
| 45 | TryGlobalAttackSpell |
| 46 | * Properties: P_GLOBAL_SKILLPROPS, P_SB_SPELLS |
| 47 | Skills Lernen: LearnSkill, ModifySkill, LimitAbility |
| 48 | * Nutzung: UseSpell, UseSkill |
| 49 | * sonstig: spruchermuedung, skill_info_liste |
| 50 | |
| 51 | 5. Okt 2011 Gloinson |
| 52 | |