Added dedicated Arch Angel scraper.

This commit is contained in:
DebaucheryLibrarian
2023-07-02 05:07:38 +02:00
parent e22dbb315e
commit 4a3674feac
14 changed files with 291 additions and 78 deletions

View File

@@ -63,6 +63,10 @@ function entityCampaign() {
return randomCampaign;
}
if (this.allowGeneric) {
return this.genericCampaign();
}
this.$emit('campaign', null);
return null;
@@ -84,6 +88,10 @@ function tagCampaign() {
return randomCampaign;
}
if (this.allowGeneric) {
return this.genericCampaign();
}
this.$emit('campaign', null);
return null;
@@ -134,6 +142,10 @@ export default {
type: Number,
default: null,
},
allowGeneric: {
type: Boolean,
default: false,
},
maxRatio: {
type: Number,
default: null,