blob: f98203069d0c6c945a0a37af37cb42aecd9e631d [file] [log] [blame]
Zesstra18626972017-01-31 10:38:27 +01001P_BALANCED_WEAPON
2=================
3
4********************* UNGENUTZTE PROPERTY *****************************
5* Diese Property wird von der Mudlib NICHT ausgewertet und kann *
6* als veraltet gelten. *
7* Momentan ist auch keine Gilde bekannt, die mehr macht, als sie *
8* auszugeben. *
9***********************************************************************
10
11NAME
12----
13::
14
15 P_BALANCED_WEAPON "balanced_weapon"
16
17DEFINIERT IN
18------------
19::
20
21 /sys/weapon.h
22
23BESCHREIBUNG
24------------
25::
26
27 Die Property gibt an, ob eine Waffe ausbalanciert ist oder nicht.
28 Die beiden moeglichen Werte sind logischerweise:
29
30 WP_BALANCED balanciert
31 WP_UNBALANCED unbalanciert
32
33 Die WP_* sind ebenfalls in <weapon.h> definiert.
34
35BEISPIELE
36---------
37::
38
39 a) Eine ausbalancierte Waffe ist z.B. ein Kampfstab.
40
41 SetProp(P_BALANCED_WEAPON,WP_BALANCED);
42
43 b) Eine nicht ausbalancierte Waffe ist z.B. eine Keule.
44
45 SetProp(P_BALANCED_WEAPON,WP_UNBALANCED);
46
47SIEHE AUCH
48----------
49::
50
51 P_TECHNIQUE, /std/weapon/combat.c
52
53LETZTE AeNDERUNG
54----------------
55::
56
5715.02.2009, Zesstra
58