Installation - juliorkm/EDOPro-Custom-Skills GitHub Wiki
EDOPro has a feature to sync cards with Github, so you can be always up to date with new card releases and updates.
To add Autosync of this repository to your EDOPro, you have to edit your config/configs.json
file in EDOPro.
The config.json is structured like this
{
"repos": [
{ ... }
],
"urls": [
{ ... }
],
...
}
WARNING: It is highly advised to backup your config/configs.json
file before editing it, in case anything goes wrong.
You need to add this to the "repos"
list to download card data and scripts.
{
"url": "https://github.com/juliorkm/EDOPro-Custom-Skills",
"repo_name": "XenorrK Custom Skills",
"repo_path": "./repositories/xenorrk-custom-skills",
"data_path": "expansions",
"lflist_path": "lflists",
"script_path": "script",
"should_update": true,
"should_read": true
}
And these to the "urls"
list to download card images.
{
"url": "https://raw.githubusercontent.com/juliorkm/EDOPro-Custom-Skills-pics/main/{}.png",
"type": "pic"
},
{
"url": "https://raw.githubusercontent.com/juliorkm/EDOPro-Custom-Skills-pics/main/{}.jpg",
"type": "pic"
},
{
"url": "https://raw.githubusercontent.com/juliorkm/EDOPro-Custom-Skills-pics/main/field/{}.png",
"type": "field"
},
{
"url": "https://raw.githubusercontent.com/juliorkm/EDOPro-Custom-Skills-pics/main/field/{}.jpg",
"type": "field"
},
{
"url": "https://raw.githubusercontent.com/juliorkm/EDOPro-Custom-Skills-pics/main/cover/{}.jpg",
"type": "cover"
}
PS: Images are not updated if there is a change in the card, you have to manually delete the old image to automatically download the new one.
If you need an example of a config/configs.json
file with these configurations already applied, you can download it here.