mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
56 lines
783 B
TypeScript
56 lines
783 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [570],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Zorua",
|
|
fr: "Zorua",
|
|
es: "Zorua",
|
|
it: "Zorua",
|
|
pt: "Zorua",
|
|
de: "Zorua"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Darkness"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "nagimiso",
|
|
|
|
description: {
|
|
en: "If a normally talkative child suddenly stops talking, it may have been replaced by Zorua."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Ram"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Darkness", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rear Kick"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |