File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed
src/main/mcfpp/minecraft/entity Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change
1
+ data EntityData {
2
+ @Name<"Air">
3
+ short air;
4
+
5
+ @Name<"CustomName">
6
+ string customName;
7
+
8
+ @Name<"CustomNameVisible">
9
+ bool customNameVisible;
10
+
11
+ @Name<"FallDistance">
12
+ float fallDistance;
13
+
14
+ @Name<"Fire">
15
+ short fire;
16
+
17
+ @Name<"Glowing">
18
+ bool glowing;
19
+
20
+ @Name<"HasVisualFire">
21
+ bool hasVisualFire;
22
+
23
+ @Name<"Invulnerable">
24
+ bool invulnerable;
25
+
26
+ @Name<"Motion">
27
+ list<double> motion;
28
+
29
+ @Name<"NoGravity">
30
+ bool noGravity;
31
+
32
+ @Name<"onGround">
33
+ bool onGround;
34
+
35
+ @Name<"Passengers">
36
+ list<EntityData> passengers;
37
+
38
+ @Name<"PortalCooldown">
39
+ int portalCooldown;
40
+
41
+ @Name<"Pos">
42
+ list<double> pos;
43
+
44
+ @Name<"Rotation">
45
+ list<float> rotation;
46
+
47
+ @Name<"Silent">
48
+ bool silent;
49
+
50
+ @Name<"Tags">
51
+ list<string> tags;
52
+
53
+ @Name<"TicksFrozen">
54
+ int ticksFrozen;
55
+
56
+ @Name<"UUID">
57
+ intarray uuid;
58
+ }
You can’t perform that action at this time.
0 commit comments