1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

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