Compare commits
17 Commits
cicd
...
BL3_Sanctu
Author | SHA1 | Date | |
---|---|---|---|
ed1e5ff753 | |||
47a387e57a | |||
|
9e1aa198da | ||
|
7d76ed6af0 | ||
|
66ecacee93 | ||
|
cfbd52a5fe | ||
|
ec5443b9f6 | ||
|
f3f61781e0 | ||
|
8df11cd258 | ||
|
519b4a11e1 | ||
2aa87bae00 | |||
|
4599ca2ccd | ||
125cb732ee | |||
|
aae97ec78a | ||
|
f1845c7101 | ||
|
f56b7877dc | ||
|
181caf6092 |
3
.gitignore
vendored
@@ -5,3 +5,6 @@
|
|||||||
# Ignore python stuff
|
# Ignore python stuff
|
||||||
**/__pycache__
|
**/__pycache__
|
||||||
**/.pytest_cache
|
**/.pytest_cache
|
||||||
|
|
||||||
|
# Ignore les fichiers système de MacOS
|
||||||
|
**/.DS_Store
|
@@ -9,8 +9,8 @@ stages:
|
|||||||
- Release
|
- Release
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
ENTRY_FOLDER: test # test directory for testing CI/CD, or assets directory for normal operations
|
ENTRY_FOLDER: assets
|
||||||
RELEASE_VERSION: v0.$CI_PIPELINE_IID
|
RELEASE_VERSION: v$CI_PIPELINE_IID
|
||||||
PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${PACKAGE_NAME}/${RELEASE_VERSION}"
|
PACKAGE_REGISTRY_URL: "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/${PACKAGE_NAME}/${RELEASE_VERSION}"
|
||||||
|
|
||||||
# Jobs from here run on Merge Requests as prerequisite for merging.
|
# Jobs from here run on Merge Requests as prerequisite for merging.
|
||||||
@@ -18,7 +18,6 @@ variables:
|
|||||||
stage: Manifest
|
stage: Manifest
|
||||||
image: node:latest
|
image: node:latest
|
||||||
rules:
|
rules:
|
||||||
#- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
|
|
||||||
- if: $CI_COMMIT_TAG
|
- if: $CI_COMMIT_TAG
|
||||||
when: never
|
when: never
|
||||||
- changes:
|
- changes:
|
||||||
@@ -39,7 +38,6 @@ variables:
|
|||||||
stage: Test
|
stage: Test
|
||||||
image: python:latest
|
image: python:latest
|
||||||
rules:
|
rules:
|
||||||
#- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
|
|
||||||
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
||||||
changes:
|
changes:
|
||||||
- ${ENTRY_FOLDER}/${PACKAGE_NAME}/*
|
- ${ENTRY_FOLDER}/${PACKAGE_NAME}/*
|
||||||
@@ -53,7 +51,6 @@ variables:
|
|||||||
stage: Bundle
|
stage: Bundle
|
||||||
image: javieraviles/zip:latest
|
image: javieraviles/zip:latest
|
||||||
rules:
|
rules:
|
||||||
#- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
|
|
||||||
- if: $CI_COMMIT_TAG
|
- if: $CI_COMMIT_TAG
|
||||||
when: never
|
when: never
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
@@ -71,7 +68,6 @@ variables:
|
|||||||
stage: Distribute
|
stage: Distribute
|
||||||
image: curlimages/curl:latest
|
image: curlimages/curl:latest
|
||||||
rules:
|
rules:
|
||||||
#- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
|
|
||||||
- if: $CI_COMMIT_TAG
|
- if: $CI_COMMIT_TAG
|
||||||
when: never
|
when: never
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
@@ -87,7 +83,6 @@ variables:
|
|||||||
stage: Release
|
stage: Release
|
||||||
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
||||||
rules:
|
rules:
|
||||||
#- if: $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME == "cicd"
|
|
||||||
- if: $CI_COMMIT_TAG
|
- if: $CI_COMMIT_TAG
|
||||||
when: never
|
when: never
|
||||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||||
|
32
.gitlab/BL2_frozen_wastelands.yml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
manifest-job/BL2_frozen_wastelands:
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL2_frozen_wastelands"
|
||||||
|
extends: .manifest-job
|
||||||
|
|
||||||
|
test-images-job/BL2_frozen_wastelands:
|
||||||
|
needs:
|
||||||
|
- manifest-job/BL2_frozen_wastelands
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL2_frozen_wastelands"
|
||||||
|
extends: .test-job
|
||||||
|
|
||||||
|
bundle-job/BL2_frozen_wastelands:
|
||||||
|
needs:
|
||||||
|
- manifest-job/BL2_frozen_wastelands
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL2_frozen_wastelands"
|
||||||
|
extends: .bundle-job
|
||||||
|
|
||||||
|
upload-job/BL2_frozen_wastelands:
|
||||||
|
needs:
|
||||||
|
- bundle-job/BL2_frozen_wastelands
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL2_frozen_wastelands"
|
||||||
|
extends: .upload-job
|
||||||
|
|
||||||
|
release-job/BL2_frozen_wastelands:
|
||||||
|
needs:
|
||||||
|
- upload-job/BL2_frozen_wastelands
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL2_frozen_wastelands"
|
||||||
|
extends: .release-job
|
32
.gitlab/BL3_Lunch_in_Trashlantis.yml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
manifest-job/BL3_Lunch_in_Trashlantis:
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
|
||||||
|
extends: .manifest-job
|
||||||
|
|
||||||
|
test-images-job/BL3_Lunch_in_Trashlantis:
|
||||||
|
needs:
|
||||||
|
- manifest-job/BL3_Lunch_in_Trashlantis
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
|
||||||
|
extends: .test-job
|
||||||
|
|
||||||
|
bundle-job/BL3_Lunch_in_Trashlantis:
|
||||||
|
needs:
|
||||||
|
- manifest-job/BL3_Lunch_in_Trashlantis
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
|
||||||
|
extends: .bundle-job
|
||||||
|
|
||||||
|
upload-job/BL3_Lunch_in_Trashlantis:
|
||||||
|
needs:
|
||||||
|
- bundle-job/BL3_Lunch_in_Trashlantis
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
|
||||||
|
extends: .upload-job
|
||||||
|
|
||||||
|
release-job/BL3_Lunch_in_Trashlantis:
|
||||||
|
needs:
|
||||||
|
- upload-job/BL3_Lunch_in_Trashlantis
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Lunch_in_Trashlantis"
|
||||||
|
extends: .release-job
|
32
.gitlab/BL3_Sanctuary_Bay.yml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
manifest-job/BL3_Sanctuary_Bay:
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Sanctuary_Bay"
|
||||||
|
extends: .manifest-job
|
||||||
|
|
||||||
|
test-images-job/BL3_Sanctuary_Bay:
|
||||||
|
needs:
|
||||||
|
- manifest-job/BL3_Sanctuary_Bay
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Sanctuary_Bay"
|
||||||
|
extends: .test-job
|
||||||
|
|
||||||
|
bundle-job/BL3_Sanctuary_Bay:
|
||||||
|
needs:
|
||||||
|
- manifest-job/BL3_Sanctuary_Bay
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Sanctuary_Bay"
|
||||||
|
extends: .bundle-job
|
||||||
|
|
||||||
|
upload-job/BL3_Sanctuary_Bay:
|
||||||
|
needs:
|
||||||
|
- bundle-job/BL3_Sanctuary_Bay
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Sanctuary_Bay"
|
||||||
|
extends: .upload-job
|
||||||
|
|
||||||
|
release-job/BL3_Sanctuary_Bay:
|
||||||
|
needs:
|
||||||
|
- upload-job/BL3_Sanctuary_Bay
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "BL3_Sanctuary_Bay"
|
||||||
|
extends: .release-job
|
32
.gitlab/HFW_Three_Spires_Mountain.yml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
manifest-job/HFW_Three_Spires_Mountain:
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
|
||||||
|
extends: .manifest-job
|
||||||
|
|
||||||
|
test-images-job/HFW_Three_Spires_Mountain:
|
||||||
|
needs:
|
||||||
|
- manifest-job/HFW_Three_Spires_Mountain
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
|
||||||
|
extends: .test-job
|
||||||
|
|
||||||
|
bundle-job/HFW_Three_Spires_Mountain:
|
||||||
|
needs:
|
||||||
|
- manifest-job/HFW_Three_Spires_Mountain
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
|
||||||
|
extends: .bundle-job
|
||||||
|
|
||||||
|
upload-job/HFW_Three_Spires_Mountain:
|
||||||
|
needs:
|
||||||
|
- bundle-job/HFW_Three_Spires_Mountain
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
|
||||||
|
extends: .upload-job
|
||||||
|
|
||||||
|
release-job/HFW_Three_Spires_Mountain:
|
||||||
|
needs:
|
||||||
|
- upload-job/HFW_Three_Spires_Mountain
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Three_Spires_Mountain"
|
||||||
|
extends: .release-job
|
32
.gitlab/HFW_Weat_Tuft.yml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
manifest-job/HFW_Weat_Tuft:
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Weat_Tuft"
|
||||||
|
extends: .manifest-job
|
||||||
|
|
||||||
|
test-images-job/HFW_Weat_Tuft:
|
||||||
|
needs:
|
||||||
|
- manifest-job/HFW_Weat_Tuft
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Weat_Tuft"
|
||||||
|
extends: .test-job
|
||||||
|
|
||||||
|
bundle-job/HFW_Weat_Tuft:
|
||||||
|
needs:
|
||||||
|
- manifest-job/HFW_Weat_Tuft
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Weat_Tuft"
|
||||||
|
extends: .bundle-job
|
||||||
|
|
||||||
|
upload-job/HFW_Weat_Tuft:
|
||||||
|
needs:
|
||||||
|
- bundle-job/HFW_Weat_Tuft
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Weat_Tuft"
|
||||||
|
extends: .upload-job
|
||||||
|
|
||||||
|
release-job/HFW_Weat_Tuft:
|
||||||
|
needs:
|
||||||
|
- upload-job/HFW_Weat_Tuft
|
||||||
|
variables:
|
||||||
|
PACKAGE_NAME: "HFW_Weat_Tuft"
|
||||||
|
extends: .release-job
|
@@ -1,32 +0,0 @@
|
|||||||
manifest-job/existing_valid_theme_set:
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "existing_valid_theme_set"
|
|
||||||
extends: .manifest-job
|
|
||||||
|
|
||||||
test-images-job/existing_valid_theme_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/existing_valid_theme_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "existing_valid_theme_set"
|
|
||||||
extends: .test-job
|
|
||||||
|
|
||||||
bundle-job/existing_valid_theme_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/existing_valid_theme_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "existing_valid_theme_set"
|
|
||||||
extends: .bundle-job
|
|
||||||
|
|
||||||
upload-job/existing_valid_theme_set:
|
|
||||||
needs:
|
|
||||||
- bundle-job/existing_valid_theme_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "existing_valid_theme_set"
|
|
||||||
extends: .upload-job
|
|
||||||
|
|
||||||
release-job/existing_valid_theme_set:
|
|
||||||
needs:
|
|
||||||
- upload-job/existing_valid_theme_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "existing_valid_theme_set"
|
|
||||||
extends: .release-job
|
|
@@ -1,32 +0,0 @@
|
|||||||
manifest-job/missing_tag_set:
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "missing_tag_set"
|
|
||||||
extends: .manifest-job
|
|
||||||
|
|
||||||
test-images-job/missing_tag_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/missing_tag_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "missing_tag_set"
|
|
||||||
extends: .test-job
|
|
||||||
|
|
||||||
bundle-job/missing_tag_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/missing_tag_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "missing_tag_set"
|
|
||||||
extends: .bundle-job
|
|
||||||
|
|
||||||
upload-job/missing_tag_set:
|
|
||||||
needs:
|
|
||||||
- bundle-job/missing_tag_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "missing_tag_set"
|
|
||||||
extends: .upload-job
|
|
||||||
|
|
||||||
release-job/missing_tag_set:
|
|
||||||
needs:
|
|
||||||
- upload-job/missing_tag_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "missing_tag_set"
|
|
||||||
extends: .release-job
|
|
@@ -1,32 +0,0 @@
|
|||||||
manifest-job/unbalanced_set:
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "unbalanced_set"
|
|
||||||
extends: .manifest-job
|
|
||||||
|
|
||||||
test-images-job/unbalanced_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/unbalanced_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "unbalanced_set"
|
|
||||||
extends: .test-job
|
|
||||||
|
|
||||||
bundle-job/unbalanced_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/unbalanced_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "unbalanced_set"
|
|
||||||
extends: .bundle-job
|
|
||||||
|
|
||||||
upload-job/unbalanced_set:
|
|
||||||
needs:
|
|
||||||
- bundle-job/unbalanced_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "unbalanced_set"
|
|
||||||
extends: .upload-job
|
|
||||||
|
|
||||||
release-job/unbalanced_set:
|
|
||||||
needs:
|
|
||||||
- upload-job/unbalanced_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "unbalanced_set"
|
|
||||||
extends: .release-job
|
|
@@ -1,32 +0,0 @@
|
|||||||
manifest-job/valid_set:
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "valid_set"
|
|
||||||
extends: .manifest-job
|
|
||||||
|
|
||||||
test-images-job/valid_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/valid_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "valid_set"
|
|
||||||
extends: .test-job
|
|
||||||
|
|
||||||
bundle-job/valid_set:
|
|
||||||
needs:
|
|
||||||
- manifest-job/valid_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "valid_set"
|
|
||||||
extends: .bundle-job
|
|
||||||
|
|
||||||
upload-job/valid_set:
|
|
||||||
needs:
|
|
||||||
- bundle-job/valid_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "valid_set"
|
|
||||||
extends: .upload-job
|
|
||||||
|
|
||||||
release-job/valid_set:
|
|
||||||
needs:
|
|
||||||
- upload-job/valid_set
|
|
||||||
variables:
|
|
||||||
PACKAGE_NAME: "valid_set"
|
|
||||||
extends: .release-job
|
|
7
.vscode/settings.json
vendored
@@ -1,5 +1,10 @@
|
|||||||
{
|
{
|
||||||
"conventionalCommits.scopes": [
|
"conventionalCommits.scopes": [
|
||||||
"cicd"
|
"cicd",
|
||||||
|
"#5",
|
||||||
|
"#9",
|
||||||
|
"#13",
|
||||||
|
"#14",
|
||||||
|
"#15"
|
||||||
]
|
]
|
||||||
}
|
}
|
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_1.jpg
Normal file
After Width: | Height: | Size: 909 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_10.jpg
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_11.jpg
Normal file
After Width: | Height: | Size: 977 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_12.jpg
Normal file
After Width: | Height: | Size: 968 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_13.jpg
Normal file
After Width: | Height: | Size: 929 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_14.jpg
Normal file
After Width: | Height: | Size: 944 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_15.jpg
Normal file
After Width: | Height: | Size: 952 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_16.jpg
Normal file
After Width: | Height: | Size: 1002 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_17.jpg
Normal file
After Width: | Height: | Size: 892 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_18.jpg
Normal file
After Width: | Height: | Size: 876 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_19.jpg
Normal file
After Width: | Height: | Size: 935 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_2.jpg
Normal file
After Width: | Height: | Size: 942 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_20.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_21.jpg
Normal file
After Width: | Height: | Size: 996 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_22.jpg
Normal file
After Width: | Height: | Size: 877 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_23.jpg
Normal file
After Width: | Height: | Size: 947 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_3.jpg
Normal file
After Width: | Height: | Size: 980 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_4.jpg
Normal file
After Width: | Height: | Size: 954 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_5.jpg
Normal file
After Width: | Height: | Size: 1009 KiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_6.jpg
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_7.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
assets/BL2_frozen_wastelands/BL2_frozen_wastelands_9.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
assets/BL3_Lunch_in_Trashlantis/BL3_Lunch_in_Trashlantis_1.jpg
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/BL3_Lunch_in_Trashlantis/BL3_Lunch_in_Trashlantis_2.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/BL3_Lunch_in_Trashlantis/BL3_Lunch_in_Trashlantis_3.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/BL3_Lunch_in_Trashlantis/BL3_Lunch_in_Trashlantis_4.jpg
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/BL3_Lunch_in_Trashlantis/BL3_Lunch_in_Trashlantis_5.jpg
Normal file
After Width: | Height: | Size: 1.6 MiB |
BIN
assets/BL3_Lunch_in_Trashlantis/BL3_Lunch_in_Trashlantis_6.jpg
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_1.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_10.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_11.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_12.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_13.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_14.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_15.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_16.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_17.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_18.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_19.jpg
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_2.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_20.jpg
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_21.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_22.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_23.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_3.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_4.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_5.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_6.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_7.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_8.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/BL3_Sanctuary_Bay/BL3_Sanctuary_Bay_9.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 990 KiB |
After Width: | Height: | Size: 929 KiB |
After Width: | Height: | Size: 1.0 MiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 1.4 MiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 919 KiB |
After Width: | Height: | Size: 929 KiB |
After Width: | Height: | Size: 1021 KiB |
After Width: | Height: | Size: 1.0 MiB |
BIN
assets/HFW_Three_Spires_Mountain/HFW_Three_Spires_Mountain_3.jpg
Normal file
After Width: | Height: | Size: 908 KiB |
BIN
assets/HFW_Three_Spires_Mountain/HFW_Three_Spires_Mountain_6.jpg
Normal file
After Width: | Height: | Size: 989 KiB |
BIN
assets/HFW_Three_Spires_Mountain/HFW_Three_Spires_Mountain_7.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/HFW_Three_Spires_Mountain/HFW_Three_Spires_Mountain_8.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/HFW_Three_Spires_Mountain/HFW_Three_Spires_Mountain_9.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_1.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_10.jpg
Normal file
After Width: | Height: | Size: 975 KiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_11.jpg
Normal file
After Width: | Height: | Size: 914 KiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_12.jpg
Normal file
After Width: | Height: | Size: 805 KiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_14.jpg
Normal file
After Width: | Height: | Size: 955 KiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_15.jpg
Normal file
After Width: | Height: | Size: 905 KiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_18.jpg
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_19.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_2.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_20.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_21.jpg
Normal file
After Width: | Height: | Size: 1.3 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_22.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_23.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
assets/HFW_Weat_Tuft/HFW_Weat_Tuft_24.jpg
Normal file
After Width: | Height: | Size: 1.1 MiB |