1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +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 '../BREAKpoint'
const card: Card = {
name: {
en: "Drapion",
fr: "Drascore",
es: "Drapion",
it: "Drapion",
pt: "Drapion",
de: "Piondragi"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
452,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Skorupi",
fr: "Rapion",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Poison Claws",
fr: "Griffes Empoisonnées",
es: "Garras Venenosas",
it: "Velenartigli",
pt: "Garras Venenosas",
de: "Giftkrallen"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet."
},
damage: 70,
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Heavy Impact",
fr: "Gros Impact",
es: "Impacto Pesado",
it: "Impatto Pesante",
pt: "Impacto Pesado",
de: "Schwerer Einschlag"
},
damage: 130,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 4,
}
export default card