1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

92 lines
1.5 KiB
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 '../Fates Collide'
const card: Card = {
name: {
en: "Aerodactyl",
fr: "Ptéra",
es: "Aerodactyl",
it: "Aerodactyl",
pt: "Aerodactyl",
de: "Aerodactyl"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
142,
],
hp: 120,
types: [
"Colorless",
],
stage: "RESTORED",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Jet Draft",
fr: "Souffle Supersonique",
es: "Corriente Jet",
it: "Scia Jet",
pt: "Vento de Jato",
de: "Düsendurchzug"
},
effect: {
en: "Discard a Special Energy attached to your opponents Active Pokémon.",
fr: "Défaussez une Énergie spéciale attachée au Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía Especial unida al Pokémon Activo de tu rival.",
it: "Scarta unEnergia speciale assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte uma Energia Especial ligada ao Pokémon Ativo do seu oponente.",
de: "Lege 1 an das Aktive Pokémon deines Gegners angelegte Spezial-Energie auf den Ablagestapel deines Gegners."
},
damage: 120,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 0
}
export default card