blob: 06c1759febf6593fbc5da91cebb386acd9eb381a [file] [log] [blame]
Zesstra18626972017-01-31 10:38:27 +01001P_SHOOTING_WC
2=============
3
4NAME
5----
6::
7
8 P_SHOOTING_WC "shooting_wc"
9
10DEFINIERT IN
11------------
12::
13
14 <combat.h>
15
16BESCHREIBUNG
17------------
18::
19
20 Legt in einer Fernkampfwaffe UND ihrer Munition die Waffenstaerke fest.
21 Bei einem Schuss wird die Summe kombiniert mit der Geschicklichkeit
22 zur Berechnung der Angriffstaerke benutzt.
23
24BEISPIELE
25---------
26::
27
28 SetProp(P_SHOOTING_WC, 70); // Langbogen
29 SetProp(P_SHOOTING_WC, 50); // Kurzbogen
30
31 SetProp(P_SHOOTING_WC, 40); // Bambuspfeil
32 SetProp(P_SHOOTING_WC, 60); // Aluminiumpfeil
33
34 // So haetten Langbogen mit Aluminiumpfeil eine P_SHOOTING_WC von 70+60.
35
36SIEHE AUCH
37----------
38::
39
40 Generell: P_AMMUNITION, P_STRETCH_TIME
41 Methoden: FindRangedTarget(L), shoot_dam(L), cmd_shoot(L)
42 Gebiet: P_RANGE, P_SHOOTING_AREA, P_TARGET_AREA
43 Waffen: P_WEAPON_TYPE, P_WC, P_EQUIP_TIME, P_NR_HANDS
44 Kampf: Attack(L), Defend(L), P_DISABLE_ATTACK, P_ATTACK_BUSY
45 Sonstiges: fernwaffen
46
4729.Jul 2014 Gloinson
48