mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 14:59:19 +00:00
fix: SV sets now have their illustrator set (#743)
This commit is contained in:
42
data/Scarlet & Violet/SVP Black Star Promos/189.ts
Normal file
42
data/Scarlet & Violet/SVP Black Star Promos/189.ts
Normal file
@ -0,0 +1,42 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "N's Zorua",
|
||||
fr: "Zorua de N",
|
||||
de: "Ns Zorua",
|
||||
es: "Zorua de N",
|
||||
it: "Zorua di N",
|
||||
pt: "Zorua do N"
|
||||
},
|
||||
|
||||
illustrator: "Megumi Mizutani",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe",
|
||||
de: "Kratzer",
|
||||
es: "Arañazo",
|
||||
it: "Graffio",
|
||||
pt: "Arranhão"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user