forked from Solara-Development/Neptune
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIParticipant.java
More file actions
72 lines (38 loc) · 1.08 KB
/
IParticipant.java
File metadata and controls
72 lines (38 loc) · 1.08 KB
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
package dev.lrxh.api.match.participant;
import dev.lrxh.api.match.IMatch;
import dev.lrxh.api.profile.IProfile;
import dev.lrxh.api.utils.ITime;
import org.bukkit.Location;
import java.util.UUID;
public interface IParticipant {
boolean isDead();
UUID getPlayerUUID();
String getName();
String getNameColored();
IParticipant getOpponent();
IParticipantColor getColor();
IParticipant getLastAttacker();
int getHits();
int getLongestCombo();
int getCombo();
boolean isLoser();
boolean isDisconnected();
boolean isLeft();
int getPoints();
boolean isFrozen();
boolean isBedBroken();
ITime getTime();
int getEloChange();
Location getCurrentCheckPoint();
int getCheckPoint();
Location getSpawn(IMatch match);
IProfile getProfile();
String getHitsDifference(IParticipant participant);
String getHitsDifferenceUncolored(IParticipant otherParticipant);
IMatch getMatch();
void reset();
void toggleFreeze();
void addWin();
void playKillEffect();
void resetCombo();
}