summaryrefslogtreecommitdiffstats
path: root/Server/Plugins/APIDump/Classes/BlockEntities.lua
blob: 7616d71800771b83d0d961469c6c9c99b7aaa9f0 (plain) (blame)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
return
{
	cBeaconEntity =
	{
		Desc = [[
			A beacon entity is a {{cBlockEntityWithItems}} descendant that represents a beacon
			in the world.
		]],
		Functions =
		{
			CalculatePyramidLevel =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Calculate the amount of layers the pyramid below the beacon has.",
			},
			GetBeaconLevel =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the beacon level. (0 - 4)",
			},
			GetPrimaryEffect =
			{
				Returns =
				{
					{
						Name = "EffectType",
						Type = "cEntityEffect#eType",
					},
				},
				Notes = "Returns the primary effect.",
			},
			GetSecondaryEffect =
			{
				Returns =
				{
					{
						Name = "EffectType",
						Type = "cEntityEffect#eType",
					},
				},
				Notes = "Returns the secondary effect.",
			},
			GiveEffects =
			{
				Notes = "Give the near-players the effects.",
			},
			IsActive =
			{
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Is the beacon active?",
			},
			IsBeaconBlocked =
			{
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Is the beacon blocked by non-transparent blocks that are higher than the beacon?",
			},
			IsMineralBlock =
			{
				IsStatic = true,
				Params =
				{
					{
						Name = "BlockType",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Returns true if the block is a diamond block, a golden block, an iron block or an emerald block.",
			},
			IsValidEffect =
			{
				IsStatic = true,
				Params =
				{
					{
						Name = "EffectType",
						Type = "cEntityEffect#eType",
					},
					{
						Name = "BeaconLevel",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Returns true if the effect can be used.",
			},
			SetPrimaryEffect =
			{
				Params =
				{
					{
						Name = "EffectType",
						Type = "cEntityEffect#eType",
					},
				},
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Select the primary effect. Returns false when the effect is invalid.",
			},
			SetSecondaryEffect =
			{
				Params =
				{
					{
						Name = "EffectType",
						Type = "cEntityEffect#eType",
					},
				},
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Select the secondary effect. Returns false when the effect is invalid.",
			},
			UpdateBeacon =
			{
				Notes = "Update the beacon.",
			},
		},
		Inherits = "cBlockEntityWithItems",
	},
	cBlockEntity =
	{
		Desc = [[
			Block entities are simply blocks in the world that have persistent data, such as the text for a sign
			or contents of a chest. All block entities are also saved in the chunk data of the chunk they reside in.
			The cBlockEntity class acts as a common ancestor for all the individual block entities.
		]],
		Functions =
		{
			GetBlockType =
			{
				Returns =
				{
					{
						Name = "BLOCKTYPE",
						Type = "number",
					},
				},
				Notes = "Returns the blocktype which is represented by this blockentity. This is the primary means of type-identification",
			},
			GetChunkX =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the chunk X-coord of the block entity's chunk",
			},
			GetChunkZ =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the chunk Z-coord of the block entity's chunk",
			},
			GetPos =
			{
				Returns =
				{
					{
						Type = "Vector3i",
					},
				},
				Notes = "Returns the name of the parent class, or empty string if no parent class.",
			},
			GetPosX =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the block X-coord of the block entity's block",
			},
			GetPosY =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the block Y-coord of the block entity's block",
			},
			GetPosZ =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the block Z-coord of the block entity's block",
			},
			GetRelX =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the relative X coord of the block entity's block within the chunk",
			},
			GetRelZ =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the relative Z coord of the block entity's block within the chunk",
			},
			GetWorld =
			{
				Returns =
				{
					{
						Type = "cWorld",
					},
				},
				Notes = "Returns the world to which the block entity belongs",
			},
		},
	},
	cBlockEntityWithItems =
	{
		Desc = [[
			This class is a common ancestor for all {{cBlockEntity|block entities}} that provide item storage.
			Internally, the object has a {{cItemGrid|cItemGrid}} object for storing the items; this ItemGrid is
			accessible through the API. The storage is a grid of items, items in it can be addressed either by a slot
			number, or by XY coords within the grid. If a UI window is opened for this block entity, the item storage
			is monitored for changes and the changes are immediately sent to clients of the UI window.
		]],
		Functions =
		{
			GetContents =
			{
				Returns =
				{
					{
						Type = "cItemGrid",
					},
				},
				Notes = "Returns the cItemGrid object representing the items stored within this block entity",
			},
			GetSlot =
			{
				{
					Params =
					{
						{
							Name = "SlotNum",
							Type = "number",
						},
					},
					Returns =
					{
						{
							Type = "cItem",
						},
					},
					Notes = "Returns the cItem for the specified slot number. Returns nil for invalid slot numbers",
				},
				{
					Params =
					{
						{
							Name = "X",
							Type = "number",
						},
						{
							Name = "Y",
							Type = "number",
						},
					},
					Returns =
					{
						{
							Type = "cItem",
						},
					},
					Notes = "Returns the cItem for the specified slot coords. Returns nil for invalid slot coords",
				},
			},
			SetSlot =
			{
				{
					Params =
					{
						{
							Name = "SlotNum",
							Type = "number",
						},
						{
							Name = "cItem",
							Type = "cItem",
						},
					},
					Notes = "Sets the cItem for the specified slot number. Ignored if invalid slot number",
				},
				{
					Params =
					{
						{
							Name = "X",
							Type = "number",
						},
						{
							Name = "Y",
							Type = "number",
						},
						{
							Name = "cItem",
							Type = "cItem",
						},
					},
					Notes = "Sets the cItem for the specified slot coords. Ignored if invalid slot coords",
				},
			},
		},
		Inherits = "cBlockEntity",
	},
	cBrewingstandEntity =
	{
		Desc = [[
			This class represents a brewingstand entity in the world.</p>
			<p>
			See also the {{cRoot}}:GetBrewingRecipe() function.
		]],
		Functions =
		{
			GetBrewingTimeLeft =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the time until the current items finishes brewing, in ticks",
			},
			GetIndgredientSlot =
			{
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the ingredient slot",
			},
			GetLeftBottleSlot =
			{
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the left bottle slot",
			},
			GetMiddleBottleSlot =
			{
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the middle bottle slot",
			},
			GetResultItem =
			{
				Params =
				{
					{
						Name = "SlotNumber",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the expected result item for the given slot number.",
			},
			GetRightBottleSlot =
			{
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the right bottle slot",
			},
			GetTimeBrewed =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the time that the current items has been brewing, in ticks",
			},
			SetIngredientSlot =
			{
				Params =
				{
					{
						Name = "Ingredient",
						Type = "cItem",
					},
				},
				Notes = "Sets the item in the ingredient bottle slot",
			},
			SetLeftBottleSlot =
			{
				Params =
				{
					{
						Name = "LeftSlot",
						Type = "cItem",
					},
				},
				Notes = "Sets the item in the left bottle slot",
			},
			SetMiddleBottleSlot =
			{
				Params =
				{
					{
						Name = "MiddleSlot",
						Type = "cItem",
					},
				},
				Notes = "Sets the item in the middle bottle slot",
			},
			SetRightBottleSlot =
			{
				Params =
				{
					{
						Name = "RightSlot",
						Type = "cItem",
					},
				},
				Notes = "Sets the item in the right bottle slot",
			},
		},
		Constants =
		{
			bsIngredient =
			{
				Notes = "Index of the ingredient slot",
			},
			bsLeftBottle =
			{
				Notes = "Index of the left bottle slot",
			},
			bsMiddleBottle =
			{
				Notes = "Index of the middle bottle slot",
			},
			bsRightBottle =
			{
				Notes = "Index of the right bottle slot",
			},
			ContentsHeight =
			{
				Notes = "Height (Y) of the {{cItemGrid|cItemGrid}} representing the contents",
			},
			ContentsWidth =
			{
				Notes = "Width (X) of the {{cItemGrid|cItemGrid}} representing the contents",
			},
		},
		ConstantGroups =
		{
			SlotIndices =
			{
				Include = "bs.*",
				TextBefore = "When using the GetSlot() or SetSlot() function, use these constants for slot index:",
			},
		},
		Inherits = "cBlockEntityWithItems",
	},
	cChestEntity =
	{
		Desc = [[
			A chest entity is a {{cBlockEntityWithItems|cBlockEntityWithItems}} descendant that represents a chest
			in the world. Note that doublechests consist of two separate cChestEntity objects, they do not collaborate
			in any way.</p>
			<p>
			To manipulate a chest already in the game, you need to use {{cWorld}}'s callback mechanism with
			either DoWithChestAt() or ForEachChestInChunk() function. See the code example below
		]],
		Constants =
		{
			ContentsHeight =
			{
				Notes = "Height of the contents' {{cItemGrid|ItemGrid}}, as required by the parent class, {{cBlockEntityWithItems}}",
			},
			ContentsWidth =
			{
				Notes = "Width of the contents' {{cItemGrid|ItemGrid}}, as required by the parent class, {{cBlockEntityWithItems}}",
			},
		},
		AdditionalInfo =
		{
			{
				Header = "Code example",
				Contents = [[
					The following example code sets the top-left item of each chest in the same chunk as Player to
					64 * diamond:
<pre class="prettyprint lang-lua">
-- Player is a {{cPlayer}} object instance
local World = Player:GetWorld();
World:ForEachChestInChunk(Player:GetChunkX(), Player:GetChunkZ(),
	function (ChestEntity)
		ChestEntity:SetSlot(0, 0, cItem(E_ITEM_DIAMOND, 64));
	end
);
</pre>
				]],
			},
		},
		Inherits = "cBlockEntityWithItems",
	},
	cCommandBlockEntity =
	{
		Functions =
		{
			Activate =
			{
				Notes = "Sets the command block to execute a command in the next tick",
			},
			GetCommand =
			{
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Retrieves stored command",
			},
			GetLastOutput =
			{
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Retrieves the last line of output generated by the command block",
			},
			GetResult =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Retrieves the result (signal strength) of the last operation",
			},
			SetCommand =
			{
				Params =
				{
					{
						Name = "Command",
						Type = "string",
					},
				},
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Sets the command",
			},
		},
		Inherits = "cBlockEntity",
	},
	cDispenserEntity =
	{
		Desc = [[
			This class represents a dispenser block entity in the world. Most of this block entity's
			functionality is implemented in the {{cDropSpenserEntity}} class that represents
			the behavior common with the {{cDropperEntity|dropper}} block entity.
		]],
		Functions =
		{
			GetShootVector =
			{
				IsStatic = true,
				Params =
				{
					{
						Name = "BlockMeta",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Type = "Vector3d",
					},
				},
				Notes = "Returns a unit vector in the cardinal direction of where the dispenser with the specified meta would be facing.",
			},
			SpawnProjectileFromDispenser =
			{
				Params =
				{
					{
						Name = "BlockX",
						Type = "number",
					},
					{
						Name = "BlockY",
						Type = "number",
					},
					{
						Name = "BlockZ",
						Type = "number",
					},
					{
						Name = "Kind",
						Type = "cProjectileEntity#eKind",
					},
					{
						Name = "Speed",
						Type = "Vector3d",
					},
					{
						Name = "Item",
						Type = "cItem",
					},
				},
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Spawns a projectile of the given kind in front of the dispenser with the specified speed. Returns the UniqueID of the spawned projectile, or {{cEntity#INVALID_ID|cEntity.INVALID_ID}} on failure.",
			},
		},
		Inherits = "cDropSpenserEntity",
	},
	cDropperEntity =
	{
		Desc = [[
			This class represents a dropper block entity in the world. Most of this block entity's functionality
			is implemented in the {{cDropSpenserEntity|cDropSpenserEntity}} class that represents the behavior
			common with the {{cDispenserEntity|dispenser}} entity.</p>
			<p>
			An object of this class can be created from scratch when generating chunks ({{OnChunkGenerated|OnChunkGenerated}} and {{OnChunkGenerating|OnChunkGenerating}} hooks).
		]],
		Inherits = "cDropSpenserEntity",
	},
	cDropSpenserEntity =
	{
		Desc = [[
			This is a class that implements behavior common to both {{cDispenserEntity|dispensers}} and {{cDropperEntity|droppers}}.
		]],
		Functions =
		{
			Activate =
			{
				Notes = "Sets the block entity to dropspense an item in the next tick",
			},
			AddDropSpenserDir =
			{
				Params =
				{
					{
						Name = "BlockX",
						Type = "number",
					},
					{
						Name = "BlockY",
						Type = "number",
					},
					{
						Name = "BlockZ",
						Type = "number",
					},
					{
						Name = "BlockMeta",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Name = "BlockX",
						Type = "number",
					},
					{
						Name = "BlockY",
						Type = "number",
					},
					{
						Name = "BlockZ",
						Type = "number",
					},
				},
				Notes = "Adjusts the block coords to where the dropspenser items materialize",
			},
			SetRedstonePower =
			{
				Params =
				{
					{
						Name = "IsPowered",
						Type = "boolean",
					},
				},
				Notes = "Sets the redstone status of the dropspenser. If the redstone power goes from off to on, the dropspenser will be activated",
			},
		},
		Constants =
		{
			ContentsHeight =
			{
				Notes = "Height (Y) of the {{cItemGrid}} representing the contents",
			},
			ContentsWidth =
			{
				Notes = "Width (X) of the {{cItemGrid}} representing the contents",
			},
		},
		Inherits = "cBlockEntityWithItems",
	},
	cFlowerPotEntity =
	{
		Desc = [[
			This class represents a flower pot entity in the world.
		]],
		Functions =
		{
			GetItem =
			{
				Returns =
				{
					{
						Name = "Item",
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the flower pot.",
			},
			IsItemInPot =
			{
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Is a flower in the pot?",
			},
			SetItem =
			{
				Params =
				{
					{
						Name = "Item",
						Type = "cItem",
					},
				},
				Notes = "Set the item in the flower pot",
			},
		},
		Inherits = "cBlockEntity",
	},
	cFurnaceEntity =
	{
		Desc = [[
			This class represents a furnace block entity in the world.</p>
			<p>
			See also {{cRoot}}'s GetFurnaceRecipe() and GetFurnaceFuelBurnTime() functions
		]],
		Functions =
		{
			GetCookTimeLeft =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the time until the current item finishes cooking, in ticks",
			},
			GetFuelBurnTimeLeft =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the time until the current fuel is depleted, in ticks",
			},
			GetFuelSlot =
			{
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the fuel slot",
			},
			GetInputSlot =
			{
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the input slot",
			},
			GetOutputSlot =
			{
				Returns =
				{
					{
						Type = "cItem",
					},
				},
				Notes = "Returns the item in the output slot",
			},
			GetTimeCooked =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the time that the current item has been cooking, in ticks",
			},
			HasFuelTimeLeft =
			{
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Returns true if there's time before the current fuel is depleted",
			},
			SetFuelSlot =
			{
				Params =
				{
					{
						Name = "Fuel",
						Type = "cItem",
					},
				},
				Notes = "Sets the item in the fuel slot",
			},
			SetInputSlot =
			{
				Params =
				{
					{
						Name = "Input",
						Type = "cItem",
					},
				},
				Notes = "Sets the item in the input slot",
			},
			SetOutputSlot =
			{
				Params =
				{
					{
						Name = "Output",
						Type = "cItem",
					},
				},
				Notes = "Sets the item in the output slot",
			},
		},
		Constants =
		{
			ContentsHeight =
			{
				Notes = "Height (Y) of the {{cItemGrid|cItemGrid}} representing the contents",
			},
			ContentsWidth =
			{
				Notes = "Width (X) of the {{cItemGrid|cItemGrid}} representing the contents",
			},
			fsFuel =
			{
				Notes = "Index of the fuel slot",
			},
			fsInput =
			{
				Notes = "Index of the input slot",
			},
			fsOutput =
			{
				Notes = "Index of the output slot",
			},
		},
		ConstantGroups =
		{
			SlotIndices =
			{
				Include = "fs.*",
				TextBefore = "When using the GetSlot() or SetSlot() function, use these constants for slot index:",
			},
		},
		Inherits = "cBlockEntityWithItems",
	},
	cHopperEntity =
	{
		Desc = [[
			This class represents a hopper block entity in the world.
		]],
		Functions =
		{
			GetOutputBlockPos =
			{
				Params =
				{
					{
						Name = "BlockMeta",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Name = "IsAttached",
						Type = "boolean",
					},
					{
						Name = "BlockX",
						Type = "number",
					},
					{
						Name = "BlockY",
						Type = "number",
					},
					{
						Name = "BlockZ",
						Type = "number",
					},
				},
				Notes = "Returns whether the hopper is attached, and if so, the block coords of the block receiving the output items, based on the given meta.",
			},
		},
		Constants =
		{
			ContentsHeight =
			{
				Notes = "Height (Y) of the internal {{cItemGrid}} representing the hopper contents.",
			},
			ContentsWidth =
			{
				Notes = "Width (X) of the internal {{cItemGrid}} representing the hopper contents.",
			},
			TICKS_PER_TRANSFER =
			{
				Notes = "Number of ticks between when the hopper transfers items.",
			},
		},
		Inherits = "cBlockEntityWithItems",
	},
	cJukeboxEntity =
	{
		Desc = [[
			This class represents a jukebox in the world. It can play the records, either when the
			{{cPlayer|player}} uses the record on the jukebox, or when a plugin instructs it to play.
		]],
		Functions =
		{
			EjectRecord =
			{
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Ejects the current record as a {{cPickup|pickup}}. No action if there's no current record. To remove record without generating the pickup, use SetRecord(0). Returns true if pickup ejected.",
			},
			GetRecord =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the record currently present. Zero for no record, E_ITEM_*_DISC for records.",
			},
			IsPlayingRecord =
			{
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Returns true if the jukebox is playing a record.",
			},
			IsRecordItem =
			{
				Params =
				{
					{
						Name = "ItemType",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Returns true if the specified item is a record that can be played.",
			},
			PlayRecord =
			{
				Params =
				{
					{
						Name = "RecordItemType",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Type = "boolean",
					},
				},
				Notes = "Plays the specified Record. Return false if the parameter isn't a playable Record (E_ITEM_XXX_DISC). If there is a record already playing, ejects it first.",
			},
			SetRecord =
			{
				Params =
				{
					{
						Name = "RecordItemType",
						Type = "number",
					},
				},
				Notes = "Sets the currently present record. Use zero for no record, or E_ITEM_*_DISC for records.",
			},
		},
		Inherits = "cBlockEntity",
	},
	cMobHeadEntity =
	{
		Desc = [[
			This class represents a mob head block entity in the world.
		]],
		Functions =
		{
			GetOwnerName =
			{
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Returns the player name of the mob head",
			},
			GetOwnerTexture =
			{
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Returns the player texture of the mob head",
			},
			GetOwnerTextureSignature =
			{
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Returns the signature of the player texture of the mob head",
			},
			GetOwnerUUID =
			{
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Returns the player UUID of the mob head",
			},
			GetRotation =
			{
				Returns =
				{
					{
						Type = "eMobHeadRotation",
					},
				},
				Notes = "Returns the rotation of the mob head",
			},
			GetType =
			{
				Returns =
				{
					{
						Type = "eMobHeadType",
					},
				},
				Notes = "Returns the type of the mob head",
			},
			SetOwner =
			{
				{
					Params =
					{
						{
							Name = "cPlayer",
							Type = "cPlayer",
						},
					},
					Notes = "Set the {{cPlayer|player}} for mob heads with player type",
				},
				{
					Params =
					{
						{
							Name = "OwnerUUID",
							Type = "string",
						},
						{
							Name = "OwnerName",
							Type = "string",
						},
						{
							Name = "OwnerTexture",
							Type = "string",
						},
						{
							Name = "OwnerTextureSignature",
							Type = "string",
						},
					},
					Notes = "Sets the player components for the mob heads with player type",
				},
			},
			SetRotation =
			{
				Params =
				{
					{
						Name = "Rotation",
						Type = "eMobHeadRotation",
					},
				},
				Notes = "Sets the rotation of the mob head.",
			},
			SetType =
			{
				Params =
				{
					{
						Name = "HeadType",
						Type = "eMobHeadType",
					},
				},
				Notes = "Set the type of the mob head",
			},
		},
		Inherits = "cBlockEntity",
	},
	cMobSpawnerEntity =
	{
		Desc = [[
			This class represents a mob spawner block entity in the world.
		]],
		Functions =
		{
			GetEntity =
			{
				Returns =
				{
					{
						Name = "MobType",
						Type = "eMonsterType",
					},
				},
				Notes = "Returns the entity type that will be spawn by this mob spawner.",
			},
			GetNearbyMonsterNum =
			{
				Params =
				{
					{
						Name = "MobType",
						Type = "eMonsterType",
					},
				},
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the amount of this monster type in a 8-block radius (Y: 4-block radius).",
			},
			GetNearbyPlayersNum =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the amount of the nearby players in a 16-block radius.",
			},
			GetSpawnDelay =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the spawn delay. This is the tick delay that is needed to spawn new monsters.",
			},
			ResetTimer =
			{
				Notes = "Sets the spawn delay to a new random value.",
			},
			SetEntity =
			{
				Params =
				{
					{
						Name = "MobType",
						Type = "eMonsterType",
					},
				},
				Notes = "Sets the type of the mob that will be spawned by this mob spawner.",
			},
			SetSpawnDelay =
			{
				Params =
				{
					{
						Name = "SpawnDelayTicks",
						Type = "number",
					},
				},
				Notes = "Sets the spawn delay.",
			},
			SpawnEntity =
			{
				Notes = "Spawns the entity. This function automaticly change the spawn delay!",
			},
			UpdateActiveState =
			{
				Notes = "Upate the active flag from the mob spawner. This function is called every 5 seconds from the Tick() function.",
			},
		},
		Inherits = "cBlockEntity",
	},
	cNoteEntity =
	{
		Desc = [[
			This class represents a note block entity in the world. It takes care of the note block's pitch,
			and also can play the sound, either when the {{cPlayer|player}} right-clicks it, redstone activates
			it, or upon a plugin's request.</p>
			<p>
			The pitch is stored as an integer between 0 and 24.
		]],
		Functions =
		{
			GetPitch =
			{
				Returns =
				{
					{
						Type = "number",
					},
				},
				Notes = "Returns the current pitch set for the block",
			},
			IncrementPitch =
			{
				Notes = "Adds 1 to the current pitch. Wraps around to 0 when the pitch cannot go any higher.",
			},
			MakeSound =
			{
				Notes = "Plays the sound for all {{cClientHandle|clients}} near this block.",
			},
			SetPitch =
			{
				Params =
				{
					{
						Name = "Pitch",
						Type = "number",
					},
				},
				Notes = "Sets a new pitch for the block.",
			},
		},
		Inherits = "cBlockEntity",
	},
	cSignEntity =
	{
		Desc = [[
			A sign entity represents a sign in the world. This class is only used when generating chunks, so
			that the plugins may generate signs within new chunks. See the code example in {{cChunkDesc}}.
		]],
		Functions =
		{
			GetLine =
			{
				Params =
				{
					{
						Name = "LineIndex",
						Type = "number",
					},
				},
				Returns =
				{
					{
						Type = "string",
					},
				},
				Notes = "Returns the specified line. LineIndex is expected between 0 and 3. Returns empty string and logs to server console when LineIndex is invalid.",
			},
			SetLine =
			{
				Params =
				{
					{
						Name = "LineIndex",
						Type = "number",
					},
					{
						Name = "LineText",
						Type = "string",
					},
				},
				Notes = "Sets the specified line. LineIndex is expected between 0 and 3. Logs to server console when LineIndex is invalid.",
			},
			SetLines =
			{
				Params =
				{
					{
						Name = "Line1",
						Type = "string",
					},
					{
						Name = "Line2",
						Type = "string",
					},
					{
						Name = "Line3",
						Type = "string",
					},
					{
						Name = "Line4",
						Type = "string",
					},
				},
				Notes = "Sets all the sign's lines at once. Note that plugins should prefer to use {{cWorld}}:SetSignLines(), so that they can specify the player on whose behalf the sign is being set.",
			},
		},
		Inherits = "cBlockEntity",
	},
}