mirror of
https://github.com/bartvdbraak/SlayerWeightCalculator.git
synced 2025-04-28 01:51:23 +00:00
scaffold config objects
This commit is contained in:
parent
0406d6be85
commit
cfe16b7b9c
1 changed files with 23 additions and 9 deletions
|
@ -37,21 +37,35 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
monsterData: monster_json,
|
monsterData: monster_json,
|
||||||
pointUnlocks: {
|
pointUnlocks: [
|
||||||
redDragons: false,
|
{id: 0, name: 'Seeing red', monster_ids: [83], unlock: false},
|
||||||
mithDragons: false,
|
{id: 1, name: 'I hope you mith me', monster_ids: [72], unlock: false},
|
||||||
aviansies: false,
|
{id: 2, name: 'Watch the birdie', monster_ids: [4], unlock: false},
|
||||||
tzhaars: false,
|
{id: 3, name: 'Hot stuff', monster_ids: [102], unlock: false},
|
||||||
lizardmen: false,
|
{id: 4, name: 'Reptile got ripped', monster_ids: [66], unlock: false},
|
||||||
fossilIslandWyverns: false,
|
{id: 5, name: 'Like a boss', monster_ids: [15], unlock: false},
|
||||||
},
|
{id: 6, name: 'Stop the Wyvern', monster_ids: [42], unlock: true},
|
||||||
blockList: [],
|
{id: 7, name: 'Basilocked', monster_ids: [7], unlock: true},
|
||||||
|
],
|
||||||
|
blockList: [
|
||||||
|
{id: 0, name: 'Block task (50 quest points)', monster_ids: [], block: true},
|
||||||
|
{id: 1, name: 'Block task (100 quest points)', monster_ids: [], block: true},
|
||||||
|
{id: 2, name: 'Block task (150 quest points)', monster_ids: [], block: true},
|
||||||
|
{id: 3, name: 'Block task (200 quest points)', monster_ids: [], block: true},
|
||||||
|
{id: 4, name: 'Block task (250 quest points)', monster_ids: [], block: true},
|
||||||
|
{id: 5, name: 'Block task (300 quest points)', monster_ids: [], block: true},
|
||||||
|
],
|
||||||
questUnlocks: [
|
questUnlocks: [
|
||||||
{id: 0, name: 'Bone Voyage', monster_ids: [42], unlock: false},
|
{id: 0, name: 'Bone Voyage', monster_ids: [42], unlock: false},
|
||||||
{id: 1, name: 'Cabin Fever', monster_ids: [60, 21], unlock: false},
|
{id: 1, name: 'Cabin Fever', monster_ids: [60, 21], unlock: false},
|
||||||
{id: 2, name: 'Contact!', monster_ids: [70], unlock: false},
|
{id: 2, name: 'Contact!', monster_ids: [70], unlock: false},
|
||||||
{id: 3, name: 'Death Plateau', monster_ids: [96], unlock: false},
|
{id: 3, name: 'Death Plateau', monster_ids: [96], unlock: false},
|
||||||
{id: 4, name: 'Death to the Dorgeshuun', monster_ids: [74], unlock: false},
|
{id: 4, name: 'Death to the Dorgeshuun', monster_ids: [74], unlock: false},
|
||||||
|
],
|
||||||
|
statUnlocks: [
|
||||||
|
{id: 0, name: 'Slayer level', value: {min: 1, current: 99, max: 99}, unlock: false},
|
||||||
|
{id: 1, name: 'Combat level', value: {min: 3, current: 126, max: 126}, unlock: false},
|
||||||
|
{id: 2, name: 'Defence level', value: {min: 1, current: 99, max: 99}, unlock: false},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue