1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 19:19:18 +00:00
Files
cards-database/data/Sword & Shield/Evolving Skies/114.ts

59 lines
904 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Zweilous",
fr: "Diamat",
es: "Zweilous",
it: "Zweilous",
pt: "Zweilous",
de: "Duodino"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 100,
types: ["Dragon"],
stage: "Stage1",
illustrator: "Akira Komayama",
attacks: [{
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Bite",
de: "Biss"
},
damage: 40,
cost: ["Psychic", "Darkness"]
}, {
name: {
en: "Dragon Headbutt",
fr: "DracoudBoule",
es: "Cabezazo Dragón",
it: "Dragozuccata",
pt: "Dragon Headbutt",
de: "Drachen-Kopfnuss"
},
damage: 100,
cost: ["Psychic", "Darkness", "Colorless", "Colorless"]
}],
retreat: 2
}
export default card