-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added raid maps for all encounters in Vault of Glass
- Loading branch information
Daniel Villavicencio
authored and
Daniel Villavicencio
committed
May 16, 2024
1 parent
5838ed2
commit e3cd724
Showing
22 changed files
with
195 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ build/ | |
!**/src/test/**/build/ | ||
\\ | ||
\\.pub | ||
compose.yml | ||
|
||
### STS ### | ||
.apt_generated | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ plugins { | |
} | ||
|
||
group = 'com.danielvm' | ||
version = '0.1.0-alpha' | ||
version = '0.2.0-alpha' | ||
|
||
|
||
java { | ||
|
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 @@ | ||
services: | ||
riven-of-a-thousand-servers: | ||
image: ${DOCKER_IMAGE_NAME} | ||
env_file: | ||
- .env | ||
ports: | ||
- "8080:8080" | ||
depends_on: | ||
- redis | ||
- mongodb | ||
secrets: | ||
- mongo_username | ||
- mongo_password | ||
- discord_bot_token | ||
- discord_bot_public_key | ||
- discord_application_id | ||
- discord_client_id | ||
- discord_client_secret | ||
- bungie_api_key | ||
- bungie_client_id | ||
- bungie_client_secret | ||
redis: | ||
hostname: redis | ||
image: "redis:7.0.11" | ||
ports: | ||
- "6379:6379" | ||
mongodb: | ||
hostname: mongo | ||
image: "mongo:7.0.3" | ||
ports: | ||
- "27017:27017" | ||
environment: | ||
MONGO_INITDB_ROOT_USERNAME_FILE: /run/secrets/mongo_username | ||
MONGO_INITDB_ROOT_PASSWORD_FILE: /run/secrets/mongo_password | ||
MONGO_INITDB_DATABASE: riven_of_a_thousand_servers | ||
secrets: | ||
- "mongo_username" | ||
- "mongo_password" | ||
|
||
secrets: | ||
mongo_username: | ||
environment: "MONGO_DB_ROOT_USERNAME" | ||
mongo_password: | ||
environment: "MONGO_DB_ROOT_PASSWORD" | ||
discord_bot_token: | ||
environment: "DISCORD_BOT_TOKEN" | ||
discord_bot_public_key: | ||
environment: "DISCORD_BOT_PUBLIC_KEY" | ||
discord_application_id: | ||
environment: "DISCORD_APPLICATION_ID" | ||
discord_client_id: | ||
environment: "DISCORD_CLIENT_ID" | ||
discord_client_secret: | ||
environment: "DISCORD_CLIENT_SECRET" | ||
bungie_api_key: | ||
environment: "BUNGIE_API_KEY" | ||
bungie_client_id: | ||
environment: "BUNGIE_CLIENT_ID" | ||
bungie_client_secret: | ||
environment: "BUNGIE_CLIENT_SECRET" |
23 changes: 23 additions & 0 deletions
23
src/main/java/com/deahtstroke/rivenbot/dto/SocialLink.java
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,23 @@ | ||
package com.deahtstroke.rivenbot.dto; | ||
|
||
import com.deahtstroke.rivenbot.enums.SocialPlatform; | ||
import lombok.AllArgsConstructor; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
@AllArgsConstructor | ||
@NoArgsConstructor | ||
@Data | ||
public class SocialLink { | ||
|
||
/** | ||
* Social Platform this link belongs to | ||
*/ | ||
private SocialPlatform socialPlatform; | ||
|
||
/** | ||
* Social media hyperlink | ||
*/ | ||
private String socialLink; | ||
|
||
} |
2 changes: 2 additions & 0 deletions
2
src/main/java/com/deahtstroke/rivenbot/dto/discord/Emoji.java
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
24 changes: 24 additions & 0 deletions
24
src/main/java/com/deahtstroke/rivenbot/enums/SocialPlatform.java
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,24 @@ | ||
package com.deahtstroke.rivenbot.enums; | ||
|
||
import lombok.Getter; | ||
|
||
public enum SocialPlatform { | ||
|
||
DEVIANTART("DeviantArt", ":deviantart:", 1240125288885784616L), | ||
STEAM("Steam", ":steamlogo:", 1240514012215513139L); | ||
|
||
@Getter | ||
private final String platformName; | ||
|
||
@Getter | ||
private final String emojiName; | ||
|
||
@Getter | ||
private final Long emojiId; | ||
|
||
SocialPlatform(String platformName, String emojiName, Long emojiId) { | ||
this.platformName = platformName; | ||
this.emojiName = emojiName; | ||
this.emojiId = emojiId; | ||
} | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+217 KB
src/main/resources/static/raids/vault_of_glass/atheon/atheon_oracles.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+337 KB
src/main/resources/static/raids/vault_of_glass/confluxes/confluxes.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+294 KB
src/main/resources/static/raids/vault_of_glass/gatekeeper/gatekeepers.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+195 KB
src/main/resources/static/raids/vault_of_glass/gatekeeper/venus_mars.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+441 KB
...ain/resources/static/raids/vault_of_glass/gorgons_labrynth/gorgons_labrynth.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.