Add new items
This commit is contained in:
parent
c8a99e1cc6
commit
7225d90fe1
5 changed files with 124 additions and 4 deletions
|
@ -2,7 +2,7 @@ const url_tag = location.hash.slice(1);
|
|||
console.log(url_base);
|
||||
console.log(url_tag);
|
||||
|
||||
const BUILD_VERSION = "6.9.37";
|
||||
const BUILD_VERSION = "6.9.38";
|
||||
|
||||
function setTitle() {
|
||||
let text;
|
||||
|
|
120
clean.json
120
clean.json
|
@ -1,5 +1,119 @@
|
|||
{
|
||||
"items": [
|
||||
{
|
||||
"name": "Philosopher",
|
||||
"tier": "Fabled",
|
||||
"type": "leggings",
|
||||
"set": null,
|
||||
"material": null,
|
||||
"armorType": "Iron",
|
||||
"armorColor": "160,101,64",
|
||||
"quest": null,
|
||||
"majorIds": [
|
||||
"PEACEFUL_EFFIGY"
|
||||
],
|
||||
"category": "armor",
|
||||
"slots": 2,
|
||||
"drop": "NORMAL",
|
||||
"fDef": 15,
|
||||
"hp": 525,
|
||||
"lvl": 36,
|
||||
"classReq": null,
|
||||
"strReq": 0,
|
||||
"dexReq": 0,
|
||||
"intReq": 20,
|
||||
"agiReq": 0,
|
||||
"defReq": 0,
|
||||
"str": 0,
|
||||
"dex": 0,
|
||||
"int": 0,
|
||||
"agi": 0,
|
||||
"def": 4,
|
||||
"hprPct": 15,
|
||||
"sdPct": -8,
|
||||
"mdPct": -12,
|
||||
"ws": -10,
|
||||
"ref": 45,
|
||||
"wDamPct": 15,
|
||||
"id": 3552
|
||||
},
|
||||
{
|
||||
"name": "Conspirator's Trickpockets",
|
||||
"tier": "Fabled",
|
||||
"type": "leggings",
|
||||
"set": null,
|
||||
"material": null,
|
||||
"armorType": "Iron",
|
||||
"armorColor": "160,101,64",
|
||||
"quest": null,
|
||||
"majorIds": [
|
||||
"CHERRY_BOMBS"
|
||||
],
|
||||
"category": "armor",
|
||||
"slots": 0,
|
||||
"drop": "NORMAL",
|
||||
"hp": 2000,
|
||||
"lvl": 78,
|
||||
"classReq": null,
|
||||
"strReq": 0,
|
||||
"dexReq": 0,
|
||||
"intReq": 0,
|
||||
"agiReq": 65,
|
||||
"defReq": 0,
|
||||
"str": 0,
|
||||
"dex": 0,
|
||||
"int": 0,
|
||||
"agi": 0,
|
||||
"def": 0,
|
||||
"sdRaw": 150,
|
||||
"mr": 1,
|
||||
"spRaw4": 1,
|
||||
"expd": 23,
|
||||
"eSteal": 5,
|
||||
"tDamPct": -58,
|
||||
"aDamPct": 19,
|
||||
"wDefPct": -20,
|
||||
"id": 3551
|
||||
},
|
||||
{
|
||||
"name": "Tachypsychia",
|
||||
"tier": "Fabled",
|
||||
"type": "relik",
|
||||
"set": null,
|
||||
"material": "273:7",
|
||||
"quest": null,
|
||||
"majorIds": [
|
||||
"FURIOUS_EFFIGY"
|
||||
],
|
||||
"category": "weapon",
|
||||
"slots": 2,
|
||||
"drop": "NORMAL",
|
||||
"nDam": "0-0",
|
||||
"fDam": "0-0",
|
||||
"wDam": "0-0",
|
||||
"aDam": "0-0",
|
||||
"tDam": "105-150",
|
||||
"eDam": "105-150",
|
||||
"atkSpd": "VERY_FAST",
|
||||
"lvl": 77,
|
||||
"classReq": null,
|
||||
"strReq": 50,
|
||||
"dexReq": 50,
|
||||
"intReq": 0,
|
||||
"agiReq": 0,
|
||||
"defReq": 0,
|
||||
"str": 20,
|
||||
"dex": 0,
|
||||
"int": 0,
|
||||
"agi": 0,
|
||||
"def": 0,
|
||||
"sdPct": 40,
|
||||
"hprRaw": -245,
|
||||
"spRaw1": 1,
|
||||
"spRaw4": 1,
|
||||
"ws": 20,
|
||||
"id": 3550
|
||||
},
|
||||
{
|
||||
"name": "Dondasch",
|
||||
"tier": "Legendary",
|
||||
|
@ -778,6 +892,9 @@
|
|||
"set": null,
|
||||
"material": "273:7",
|
||||
"quest": null,
|
||||
"majorIds": [
|
||||
"FURIOUS_EFFIGY"
|
||||
],
|
||||
"category": "weapon",
|
||||
"slots": 3,
|
||||
"drop": "never",
|
||||
|
@ -73738,6 +73855,9 @@
|
|||
"set": null,
|
||||
"material": "273:7",
|
||||
"quest": null,
|
||||
"majorIds": [
|
||||
"PEACEFUL_EFFIGY"
|
||||
],
|
||||
"category": "weapon",
|
||||
"drop": "NORMAL",
|
||||
"restrict": null,
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
load.js
2
load.js
|
@ -1,4 +1,4 @@
|
|||
const DB_VERSION = 34;
|
||||
const DB_VERSION = 35;
|
||||
// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.js
|
||||
|
||||
let db;
|
||||
|
|
Loading…
Reference in a new issue