-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8bfb91
commit 01b35d3
Showing
26 changed files
with
313 additions
and
126 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
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
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,32 @@ | ||
/* | ||
* Copyright (C) 2024 MisterCheezeCake | ||
* | ||
* This file is part of SkyblockTweaks. | ||
* | ||
* SkyblockTweaks is free software: you can redistribute it | ||
* and/or modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation, either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* SkyblockTweaks is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with SkyblockTweaks. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package wtf.cheeze.sbt.utils.enums; | ||
|
||
public enum Crops { | ||
WHEAT, | ||
CARROT, | ||
POTATO, | ||
MELON, | ||
PUMPKIN, | ||
SUGAR_CANE, | ||
COCOA_BEANS, | ||
CACTUS, | ||
MUSHROOM, | ||
NETHER_WART | ||
} |
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,60 @@ | ||
/* | ||
* Copyright (C) 2024 MisterCheezeCake | ||
* | ||
* This file is part of SkyblockTweaks. | ||
* | ||
* SkyblockTweaks is free software: you can redistribute it | ||
* and/or modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation, either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* SkyblockTweaks is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with SkyblockTweaks. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package wtf.cheeze.sbt.utils.enums; | ||
|
||
// Inspired by Skyblocker's Location enum | ||
public enum Location { | ||
PRIVATE_ISLAND("dynamic", "Private Location"), | ||
GARDEN("garden", "The Garden"), | ||
HUB("hub", "The Hub"), | ||
FARMING("farming_1", "The Barn"), | ||
PARK("foraging_1", "The Park"), | ||
SPIDERS_DEN("combat_1", "The Spider's Den"), | ||
END("combat_3", "The End"), | ||
CRIMSON_ISLE("crimson_isle", "The Crimson Isle"), | ||
GOLD_MINE("mining_1", "The Gold Mine"), | ||
DEEP_CAVERNS("mining_2", "The Deep Caverns"), | ||
DWARVEN_MINES("mining_3", "The Dwarven Mines"), | ||
CRYSTAL_HOLLOWS("crystal_hollows", "The Crystal Hollows"), | ||
GLACITE_MINESHAFT("mineshaft", "Glacite Mineshaft"), | ||
DUNGEON_HUB("dungeon_hub", "The Dungeon Hub"), | ||
JERRYS_WORKSHOP("winter", "Jerry's Workshop"), | ||
RIFT("rift", "The Rift"), | ||
DARK_AUCTION("dark_auction", "The Dark Auction"), | ||
DUNGEON("dungeon", "Dungeons"), | ||
KUUDRA("kuudra", "Kuudra"), | ||
UNKNOWN("unknown", "Unknown Location"); | ||
|
||
Location(String mode, String name) { | ||
this.mode = mode; | ||
this.name = name; | ||
} | ||
|
||
; | ||
private final String mode; | ||
private final String name; | ||
|
||
public String getMode() { | ||
return mode; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
} |
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,29 @@ | ||
/* | ||
* Copyright (C) 2024 MisterCheezeCake | ||
* | ||
* This file is part of SkyblockTweaks. | ||
* | ||
* SkyblockTweaks is free software: you can redistribute it | ||
* and/or modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation, either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* SkyblockTweaks is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with SkyblockTweaks. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package wtf.cheeze.sbt.utils.enums; | ||
|
||
public enum Powder { | ||
MITHRIL, | ||
GEMSTONE, | ||
GLACITE; | ||
|
||
public String getDisplayName() { | ||
return name().substring(0, 1).toUpperCase() + name().substring(1).toLowerCase(); | ||
} | ||
} |
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,32 @@ | ||
/* | ||
* Copyright (C) 2024 MisterCheezeCake | ||
* | ||
* This file is part of SkyblockTweaks. | ||
* | ||
* SkyblockTweaks is free software: you can redistribute it | ||
* and/or modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation, either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* SkyblockTweaks is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with SkyblockTweaks. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package wtf.cheeze.sbt.utils.enums; | ||
|
||
public enum Rarity { | ||
COMMON, | ||
UNCOMMON, | ||
RARE, | ||
EPIC, | ||
LEGENDARY, | ||
MYTHIC, | ||
DIVINE, | ||
SPECIAL, | ||
VERY_SPECIAL, | ||
ULTIMATE | ||
} |
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,38 @@ | ||
/* | ||
* Copyright (C) 2024 MisterCheezeCake | ||
* | ||
* This file is part of SkyblockTweaks. | ||
* | ||
* SkyblockTweaks is free software: you can redistribute it | ||
* and/or modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation, either | ||
* version 3 of the License, or (at your option) any later version. | ||
* | ||
* SkyblockTweaks is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with SkyblockTweaks. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
package wtf.cheeze.sbt.utils.enums; | ||
|
||
/** | ||
* Skills | ||
* Unknown is used rather than null when no skill is known to prevent NPEs | ||
*/ | ||
public enum Skills { | ||
COMBAT, | ||
MINING, | ||
FARMING, | ||
FORAGING, | ||
FISHING, | ||
ENCHANTING, | ||
ALCHEMY, | ||
TAMING, | ||
CARPENTRY, | ||
RUNECRAFTING, | ||
SOCIAL, | ||
UNKNOWN | ||
} |
Oops, something went wrong.