forked from MagicBane/Server
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.8 KiB
65 lines
1.8 KiB
3 years ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2022
|
||
|
// www.magicbane.com
|
||
|
|
||
|
|
||
|
package engine.objects;
|
||
|
|
||
|
import engine.Enum.ShrineType;
|
||
|
import engine.gameManager.DbManager;
|
||
|
|
||
|
import java.sql.ResultSet;
|
||
|
import java.sql.SQLException;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.HashMap;
|
||
|
|
||
|
|
||
|
|
||
|
public class Boon {
|
||
|
|
||
|
private ShrineType shrineType;
|
||
|
private int amount;
|
||
|
private int itemBaseID;
|
||
|
public static HashMap<Integer,ArrayList<Boon>> GetBoonsForItemBase = new HashMap<>();
|
||
|
|
||
|
|
||
|
/**
|
||
|
* ResultSet Constructor
|
||
|
*/
|
||
|
public Boon(ResultSet rs) throws SQLException {
|
||
|
|
||
|
this.shrineType = ShrineType.valueOf(rs.getString("shrineType"));
|
||
|
this.itemBaseID = rs.getInt("itemBaseID");
|
||
|
this.amount = rs.getInt("amount");
|
||
|
}
|
||
|
|
||
|
public int getAmount() {
|
||
|
return this.amount;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
public int getItemBaseID() {
|
||
|
return itemBaseID;
|
||
|
}
|
||
|
|
||
|
|
||
|
public ShrineType getShrineType() {
|
||
|
return shrineType;
|
||
|
}
|
||
|
|
||
|
|
||
|
public static void HandleBoonListsForItemBase(int itemBaseID){
|
||
|
ArrayList<Boon> boons = null;
|
||
|
boons = DbManager.BoonQueries.GET_BOON_AMOUNTS_FOR_ITEMBASEUUID(itemBaseID);
|
||
|
if (boons != null)
|
||
|
GetBoonsForItemBase.put(itemBaseID, boons);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|