47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
scraper:
|
|
sources:
|
|
- id: konami-official
|
|
name: "Konami Official Database"
|
|
domain: "yugioh-card.com"
|
|
url-patterns:
|
|
- "^https://www\\.yugioh-card\\.com/[a-z]{2}/products/.*$"
|
|
selectors:
|
|
card:
|
|
name:
|
|
steps:
|
|
- type: "css"
|
|
value: "h1.product-title"
|
|
- type: "xpath"
|
|
value: "//h1[@itemprop='name']"
|
|
attack:
|
|
steps:
|
|
- type: "css"
|
|
value: ".atk-value"
|
|
|
|
- id: ygo-fandom
|
|
name: "Yu-Gi-Oh Fandom Wiki"
|
|
domain: "yugioh.fandom.com"
|
|
url-patterns:
|
|
- "^https://yugioh\\.fandom\\.com/wiki/.*$"
|
|
selectors:
|
|
regional-set:
|
|
root: "h3:contains(Prefix(es)) + div > ul:nth-child(1) > li"
|
|
id:
|
|
steps:
|
|
- type: "xpath"
|
|
value: "//li/text()"
|
|
transform:
|
|
- name: "replace"
|
|
parameters:
|
|
- " ("
|
|
- ""
|
|
language:
|
|
steps:
|
|
- type: "xpath"
|
|
value: "//li/abbr"
|
|
- type: "xpath"
|
|
value: "//abbr/@title"
|
|
region-key:
|
|
steps:
|
|
- type: "xpath"
|
|
value: "//li/abbr/text()" |