Browse Source

新增数据

tags/v8.0
枫谷剑仙 6 years ago
parent
commit
f21233fb00
8 changed files with 9 additions and 7 deletions
  1. BIN
      images/cards/CARDS_053.PNG
  2. +1
    -1
      monsters-info/custom/chs.json
  3. +1
    -1
      monsters-info/custom/cht.json
  4. +3
    -1
      monsters-info/extract_CHT.js
  5. +1
    -1
      monsters-info/mon.json
  6. +1
    -1
      monsters-info/official-API/ja-skill.json
  7. +1
    -1
      monsters-info/official-API/ja.json
  8. +1
    -1
      script.js

BIN
images/cards/CARDS_053.PNG View File

Before After
Width: 1024  |  Height: 1024  |  Size: 760 kB Width: 1024  |  Height: 1024  |  Size: 780 kB

+ 1
- 1
monsters-info/custom/chs.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/custom/cht.json
File diff suppressed because it is too large
View File


+ 3
- 1
monsters-info/extract_CHT.js View File

@@ -28,9 +28,11 @@ fs.access(outJSON,function(err){
var searchName = /<h2 .+>\s*?([\s\S]+)\s*?<\/h2>/igm.exec(htmlText);
try
{
var mname = searchName[1].replace("\n","");
mname = mname.replace("探偵","偵探"); //把日语的探侦都换成侦探
var m = {
id:searchID[1],
name:searchName[1].replace("\n",""),
name:mname,
}
monArr.push(m);
if (monArr.length % 100 == 0)


+ 1
- 1
monsters-info/mon.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/ja-skill.json
File diff suppressed because it is too large
View File


+ 1
- 1
monsters-info/official-API/ja.json
File diff suppressed because it is too large
View File


+ 1
- 1
script.js View File

@@ -70,7 +70,7 @@ window.onload = function()
}
}catch(e)
{
console.log("尝试解码Chrome错误返回失败。或初始数据解码出错。",e);
console.log("尝试解码仍错误。或初始数据解码出错。",e);
}
}
});


Loading…
Cancel
Save