1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Elemental attribute damage adjustment tables
//
// Row: target's defense element
// Column: attacker's weapon element
1,10 // lv1 Attribute table
//Neut Watr Erth Fire Wind --- Holy Shdw Gho ---
95, 100, 100, 100, 100, 100, 100, 110, 80, 100, // Neutral
100, 95, 125, 75, 100, 100, 100, 100, 100, 100, // Water
100, 75, 95, 100, 125, 100, 100, 100, 100, 100, // Earth
100, 125, 100, 95, 75, 100, 100, 100, 100, 100, // Fire
100, 100, 75, 125, 95, 100, 100, 100, 100, 100, // Wind
100, 100, 100, 100, 100, 95, 100, 100, 100, 125, // UNUSED
100, 100, 100, 100, 100, 85, 95, 125, 100, 70, // Holy
100, 100, 100, 100, 100, 85, 125, 95, 100, 70, // Shadow
50, 70, 70, 70, 70, 70, 100, 70, 125, 70, // Ghost
100, 100, 100, 100, 100, 120, 80, 80, 100, 100, // UNUSED
2,10 // lv2 Attribute table
//Neut Watr Erth Fire Wind --- Holy Shdw Gho ---
90, 100, 100, 100, 100, 100, 100, 110, 70, 100, // Neutral
100, 90, 150, 50, 100, 100, 100, 100, 100, 100, // Water
100, 50, 90, 100, 150, 100, 100, 100, 100, 100, // Earth
100, 150, 100, 90, 50, 100, 100, 100, 100, 100, // Fire
100, 100, 50, 150, 90, 100, 100, 100, 100, 100, // Wind
100, 100, 100, 100, 100, 90, 100, 100, 100, 150, // UNUSED
100, 100, 100, 100, 100, 80, 90, 150, 100, 70, // Holy
100, 100, 100, 100, 100, 80, 150, 90, 100, 70, // Shadow
40, 60, 60, 60, 60, 60, 100, 60, 150, 60, // Ghost
100, 100, 100, 100, 100, 140, 70, 70, 100, 70, // UNUSED
3,10 // lv3 Attribute table
//Neut Watr Erth Fire Wind --- Holy Shdw Gho ---
80, 100, 100, 100, 100, 100, 100, 110, 60, 100, // Neutral
100, 80, 175, 25, 100, 100, 100, 100, 100, 100, // Water
100, 25, 80, 100, 175, 100, 100, 100, 100, 100, // Earth
100, 175, 100, 80, 25, 100, 100, 100, 100, 100, // Fire
100, 100, 25, 175, 80, 100, 100, 100, 100, 100, // Wind
100, 100, 100, 100, 100, 80, 100, 100, 100, 175, // UNUSED
100, 100, 100, 100, 100, 75, 80, 175, 100, 70, // Holy
100, 100, 100, 100, 100, 75, 175, 80, 100, 70, // Shadow
30, 50, 50, 50, 50, 50, 100, 50, 175, 50, // Ghost
100, 100, 100, 100, 100, 160, 60, 60, 100, 60, // UNUSED
4,10 // lv4 Attribute table
//Neut Watr Erth Fire Wind --- Holy Shdw Gho ---
70, 100, 100, 100, 100, 100, 100, 110, 50, 100, // Neutral
100, 70, 200, 5, 100, 100, 100, 100, 100, 100, // Water
100, 5, 70, 100, 200, 100, 100, 100, 100, 100, // Earth
100, 200, 100, 70, 5, 100, 100, 100, 100, 100, // Fire
100, 100, 5, 200, 70, 100, 100, 100, 100, 100, // Wind
100, 100, 100, 100, 100, 70, 100, 100, 100, 200, // UNUSED
100, 100, 100, 100, 100, 70, 70, 200, 100, 70, // Holy
100, 100, 100, 100, 100, 70, 200, 70, 100, 70, // Shadow
20, 40, 40, 40, 40, 40, 100, 40, 200, 40, // Ghost
100, 100, 100, 100, 100, 180, 50, 50, 100, 50, // UNUSED
|