-
Notifications
You must be signed in to change notification settings - Fork 0
/
statistics-table.html
122 lines (122 loc) · 3.48 KB
/
statistics-table.html
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<table class="wikitable" style="text-align:left">
<tbody><tr>
<th>Statistic name</th>
<th>Description</th>
<th>Stat ID</th>
</tr>
<tr>
<td>Games quit</td>
<td>The number of times "Save and quit to title" has been clicked.</td>
<td>stat.leaveGame</td>
</tr>
<tr>
<td>Minutes Played</td>
<td>The total amount of time played. This is not necessarily displayed in minutes - it displays in seconds, minutes, hours or days whichever makes the most sense. If the game is paused this number ceases to increase. If "5.50 h" is displayed this means that you have played for 5 hours and 30 minutes (not 50 minutes).</td>
<td>stat.playOneMinute</td>
</tr>
<tr>
<td>Distance Walked</td>
<td>The total distance walked.</td>
<td>stat.walkOneCm</td>
</tr>
<tr>
<td>Distance Swum</td>
<td>The total distance swum. Wading through water also increases this number. It does not include vertical distance from bouncing in water.</td>
<td>stat.swimOneCm</td>
</tr>
<tr>
<td>Distance Fallen</td>
<td>The total distance fallen, excluding jumping. If the player falls more than one block, the entire jump is counted.</td>
<td>stat.fallOneCm</td>
</tr>
<tr>
<td>Distance Climbed</td>
<td>The total distance traveled up ladders or vines.</td>
<td>stat.climbOneCm</td>
</tr>
<tr>
<td>Distance Flown</td>
<td>Distance traveled upwards and forwards at the same time, while more than one block above the ground.</td>
<td>stat.flyOneCm</td>
</tr>
<tr>
<td>Distance Dove</td>
<td>The total distance you have walked underwater.</td>
<td>stat.diveOneCm</td>
</tr>
<tr>
<td>Distance by Minecart</td>
<td>The total distance traveled by <a href="/Minecart" title="Minecart">minecarts</a>.</td>
<td>stat.minecartOneCm</td>
</tr>
<tr>
<td>Distance by Boat</td>
<td>The total distance traveled by <a href="/Boat" title="Boat">boats</a>.</td>
<td>stat.boatOneCm</td>
</tr>
<tr>
<td>Distance by Pig</td>
<td>The total distance traveled by <a href="/Pig" title="Pig">pigs</a> via <a href="/Saddle" title="Saddle">saddles</a>.</td>
<td>stat.pigOneCm</td>
</tr>
<tr>
<td>Distance by Horse</td>
<td>The total distance traveled by <a href="/Horse" title="Horse">horses</a>.</td>
<td>stat.horseOneCm</td>
</tr>
<tr>
<td>Jumps</td>
<td>The total number of jumps performed.</td>
<td>stat.jump</td>
</tr>
<tr>
<td>Items Dropped</td>
<td>The number of items dropped by the player. This includes items dropped upon death.</td>
<td>stat.drop</td>
</tr>
<tr>
<td>Damage Dealt</td>
<td>The amount of damage the player has dealt in half-hearts. This does not include self-inflicted damage via arrows.</td>
<td>stat.damageDealt</td>
</tr>
<tr>
<td>Damage Taken</td>
<td>The amount of damage the player has taken in half-hearts.</td>
<td>stat.damageTaken</td>
</tr>
<tr>
<td>Number of Deaths</td>
<td>The number of times the player has died.</td>
<td>stat.deaths</td>
</tr>
<tr>
<td>Mob Kills</td>
<td>The number of mobs the player has killed.</td>
<td>stat.mobKills</td>
</tr>
<tr>
<td>Animals Bred</td>
<td>The number of times the player has bred two animals.</td>
<td>stat.animalsBred</td>
</tr>
<tr>
<td>Player Kills</td>
<td>The number of players the player has killed (on PvP servers). Indirect kills do not count.</td>
<td>stat.playerKills</td>
</tr>
<tr>
<td>Fish Caught</td>
<td>The number of <a href="/Fish" title="Fish" class="mw-redirect">fish</a> caught.</td>
<td>stat.fishCaught</td>
</tr>
<tr>
<td>Junk Fished</td>
<td>The number of junk fished.</td>
<td>stat.junkFished</td>
</tr>
<tr>
<td>Treasure Fished</td>
<td>The number of treasures fished.</td>
<td>stat.treasureFished</td>
</tr>
</tbody></table>