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