-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed targeting for friendly mobs Added basic guild support Added UniqueSpawnEvent to edit uniques Boost overhaul
- Loading branch information
1 parent
42d5204
commit 2399745
Showing
70 changed files
with
1,334 additions
and
792 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package land.face.strife.data; | ||
|
||
import java.util.Map; | ||
import land.face.strife.stats.StrifeStat; | ||
|
||
public class Boost { | ||
|
||
private String boostId; | ||
private int secondsRemaining; | ||
private String boosterName; | ||
private Map<StrifeStat, Float> stats; | ||
|
||
public String getBoostId() { | ||
return boostId; | ||
} | ||
|
||
public void setBoostId(String boostId) { | ||
this.boostId = boostId; | ||
} | ||
|
||
public int getSecondsRemaining() { | ||
return secondsRemaining; | ||
} | ||
|
||
public void setSecondsRemaining(int secondsRemaining) { | ||
this.secondsRemaining = secondsRemaining; | ||
} | ||
|
||
public String getBoosterName() { | ||
return boosterName; | ||
} | ||
|
||
public void setBoosterName(String boosterName) { | ||
this.boosterName = boosterName; | ||
} | ||
|
||
public Map<StrifeStat, Float> getStats() { | ||
return stats; | ||
} | ||
|
||
public void setStats(Map<StrifeStat, Float> stats) { | ||
this.stats = stats; | ||
} | ||
} |
Oops, something went wrong.